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

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

body {
  font-family: 'Barlow', sans-serif;
  background: #080808;
  color: #F0EDE8;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
}

ul {
  list-style: none;
}

/* SKIP LINK — accessibility */
.ld-skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 100000;
  background: var(--gold);
  color: var(--bg);
  padding: .75rem 1.5rem;
  font-weight: 600;
  font-size: .9rem;
  border-radius: 0 0 var(--radius) 0;
  text-decoration: none;
  transition: top .2s;
}

.ld-skip-link:focus {
  top: 0;
}


/* FONTAWESOME FONT-DISPLAY SWAP OVERRIDE */
@font-face {
  font-family: 'Font Awesome 6 Free';
  font-display: swap;
  src: local('Font Awesome 6 Free');
}

@font-face {
  font-family: 'Font Awesome 6 Brands';
  font-display: swap;
  src: local('Font Awesome 6 Brands');
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #080808;
}

::-webkit-scrollbar-thumb {
  background: #C9A84C;
  border-radius: 3px;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.15;
}

em {
  font-style: italic;
  color: #C9A84C;
}

:root {
  --gold: #C9A84C;
  --gold-light: #E4C76B;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --gold-dim2: rgba(201, 168, 76, 0.07);
  --bg: #080808;
  --bg-2: #0d0d0d;
  --bg-3: #141414;
  --bg-card: #0f0f0f;
  --border: rgba(255, 255, 255, 0.07);
  --border-gold: rgba(201, 168, 76, 0.28);
  --text: #F0EDE8;
  --text-muted: #888880;
  --text-dim: #555550;
  --radius: 4px;
  --radius-lg: 12px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --nav-h: 80px;
}

.ld-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

/* PRELOADER */
.ld-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #080808;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.ld-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ld-preloader__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: ldFadeUp 0.6s ease both;
}

.ld-preloader__logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  animation: ldLogoFloat 2s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.4));
}

@keyframes ldLogoFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-4px) scale(1.05);
  }
}

.ld-preloader__wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #F0EDE8;
  letter-spacing: .05em;
}

.ld-preloader__bar-wrap {
  width: 180px;
  height: 1px;
  background: rgba(201, 168, 76, 0.15);
  border-radius: 2px;
  overflow: hidden;
  animation: ldFadeUp 0.6s ease 0.2s both;
}

.ld-preloader__bar {
  height: 100%;
  background: linear-gradient(to right, #C9A84C, #E4C76B);
  animation: ldLoadBar 1.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes ldLoadBar {
  from {
    width: 0%
  }

  to {
    width: 100%
  }
}

.ld-preloader__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.5);
  animation: ldFadeUp 0.6s ease 0.3s both;
}

.logoApp {
  height: 64px;
  width: 100px;
}

/* NAV */
.ld-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}

.ld-nav.is-scrolled {
  background: rgba(8, 8, 8, 0.97);
  border-bottom-color: var(--border-gold);
}

.ld-nav__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.ld-nav__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--text);
}

.ld-nav__logo-icon {
  color: var(--gold);
}

.ld-nav__links {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.ld-nav__link {
  display: block;
  padding: .5rem 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-radius: var(--radius);
  transition: color .25s, background .25s;
  position: relative;
}

.ld-nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  right: 50%;
  height: 1px;
  background: var(--gold);
  transition: left .3s var(--ease), right .3s var(--ease);
}

.ld-nav__link:hover,
.ld-nav__link.is-active {
  color: var(--text);
}

.ld-nav__link:hover::after,
.ld-nav__link.is-active::after {
  left: 1rem;
  right: 1rem;
}

.ld-nav__link--cta {
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  color: var(--gold) !important;
  margin-left: .5rem;
}

.ld-nav__link--cta:hover {
  background: var(--gold);
  color: var(--bg) !important;
}

.ld-nav__link--cta::after {
  display: none;
}

.ld-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.ld-nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all .3s;
}

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

.ld-nav__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

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

/* MOBILE MENU */
.ld-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(6, 6, 6, 0.99);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition: all .4s var(--ease);
}

.ld-mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.ld-mobile-menu__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: .5rem;
  color: var(--text-muted);
  transition: color .25s;
}

.ld-mobile-menu__close:hover {
  color: var(--gold);
}

.ld-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  align-items: center;
}

.ld-mobile-menu__link {
  display: block;
  padding: 1.1rem 1rem;
  width: 100%;
  text-align: center;
  font-size: 1.1rem;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color .25s;
}

.ld-mobile-menu__link:hover,
.ld-mobile-menu__link.is-active {
  color: var(--gold);
}

.ld-mobile-menu__cta-btn {
  display: block;
  margin-top: 1.5rem;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: var(--bg) !important;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .9rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  font-weight: 600;
  text-align: center;
  transition: background .25s;
}

.ld-mobile-menu__cta-btn:hover {
  background: var(--gold-light);
}

/* BUTTONS */
.ld-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all .3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.ld-btn--primary {
  background: var(--gold);
  color: var(--bg);
  border: 1px solid var(--gold);
}

.ld-btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, .35);
}

.ld-btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, .2);
}

.ld-btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

.ld-btn--lg {
  padding: 1.1rem 2.5rem;
  font-size: .9rem;
}

.ld-btn--sm {
  padding: .5rem 1.1rem;
  font-size: .75rem;
}

.ld-btn__arrow {
  transition: transform .3s;
}

.ld-btn--primary:hover .ld-btn__arrow {
  transform: translateX(4px);
}

/* Hero outer: background fills full screen */
.ld-hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--nav-h);
  overflow: hidden;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  background: #080808;
}

.ld-hero__slide {
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease, visibility 0s linear .6s;
  overflow: hidden;
  pointer-events: none;
}

.ld-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  transition: opacity 1.2s ease, visibility 0s linear;
  pointer-events: auto;
}

.ld-hero__slide-blur {
  display: none;
}

.ld-hero__slide-img {
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 10s ease;
  transform: scale(1.02);
}

.ld-hero__slide.is-active .ld-hero__slide-img {
  transform: scale(1);
}

.ld-hero__gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(4, 4, 4, 1) 0%, rgba(4, 4, 4, .75) 30%, rgba(4, 4, 4, .2) 65%, transparent 100%), linear-gradient(to right, rgba(4, 4, 4, .55) 0%, transparent 55%);
  pointer-events: none;
}

.ld-hero__grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: linear-gradient(rgba(201, 168, 76, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 168, 76, .04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, .6) 0%, transparent 40%);
}

.ld-hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2.5rem 5.5rem 3rem 5.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  box-sizing: border-box;
}

.ld-hero__left {
  flex: 1;
  min-width: 0;
  max-width: 650px;
}

.ld-hero__right {
  flex-shrink: 0;
  width: clamp(260px, 24vw, 360px);
}

.ld-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .35rem .9rem;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  animation: ldFadeUp .7s var(--ease) .1s both;
}

.ld-hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: ldPulse 2s ease-in-out infinite;
}

@keyframes ldPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .5;
    transform: scale(1.3)
  }
}

.ld-hero__title {
  font-size: clamp(2.5rem, 5.5vw, 5.5rem);
  line-height: .97;
  margin-bottom: 1.2rem;
  animation: ldFadeUp .7s var(--ease) .2s both;
}

.ld-hero__title-line {
  display: block;
}

.ld-hero__title-em {
  display: block;
  font-style: italic;
  color: var(--gold);
}

.ld-hero__sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 1.8rem;
  line-height: 1.7;
  font-weight: 300;
  animation: ldFadeUp .7s var(--ease) .3s both;
}

.ld-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
  animation: ldFadeUp .7s var(--ease) .4s both;
}

/* HERO META BOX */
.ld-hero__meta-box {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(14, 14, 14, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.4rem;
  max-width: 580px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  animation: ldFadeUp .7s var(--ease) .5s both;
}

.ld-hero__stat-single {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.ld-hero__stat-single strong {
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  line-height: 1;
}

.ld-hero__stat-single span {
  font-size: .65rem;
  color: var(--text-muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: .35rem;
  white-space: nowrap;
}

.ld-hero__stat-sep {
  width: 1px;
  height: 42px;
  background: rgba(201, 168, 76, 0.25);
  flex-shrink: 0;
}

.ld-hero__brand-desc {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.5;
  font-weight: 300;
}

.ld-hero__desc-icon {
  font-size: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
}

.ld-hero__brand-desc strong {
  color: var(--text);
  font-weight: 600;
}

/* Showcase card — always visible, shrinks on smaller screens */
.ld-hero__showcase {
  width: 100%;
  animation: ldFadeUp .8s var(--ease) .35s both;
}

.ld-showcase-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .85);
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s, opacity .3s ease;
}

.ld-showcase-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 36px 80px rgba(0, 0, 0, .9), 0 0 20px rgba(201, 168, 76, .12);
}

.ld-showcase-card__img-wrap {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
}

.ld-showcase-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.ld-showcase-card:hover .ld-showcase-card__img {
  transform: scale(1.05);
}

.ld-showcase-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .65) 0%, transparent 55%);
}

.ld-showcase-card__label {
  position: absolute;
  bottom: .75rem;
  left: .9rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
}

.ld-showcase-card__info {
  padding: .8rem 1rem;
  background: rgba(10, 8, 5, .98);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
  border-top: 1px solid rgba(201, 168, 76, .15);
}

.ld-showcase-card__name {
  font-family: 'Playfair Display', serif;
  font-size: .82rem;
  color: var(--text);
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ld-showcase-card__price {
  color: var(--gold);
  font-weight: 600;
  font-size: .82rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.ld-hero__nav {
  position: absolute;
  z-index: 12;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(8, 8, 8, .75);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: all .25s ease;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, .6);
  cursor: pointer;
}

.ld-hero__nav:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}

.ld-hero__nav--prev {
  left: 1.5rem;
}

.ld-hero__nav--next {
  right: 1.5rem;
}

@media (min-width: 901px) and (max-width: 1300px) {
  .ld-hero__content {
    padding-left: 4.5rem;
    padding-right: 5.25rem;
    gap: 1.5rem;
  }

  .ld-hero__right {
    width: clamp(230px, 22vw, 300px);
  }

  .ld-hero__title {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
  }
}

.ld-hero__counter {
  position: absolute;
  bottom: 1.8rem;
  right: 2rem;
  z-index: 10;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .75rem;
  letter-spacing: .15em;
  color: var(--text-dim);
}

.ld-hero__counter-sep {
  margin: 0 .25rem;
}

.ld-hero__scroll-cue {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
  color: var(--text-dim);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  z-index: 4;
  pointer-events: none;
  animation: ldFadeUp 1s var(--ease) .9s both;
}

@media(min-width:1100px) and (min-height:760px) {
  .ld-hero__scroll-cue {
    display: flex;
  }
}

.ld-hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(201, 168, 76, .55), transparent);
  animation: ldScrollPulse 2.5s ease-in-out infinite;
}

@keyframes ldScrollPulse {

  0%,
  100% {
    opacity: .8
  }

  50% {
    opacity: .15
  }
}

/* PAGE MINI HERO */
.ld-page-hero {
  background: radial-gradient(ellipse 50% 100% at 50% 100%, rgba(201, 168, 76, .08) 0%, transparent 60%), radial-gradient(ellipse 80% 60% at 15% 50%, rgba(201, 168, 76, .05) 0%, transparent 55%), linear-gradient(180deg, #141414 0%, #080808 100%);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem 3rem;
  text-align: center;
  margin-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

.ld-page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.ld-page-hero__inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ld-page-hero__title {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.ld-page-hero__sub {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 300;
  margin-top: .75rem;
}

/* SECTIONS */
.ld-section {
  padding: 6rem 0;
}

.ld-section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.ld-section__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.ld-section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.ld-section__sub {
  color: var(--text-muted);
  font-weight: 300;
  font-size: 1.05rem;
}

.ld-section__footer {
  text-align: center;
  margin-top: 3.5rem;
}

.ld-featured {
  background: radial-gradient(ellipse 60% 50% at 100% 0%, rgba(201, 168, 76, .07) 0%, transparent 60%), radial-gradient(ellipse 40% 40% at 0% 100%, rgba(201, 168, 76, .05) 0%, transparent 55%), #0d0d0d;
}

/* CAR CARDS */
.ld-cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
  gap: 1.5rem;
}

.ld-car-card {
  background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(201, 168, 76, .05) 0%, transparent 55%), #0f0f0f;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
  animation: ldFadeUp .6s var(--ease) both;
}

.ld-car-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .5), 0 0 0 1px rgba(201, 168, 76, .15);
}

.ld-car-card__img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.ld-car-card__img {
  width: 100%;
  height: 100%;
  transition: transform .6s var(--ease);
}

.ld-car-card:hover .ld-car-card__img {
  transform: scale(1.06);
}

.ld-car-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .65) 0%, transparent 60%);
}

.ld-car-card__no-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: #141414;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: var(--text-dim);
}

.ld-car-card__no-img i {
  font-size: 2rem;
}

.ld-car-card__category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: .25rem .7rem;
  background: rgba(8, 8, 8, .8);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}

.ld-car-card__body {
  padding: 1.4rem;
}

.ld-car-card__brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .3rem;
}

.ld-car-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.ld-car-card__specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-bottom: 1rem;
  padding: .8rem;
  background: #0d0d0d;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.ld-car-card__spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .15rem;
}

.ld-car-card__spec-val {
  font-weight: 600;
  font-size: .85rem;
  color: var(--text);
  text-align: center;
}

.ld-car-card__spec-key {
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.ld-car-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1.2rem;
}

.ld-feature-tag {
  padding: .2rem .6rem;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  font-size: .72rem;
  color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: .05em;
}

.ld-feature-tag--more {
  background: transparent;
  border-color: var(--border);
  color: var(--text-dim);
}

.ld-car-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  flex-wrap: wrap;
}

.ld-car-card__price {
  display: flex;
  align-items: baseline;
  gap: .2rem;
}

.ld-car-card__price-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold);
}

.ld-car-card__price-unit {
  font-size: .75rem;
  color: var(--text-muted);
}

.ld-car-card__actions {
  display: flex;
  gap: .5rem;
}

.ld-empty-state {
  grid-column: 1/-1;
  text-align: center;
  padding: 5rem 2rem;
  color: var(--text-muted);
}

.ld-empty-state__icon {
  font-size: 2.5rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
  display: block;
}

.ld-empty-state h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: .5rem;
}

/* AMENITIES */
.ld-amenities {
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(201, 168, 76, .06) 0%, transparent 60%), #080808;
}

.ld-amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
}

.ld-amenity-card {
  padding: 2rem;
  background: radial-gradient(ellipse 70% 40% at 50% 0%, rgba(201, 168, 76, .05) 0%, transparent 55%), #0f0f0f;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform .3s, border-color .3s;
}

.ld-amenity-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
}

.ld-amenity-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  color: var(--gold);
  font-size: 1.2rem;
}

.ld-amenity-card h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .5rem;
}

.ld-amenity-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ABOUT */
.ld-about {
  background: radial-gradient(ellipse 50% 70% at 0% 50%, rgba(201, 168, 76, .06) 0%, transparent 60%), #080808;
}

.ld-about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.ld-about__visual {
  position: relative;
}

.ld-about__img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow);
  position: relative;
  line-height: 0;
}

.ld-about__img-main img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.ld-about__img-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--gold);
  padding: 1.8rem 1.2rem;
  border-radius: var(--radius);
  text-align: center;
  color: var(--bg);
}

.ld-about__img-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
}

.ld-about__img-badge span {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
}

.ld-about__img-sec {
  position: absolute;
  bottom: -9rem;
  left: -2rem;
  width: 45%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid #080808;
  box-shadow: var(--shadow);
}

.ld-about__img-sec img {
  aspect-ratio: 1;
  width: 100%;
}

.ld-about__content {
  padding: 2rem 0;
}

.ld-about__text {
  color: var(--text-muted);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.ld-about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2.5rem 0;
}

.ld-about__feat {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
}

.ld-about__feat-icon {
  color: var(--gold);
  font-size: .6rem;
  margin-top: .4rem;
  flex-shrink: 0;
}

.ld-about__feat strong {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: .2rem;
}

.ld-about__feat span {
  font-size: .85rem;
  color: var(--text-muted);
}

/* CTA BAND */
.ld-cta-band {
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201, 168, 76, .1) 0%, transparent 65%), linear-gradient(135deg, rgba(201, 168, 76, .08), rgba(201, 168, 76, .03));
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ld-cta-band::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, .12) 0%, transparent 70%);
  pointer-events: none;
}

.ld-cta-band__inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ld-cta-band__inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
}

.ld-cta-band__inner p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-weight: 300;
  font-size: 1.05rem;
}

/* FOOTER */
.ld-footer {
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(201, 168, 76, .06) 0%, transparent 55%), #0d0d0d;
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}

.ld-footer__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.ld-footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.ld-footer__brand p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 260px;
}

.ld-footer__social {
  display: flex;
  gap: .75rem;
  margin-top: 1.2rem;
}

.ld-footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .85rem;
  transition: all .25s;
}

.ld-footer__social-link:hover {
  background: var(--gold);
  color: var(--bg);
}

.ld-footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ld-footer__col h3,
.ld-footer__col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.ld-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.ld-footer__col a {
  font-size: .88rem;
  color: var(--text-muted);
  transition: color .2s;
}

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

.ld-footer__bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: var(--text-dim);
}

.ld-footer__admin-link {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: var(--text-dim);
  transition: color .2s;
}

.ld-footer__admin-link:hover {
  color: var(--gold);
}

/* TOAST */
.ld-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: 1rem 1.25rem;
  background: #141414;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  max-width: 360px;
  transform: translateY(140%);
  opacity: 0;
  transition: all .4s var(--ease);
  box-shadow: var(--shadow);
  pointer-events: none;
}

.ld-toast.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.ld-toast.is-error {
  border-color: #e85555;
}

.ld-toast__icon {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.ld-toast.is-error .ld-toast__icon {
  color: #e85555;
}

.ld-toast__body strong {
  display: block;
  font-size: .9rem;
  margin-bottom: .15rem;
}

.ld-toast__body p {
  font-size: .82rem;
  color: var(--text-muted);
  margin: 0;
}

.ld-toast__close {
  margin-left: auto;
  color: var(--text-dim);
  font-size: .75rem;
  flex-shrink: 0;
  padding: 2px;
  transition: color .2s;
}

.ld-toast__close:hover {
  color: var(--gold);
}

/* ALERTS & FIELD ERRORS */
.ld-alert {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 1.1rem;
  border-radius: var(--radius);
  font-size: .9rem;
  margin-bottom: 1.5rem;
}

.ld-alert--success {
  background: rgba(76, 175, 80, .1);
  border: 1px solid rgba(76, 175, 80, .3);
  color: #81c784;
}

.ld-alert--error {
  background: rgba(232, 85, 85, .1);
  border: 1px solid rgba(232, 85, 85, .3);
  color: #ef9a9a;
}

.ld-field-error ul {
  list-style: none;
  margin: .35rem 0 0;
  padding: 0;
}

.ld-field-error ul li {
  font-size: .78rem;
  color: #ef9a9a;
}

/* FORMS */
.ld-form-card {
  background: radial-gradient(ellipse 60% 30% at 100% 0%, rgba(201, 168, 76, .07) 0%, transparent 55%), #0f0f0f;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.ld-form-title {
  font-size: 1.6rem;
  margin-bottom: .4rem;
}

.ld-form-subtitle {
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.ld-form-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 1.8rem 0 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--gold-dim);
}

.ld-form {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.ld-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ld-form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: .8rem;
}

.ld-form-group label,
.ld-captcha-group label {
  display: block;
  font-size: .82rem;
  color: var(--text-muted);
  letter-spacing: .05em;
  margin-bottom: .4rem;
}

.ld-form-group input,
.ld-form-group select,
.ld-form-group textarea,
.ld-input {
  display: block;
  width: 100%;
  padding: .75rem 1rem;
  background: #0d0d0d;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: .92rem;
  outline: none;
  transition: border-color .25s, box-shadow .25s;
}

.ld-form-group input:focus,
.ld-form-group select:focus,
.ld-form-group textarea:focus,
.ld-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, .1);
}

.ld-form-group input::placeholder,
.ld-input::placeholder {
  color: var(--text-dim);
}

.ld-form-group select {
  cursor: pointer;
  appearance: none;
}

.ld-form-group textarea,
textarea.ld-input {
  resize: vertical;
}

.ld-form-group input.is-error,
.ld-form-group select.is-error,
.ld-input.is-error {
  border-color: #e85555;
}

/* CONTACT PAGE */
.ld-contact-section {
  background: radial-gradient(ellipse 50% 70% at 0% 50%, rgba(201, 168, 76, .06) 0%, transparent 60%), radial-gradient(ellipse 40% 40% at 100% 0%, rgba(201, 168, 76, .04) 0%, transparent 55%), #080808;
}

.ld-contact-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.5rem;
  align-items: start;
}

.ld-captcha-group {
  margin-bottom: .8rem;
}

.ld-captcha-header {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .4rem;
}

.ld-captcha-header label {
  margin-bottom: 0 !important;
}

.ld-captcha-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  padding: .15rem .5rem;
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  background: var(--gold-dim);
}

.ld-captcha-input {
  max-width: 280px;
}

.ld-form-submit {
  margin-top: 1.5rem;
}

.ld-form-submit-btn {
  width: 100%;
  justify-content: center;
}

.ld-contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ld-contact-info-card {
  background: radial-gradient(ellipse 60% 40% at 100% 0%, rgba(201, 168, 76, .06) 0%, transparent 55%), #0f0f0f;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  transition: border-color .3s;
}

.ld-contact-info-card:hover {
  border-color: var(--border-gold);
}

.ld-contact-info-card h3 {
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid var(--border);
}

.ld-contact-location {
  display: flex;
  gap: .8rem;
  margin-bottom: 1.2rem;
}

.ld-contact-location:last-of-type {
  margin-bottom: 0;
}

.ld-contact-loc-icon {
  color: var(--gold);
  font-size: .75rem;
  margin-top: .25rem;
  flex-shrink: 0;
}

.ld-contact-location strong {
  display: block;
  font-size: .9rem;
  margin-bottom: .2rem;
  font-family: 'Barlow', sans-serif;
}

.ld-contact-location p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.ld-contact-hours {
  color: var(--text-dim) !important;
  font-size: .76rem !important;
}

.ld-contact-detail {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  margin-bottom: 1rem;
}

.ld-contact-detail__label {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-family: 'Barlow Condensed', sans-serif;
}

.ld-contact-detail__value {
  font-size: .92rem;
  color: var(--gold);
  transition: opacity .2s;
}

.ld-contact-detail__value:hover {
  opacity: .8;
  text-decoration: underline;
}

.ld-contact-social {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.ld-contact-social__link {
  padding: .3rem .8rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .78rem;
  color: var(--text-muted);
  transition: all .25s;
}

.ld-contact-social__link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.ld-contact-info-card--highlight {
  border-color: var(--border-gold);
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 168, 76, .1) 0%, transparent 55%), #0f0f0f;
  text-align: center;
}

.ld-contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
}

.ld-contact-info-card--highlight h3,
.ld-contact-info-card--highlight h4 {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .4rem;
}

.ld-contact-info-card--highlight p {
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.ld-captcha-group .captcha_image {
  display: block;
  margin: .6rem 0;
  border-radius: var(--radius);
  border: 1px solid var(--border-gold);
  background: #0d0d0d;
  width: 160px;
  height: auto;
  image-rendering: crisp-edges;
}

.ld-captcha-group .captcha_reload {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
  opacity: .8;
  transition: opacity .2s;
}

.ld-captcha-group .captcha_reload::before {
  content: '↻';
  font-size: .9rem;
  display: inline-block;
}

.ld-captcha-group .captcha_reload:hover {
  opacity: 1;
}

/* CATALOGUE PAGE */
.ld-catalogue-section {
  padding-top: 3rem;
  background: radial-gradient(ellipse 40% 50% at 100% 0%, rgba(201, 168, 76, .05) 0%, transparent 55%), #080808;
}

.ld-catalogue-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
}

.ld-catalogue-content {
  min-width: 0;
}

.ld-catalogue-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.ld-results-count {
  font-size: .85rem;
  color: var(--text-muted);
}

.ld-results-count strong {
  color: var(--gold);
}

.ld-filters-panel {
  background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(201, 168, 76, .06) 0%, transparent 60%), #0f0f0f;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  height: fit-content;
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}

.ld-filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.ld-filters-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
}

.ld-filters-reset {
  font-size: .78rem;
  color: var(--gold);
  cursor: pointer;
  transition: opacity .2s;
}

.ld-filters-reset:hover {
  opacity: .7;
}

.ld-filter-group {
  margin-bottom: 1.5rem;
}

.ld-filter-label {
  display: block;
  margin-bottom: .7rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.ld-filter-checkboxes {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.ld-check-label {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: color .2s;
}

.ld-check-label:hover {
  color: var(--text);
}

.ld-check-label input[type="checkbox"] {
  accent-color: var(--gold);
  width: 14px;
  height: 14px;
}

.ld-range-input {
  width: 100%;
  appearance: none;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  accent-color: var(--gold);
}

.ld-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: 2px solid #080808;
  box-shadow: 0 0 0 1px var(--gold);
}

.ld-range-display {
  margin-top: .6rem;
  font-size: .88rem;
  color: var(--text-muted);
}

.ld-range-display strong {
  color: var(--gold);
}

.ld-filter-select {
  width: 100%;
  padding: .6rem .8rem;
  background: #0d0d0d;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: .88rem;
  cursor: pointer;
  outline: none;
  transition: border-color .25s;
  appearance: none;
}

.ld-filter-select:focus {
  border-color: var(--gold);
}

.ld-mobile-filter-btn {
  display: none;
  padding: .5rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .85rem;
  color: var(--text-muted);
  transition: all .25s;
}

.ld-mobile-filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.ld-mobile-filter-apply {
  display: none;
  margin-top: 1.5rem;
}

.ld-no-results {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
}

.ld-no-results-icon {
  font-size: 2rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
  display: block;
}

/* CAR DETAIL PAGE */
.ld-detail-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem 0;
}

.ld-detail-back {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  cursor: pointer;
  transition: color .25s;
}

.ld-detail-back:hover {
  color: var(--gold);
}

.ld-detail-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2.5rem;
  padding-bottom: 4rem;
}

.ld-detail-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ld-detail-main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  aspect-ratio: 16/9;
}

.ld-detail-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ld-detail-thumbs {
  display: flex;
  gap: .75rem;
}

.ld-detail-thumb {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color .25s;
  aspect-ratio: 16/9;
}

.ld-detail-thumb.is-active {
  border-color: var(--gold);
}

.ld-detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ld-detail-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ld-detail-header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
}

.ld-detail-cat-badge {
  display: inline-block;
  padding: .25rem .7rem;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  font-size: .7rem;
  color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .6rem;
}

.ld-detail-brand {
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .3rem;
  font-family: 'Barlow Condensed', sans-serif;
}

.ld-detail-name {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: .75rem;
}

.ld-detail-rating {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--text-muted);
  font-size: .85rem;
}

.ld-detail-rating-stars {
  color: var(--gold);
}

.ld-detail-price-box {
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 168, 76, .09) 0%, transparent 55%), #0f0f0f;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.ld-detail-price {
  display: flex;
  align-items: baseline;
  gap: .4rem;
  margin-bottom: .5rem;
}

.ld-detail-price-val {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
}

.ld-detail-price-unit {
  color: var(--text-muted);
  font-size: .9rem;
}

.ld-detail-deposit {
  font-size: .8rem;
  color: var(--text-dim);
  margin-bottom: 1.2rem;
}

.ld-detail-btn-reserve,
.ld-detail-btn-contact {
  width: 100%;
  justify-content: center;
  margin-bottom: .75rem;
}

.ld-detail-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.ld-detail-spec {
  background: #0f0f0f;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  text-align: center;
}

.ld-detail-spec-icon {
  color: var(--gold);
  font-size: .7rem;
  margin-bottom: .1rem;
}

.ld-detail-spec-val {
  font-weight: 600;
  font-size: .95rem;
}

.ld-detail-spec-key {
  font-size: .65rem;
  color: var(--text-dim);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ld-detail-desc {
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}

.ld-detail-features-section {
  padding: 3rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.ld-detail-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: .75rem;
  margin-top: 1.5rem;
}

.ld-detail-feature-tag {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem .8rem;
  background: #0f0f0f;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .85rem;
  color: var(--text-muted);
}

.ld-detail-feature-tag::before {
  content: '◆';
  color: var(--gold);
  font-size: .5rem;
  flex-shrink: 0;
}

/* RESERVATION PAGE */
.ld-reservation-section {
  background: radial-gradient(ellipse 40% 50% at 100% 0%, rgba(201, 168, 76, .05) 0%, transparent 55%), #080808;
}

.ld-reservation-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.ld-reservation-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: start;
}

.ld-selected-car-preview {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.ld-selected-car-preview img {
  width: 80px;
  height: 56px;
  border-radius: 4px;
  object-fit: cover;
}

.ld-selected-car-preview strong {
  display: block;
  font-size: .95rem;
}

.ld-selected-car-preview span {
  font-size: .8rem;
  color: var(--gold);
}

.ld-price-summary {
  background: #0d0d0d;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 1.2rem;
  margin: .5rem 0 1rem;
}

.ld-price-row {
  display: flex;
  justify-content: space-between;
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: .4rem;
}

.ld-price-total {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  color: var(--gold);
  padding-top: .6rem;
  border-top: 1px solid var(--border);
  margin-top: .6rem;
}

.ld-reservation-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ld-info-card {
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201, 168, 76, .06) 0%, transparent 55%), #0f0f0f;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  transition: border-color .3s;
}

.ld-info-card:hover {
  border-color: var(--border-gold);
}

.ld-info-card__icon {
  color: var(--gold);
  font-size: .65rem;
  margin-bottom: .6rem;
}

.ld-info-card h4 {
  font-family: 'Barlow', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: .4rem;
}

.ld-info-card p {
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.ld-form-check {
  margin: 1rem 0 1.5rem;
}

.ld-check-label-large {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .85rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.5;
}

.ld-check-label-large input {
  margin-top: 2px;
  accent-color: var(--gold);
}

.ld-form-link {
  color: var(--gold);
}

/* LOGIN PAGE */
.ld-login-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h));
  margin-top: var(--nav-h);
}

.ld-login-visual {
  position: relative;
  overflow: hidden;
}

.ld-login-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ld-login-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8, 8, 8, .2) 0%, rgba(8, 8, 8, .65) 100%);
}

.ld-login-visual-text {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  color: white;
}

.ld-login-visual-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .5rem;
}

.ld-login-visual-text p {
  font-size: .95rem;
  opacity: .7;
  font-style: italic;
}

.ld-login-form-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201, 168, 76, .07) 0%, transparent 60%), radial-gradient(ellipse 50% 50% at 100% 100%, rgba(201, 168, 76, .05) 0%, transparent 55%), #0d0d0d;
}

.ld-login-form-wrap {
  width: 100%;
  max-width: 400px;
}

.ld-login-title {
  font-size: 2.5rem;
  margin-bottom: .4rem;
}

.ld-login-subtitle {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.ld-login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: .5rem 0 1.5rem;
  font-size: .85rem;
}

.ld-login-divider {
  text-align: center;
  margin: 1.5rem 0;
  position: relative;
}

.ld-login-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.ld-login-divider span {
  position: relative;
  background: #0d0d0d;
  padding: 0 1rem;
  font-size: .8rem;
  color: var(--text-dim);
}

.ld-login-no-account {
  text-align: center;
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.ld-password-wrap {
  position: relative;
}

.ld-password-wrap input {
  padding-right: 5rem;
  width: 100%;
}

.ld-password-toggle {
  position: absolute;
  right: .8rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: .75rem;
  color: var(--gold);
  letter-spacing: .05em;
}

/* ANIMATIONS */
@keyframes ldFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

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

/* RESPONSIVE */
/* ── ≤ 1100 px ── */
@media (max-width:1100px) {
  .ld-about__inner {
    gap: 2.5rem;
  }

  .ld-detail-grid {
    grid-template-columns: 1fr;
  }

  .ld-catalogue-inner {
    grid-template-columns: 240px 1fr;
    gap: 1.5rem;
  }

  .ld-hero__right {
    width: clamp(240px, 22vw, 320px);
  }
}

/* ── ≤ 900 px : hamburger menu ── */
@media (max-width:900px) {
  :root {
    --nav-h: 64px;
  }

  .ld-nav__hamburger {
    display: flex;
  }

  .ld-nav__links {
    display: none !important;
  }

  .ld-hero__nav {
    display: none;
  }

  .ld-hero {
    min-height: calc(100vh - var(--nav-h));
    height: auto;
    align-items: flex-start;
  }

  .ld-hero__content {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 1.5rem 1.5rem 4rem;
    gap: 1.5rem;
  }

  .ld-hero__left {
    max-width: 100%;
  }

  .ld-hero__right {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .ld-hero__showcase {
    width: 100%;
  }

  .ld-hero__title {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    margin-bottom: .8rem;
  }

  .ld-hero__sub {
    font-size: .95rem;
    margin-bottom: 1.2rem;
  }

  .ld-hero__actions {
    margin-bottom: 1.2rem;
  }

  .ld-hero__meta-box {
    max-width: 100%;
  }

  .ld-hero__counter {
    bottom: 1.2rem;
    left: 1.5rem;
    right: auto;
  }

  .ld-about__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .ld-about__img-sec {
    display: none;
  }

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

  .ld-catalogue-inner {
    grid-template-columns: 1fr;
  }

  .ld-filters-panel {
    position: static;
    display: none;
  }

  .ld-filters-panel.is-mobile-open {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 999;
    overflow-y: auto;
    padding: 2rem;
    background: #0f0f0f;
  }

  .ld-mobile-filter-btn {
    display: flex;
  }

  .ld-mobile-filter-apply {
    display: flex;
  }

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

  .ld-reservation-info {
    display: none;
  }

  .ld-login-page {
    grid-template-columns: 1fr;
  }

  .ld-login-visual {
    display: none;
  }

  .ld-footer__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

/* ── ≤ 768 px ── */
@media (max-width:768px) {
  :root {
    --nav-h: 62px;
  }

  .ld-section {
    padding: 4rem 0;
  }

  .ld-footer__links {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .ld-about__features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .ld-cars-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
  }

  .logoApp {
    height: 54px;
    width: 86px;
  }

  .ld-hero__content {
    padding: 1.25rem 1.25rem 3.5rem;
    gap: 1.25rem;
  }

  .ld-hero__title {
    font-size: clamp(2rem, 7vw, 3rem);
    margin-bottom: .75rem;
  }

  .ld-hero__sub {
    margin-bottom: 1rem;
    font-size: .9rem;
  }

  .ld-hero__actions {
    margin-bottom: 1rem;
  }

  .ld-hero__meta-box {
    flex-wrap: wrap;
    padding: .9rem;
  }

  .ld-hero__counter {
    bottom: 1rem;
    left: 1.25rem;
    right: auto;
  }
}

/* ── ≤ 640 px ── */
@media (max-width:640px) {
  :root {
    --nav-h: 58px;
  }

  .ld-container {
    padding: 0 1rem;
  }

  .ld-nav__inner {
    padding: 0 1rem;
  }

  .ld-section {
    padding: 3rem 0;
  }

  .ld-section__header {
    margin-bottom: 2.5rem;
  }

  .logoApp {
    height: 48px;
    width: 76px;
  }

  .ld-hero__content {
    padding: 1rem 1rem 3.5rem;
    gap: 1rem;
  }

  .ld-hero__badge {
    margin-bottom: .5rem;
    font-size: .65rem;
    padding: .3rem .75rem;
  }

  .ld-hero__title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    margin-bottom: .5rem;
  }

  .ld-hero__sub {
    font-size: .85rem;
    margin-bottom: .8rem;
  }

  .ld-hero__actions {
    margin-bottom: .8rem;
  }

  .ld-hero__meta-box {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
    padding: .75rem .85rem;
  }

  .ld-hero__stat-sep {
    width: 100%;
    height: 1px;
  }

  .ld-hero__brand-desc {
    font-size: .73rem;
  }

  .ld-hero__stat-single strong {
    font-size: 1.5rem;
  }

  .ld-hero__counter {
    bottom: .8rem;
    left: 1rem;
    font-size: .65rem;
  }

  .ld-cars-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .ld-amenities-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .ld-form-card {
    padding: 1.5rem;
  }

  .ld-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ld-footer__links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .ld-footer__bottom {
    flex-direction: column;
    gap: .75rem;
    text-align: center;
  }

  .ld-cta-band {
    padding: 3rem 1rem;
  }

  .ld-page-hero {
    padding: 4.5rem 1rem 2rem;
  }

  .ld-catalogue-inner {
    padding: 0 1rem;
  }

  .ld-detail-wrap {
    padding: 1.5rem 1rem 0;
  }

  .ld-detail-features-section {
    padding: 2rem 1rem;
  }

  .ld-detail-features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ld-captcha-input {
    max-width: 100%;
  }

  .ld-login-form-side {
    padding: 2rem 1rem;
  }

  .ld-login-title {
    font-size: 2rem;
  }
}

/* ── ≤ 480 px ── */
@media (max-width:480px) {
  :root {
    --nav-h: 54px;
  }

  .logoApp {
    height: 42px;
    width: 67px;
  }

  .ld-hero__title {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  .ld-hero__badge {
    font-size: .58rem;
    padding: .25rem .6rem;
  }

  .ld-hero__sub {
    font-size: .8rem;
  }

  .ld-hero__meta-box {
    padding: .6rem .75rem;
    gap: .4rem;
  }

  .ld-hero__stat-single strong {
    font-size: 1.35rem;
  }

  .ld-hero__desc-icon {
    font-size: .9rem;
  }

  .ld-hero__brand-desc {
    font-size: .66rem;
  }

  .ld-hero__counter {
    bottom: .7rem;
    left: .8rem;
  }

  .ld-amenities-grid {
    grid-template-columns: 1fr;
  }

  .ld-detail-features-grid {
    grid-template-columns: 1fr;
  }

  .ld-btn--lg {
    padding: .85rem 1.4rem;
    font-size: .8rem;
  }
}

/* ── Landscape / short screens ── */
@media (max-height:560px) {
  .ld-hero {
    min-height: 480px;
  }

  .ld-hero__content {
    padding-top: 1rem;
    padding-bottom: 2.5rem;
  }

  .ld-hero__title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    margin-bottom: .4rem;
  }

  .ld-hero__sub {
    display: none;
  }

  .ld-hero__badge {
    margin-bottom: .4rem;
  }

  .ld-hero__actions {
    margin-bottom: .4rem;
  }

  .ld-hero__meta-box {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .ld-hero__counter {
    bottom: .6rem;
  }
}