/* =========================================================
   PINNACLE GMC – Premium Dark Luxury Dealership
   ========================================================= */

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

:root {
  --black:   #080808;
  --dark:    #0f0f0f;
  --surface: #161616;
  --border:  rgba(255,255,255,.07);
  --gold:    #C8A96E;
  --gold-lt: #E2C88A;
  --gold-dk: #9E7F48;
  --white:   #FFFFFF;
  --gray:    #888;
  --gray-lt: #BBB;
  --text:    #E8E8E8;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --nav-h:  72px;
  --radius: 12px;
  --radius-lg: 20px;

  --ease-out:  cubic-bezier(.22,.68,0,1.2);
  --ease-silk: cubic-bezier(.4,0,.2,1);
}

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

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: auto;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
input, select, textarea, button { font-family: inherit; }
ul { list-style: none; }

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

/* --- LOADER --------------------------------------------- */
.loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; width: 260px; }
.loader-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  letter-spacing: .4em;
  color: var(--gold);
  margin-bottom: 2rem;
}
.loader-bar {
  height: 1px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  width: 0;
  background: var(--gold);
  transition: width .05s linear;
}

/* --- NAV ------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 800;
  height: var(--nav-h);
  transition: background .4s, border-color .4s, backdrop-filter .4s;
}
.nav.scrolled {
  background: rgba(8,8,8,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* brand */
.nav-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.brand-mark {
  width: 38px; height: 38px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  flex-shrink: 0;
}
.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-title {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  color: var(--white);
}
.brand-sub {
  font-size: .58rem;
  letter-spacing: .1em;
  color: var(--gray);
  text-transform: uppercase;
}

/* links */
.nav-menu {
  display: flex;
  gap: 0;
  margin: 0 auto;
}
.nav-link {
  display: block;
  padding: .5rem 1.1rem;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-lt);
  transition: color .25s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1.1rem; right: 1.1rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s var(--ease-silk);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .78rem;
  font-weight: 500;
  color: var(--gray-lt);
  transition: color .25s;
}
.nav-phone:hover { color: var(--gold); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  transition: .3s;
}

/* --- BUTTONS -------------------------------------------- */
.btn-gold {
  display: inline-block;
  padding: .7rem 1.6rem;
  background: var(--gold);
  color: var(--black);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background .25s, transform .2s, box-shadow .25s;
}
.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200,169,110,.25);
}

.btn-sm { padding: .45rem 1rem; font-size: .72rem; }

.btn-ghost {
  display: inline-block;
  padding: .7rem 1.6rem;
  background: transparent;
  color: var(--white);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,.25);
  cursor: pointer;
  transition: background .25s, border-color .25s;
}
.btn-ghost:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.5);
}

.btn-outline-gold {
  display: inline-block;
  padding: .65rem 1.4rem;
  background: transparent;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 4px;
  border: 1px solid var(--gold-dk);
  cursor: pointer;
  transition: background .25s, color .25s;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
}

/* --- SECTION COMMON ------------------------------------- */
.section-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}
.section-tag.light { color: var(--gold-lt); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-title.light { color: var(--white); }

.section-body {
  color: var(--gray-lt);
  max-width: 540px;
  line-height: 1.8;
}

.section-header {
  margin-bottom: 3.5rem;
}

/* --- HERO ----------------------------------------------- */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero.loaded .hero-img { transform: scale(1); }

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(8,8,8,.88) 0%, rgba(8,8,8,.45) 60%, rgba(8,8,8,.15) 100%),
    linear-gradient(to top, rgba(8,8,8,.9) 0%, rgba(8,8,8,.0) 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 0 4rem;
  margin-top: calc(var(--nav-h) * -0.5);
}

.hero-eyebrow {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp .8s .8s var(--ease-out) forwards;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hl-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .9s var(--ease-out) forwards;
}
.hl-line:nth-child(1) { animation-delay: 1s; }
.hl-line:nth-child(2) { animation-delay: 1.2s; }
.hl-line.italic { font-style: italic; color: var(--gold); }

.hero-body {
  color: var(--gray-lt);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp .8s 1.4s var(--ease-out) forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp .8s 1.6s var(--ease-out) forwards;
}

.hero-search {
  position: absolute;
  bottom: 2.5rem;
  left: 0; right: 0;
  z-index: 2;
  padding: 0 4rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .8s 1.9s var(--ease-out) forwards;
}

.search-pill {
  display: flex;
  align-items: center;
  background: rgba(14,14,14,.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  max-width: 900px;
}

.search-sel {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: .82rem;
  padding: 1.1rem 1.25rem;
  appearance: none;
  cursor: pointer;
  outline: none;
  min-width: 0;
}
.search-sel option { background: var(--dark); color: var(--white); }
.search-divider { width: 1px; height: 28px; background: var(--border); flex-shrink: 0; }
.search-btn {
  padding: .9rem 1.75rem;
  background: var(--gold);
  color: var(--black);
  border: none;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .25s;
}
.search-btn:hover { background: var(--gold-lt); }

.hero-scroll-hint {
  position: absolute;
  bottom: 9rem;
  right: 4rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: 0;
  animation: fadeIn 1s 2.2s ease forwards;
}
.hero-scroll-hint span {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s infinite;
}

/* --- MARQUEE -------------------------------------------- */
.marquee-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: .85rem 0;
}
.marquee-track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gray);
}
.marquee-dot { color: var(--gold) !important; }

/* --- STATS ---------------------------------------------- */
.stats-section {
  padding: 5rem 0;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-item {
  background: var(--surface);
  padding: 3rem 2.5rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .5rem;
}
.stat-label {
  font-size: .8rem;
  color: var(--gray);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* --- MODELS CAROUSEL ------------------------------------ */
.models-section {
  padding: 7rem 0 5rem;
}
.models-section .container {
  margin-bottom: 3.5rem;
}

.models-carousel {
  display: flex;
  overflow-x: hidden;
  gap: 0;
  padding: 0 max(2rem, calc((100vw - 1280px)/2));
  scroll-snap-type: x mandatory;
  transition: transform .6s var(--ease-silk);
}

.model-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 0 2rem;
  flex-shrink: 0;
}

.model-slide-img {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.model-slide-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-silk);
}
.model-slide-img:hover img { transform: scale(1.04); }
.model-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,.2) 0%, rgba(8,8,8,.0) 60%);
}

.model-badge-pill {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  padding: .35rem .85rem;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  border-radius: 99px;
}
.model-badge-pill.bestseller { background: var(--gold); color: var(--black); }
.model-badge-pill.new { background: #1A6EFF; color: #fff; }
.model-badge-pill.ev { background: #00B870; color: #fff; }

.model-slide-info {
  padding: 1rem 0;
}
.model-cat {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.model-name {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.model-desc {
  color: var(--gray-lt);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 420px;
}

.model-stats-row {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.model-stat span {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
}
.model-stat small {
  font-size: .7rem;
  color: var(--gray);
  letter-spacing: .08em;
}

.model-price-row {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  margin-bottom: 1.5rem;
}
.from-label { font-size: .78rem; color: var(--gray); }
.from-price {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.carousel-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background .25s, border-color .25s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.carousel-dots {
  display: flex;
  gap: .5rem;
}
.carousel-dot {
  width: 24px; height: 3px;
  border-radius: 99px;
  background: var(--border);
  transition: background .3s, width .3s;
  cursor: pointer;
  border: none;
}
.carousel-dot.active { background: var(--gold); width: 40px; }

/* --- INVENTORY ------------------------------------------ */
.inventory-section {
  padding: 7rem 0;
  background: var(--dark);
}
.inv-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.inv-filter-group {
  display: flex;
  gap: .5rem;
}
.filter-tab {
  padding: .55rem 1.25rem;
  background: transparent;
  color: var(--gray);
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: .78rem;
  font-weight: 500;
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s;
}
.filter-tab:hover { color: var(--white); border-color: rgba(255,255,255,.3); }
.filter-tab.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  font-weight: 600;
}

.inv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.inv-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s var(--ease-silk), border-color .3s, box-shadow .3s;
}
.inv-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,169,110,.2);
  box-shadow: 0 24px 48px rgba(0,0,0,.4);
}
.inv-card.hidden { display: none; }

.inv-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.inv-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-silk);
}
.inv-card:hover .inv-img-wrap img { transform: scale(1.06); }

.inv-tag {
  position: absolute;
  top: .85rem; left: .85rem;
  padding: .25rem .65rem;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 4px;
}
.inv-tag.new { background: var(--gold); color: var(--black); }
.inv-tag.cpo { background: #1A6EFF; color: #fff; }
.inv-tag.used { background: var(--surface); color: var(--gray-lt); border: 1px solid var(--border); }
.inv-tag.ev { background: #00B870; color: #fff; }

.inv-wishlist {
  position: absolute;
  top: .75rem; right: .75rem;
  width: 34px; height: 34px;
  background: rgba(8,8,8,.6);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--white);
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s, color .25s;
}
.inv-wishlist:hover, .inv-wishlist.saved { background: var(--gold); color: var(--black); }

.inv-body { padding: 1.25rem 1.5rem 1.5rem; }
.inv-year-name {
  font-weight: 600;
  font-size: .98rem;
  color: var(--white);
  margin-bottom: .2rem;
}
.inv-trim {
  font-size: .78rem;
  color: var(--gray);
  margin-bottom: .85rem;
}
.inv-meta {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.inv-meta span {
  font-size: .7rem;
  color: var(--gray);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  padding: .2rem .6rem;
  border-radius: 4px;
}

.inv-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.inv-price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.inv-view-all { text-align: center; }

/* --- SPLIT SECTION -------------------------------------- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}

.split-img-col {
  position: relative;
  overflow: hidden;
}
.split-img-col img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-silk);
}
.split-img-col:hover img { transform: scale(1.04); }

.split-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,8,8,.05) 0%, rgba(8,8,8,.35) 100%);
}

.split-img-badge {
  position: absolute;
  bottom: 2rem; left: 2rem;
  background: rgba(8,8,8,.82);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .85rem;
}
.sib-icon { font-size: 1.75rem; }
.split-img-badge strong {
  display: block;
  font-size: .88rem;
  color: var(--white);
}
.split-img-badge span {
  font-size: .75rem;
  color: var(--gold);
}

.split-content-col {
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 5rem 5rem 5rem;
}
.split-body {
  color: var(--gray-lt);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.split-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.split-feat {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.feat-icon {
  color: var(--gold);
  font-size: .6rem;
  margin-top: .35rem;
  flex-shrink: 0;
}
.feat-body strong {
  display: block;
  font-size: .92rem;
  color: var(--white);
  margin-bottom: .2rem;
}
.feat-body p { font-size: .85rem; color: var(--gray); line-height: 1.6; }

/* --- SERVICES ------------------------------------------- */
.services-section {
  padding: 7rem 0;
  background: var(--black);
}
.services-section .section-header { text-align: center; }
.services-section .section-body { margin: 0 auto; text-align: center; }

.services-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;
}

.service-card {
  background: var(--dark);
  padding: 2.75rem 2.25rem;
  position: relative;
  transition: background .3s;
}
.service-card:hover { background: var(--surface); }
.service-card:hover .svc-link { color: var(--gold-lt); }

.svc-num {
  position: absolute;
  top: 1.5rem; right: 1.75rem;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .15em;
  color: var(--border);
}
.svc-icon-wrap {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}
.service-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .65rem;
}
.service-card p {
  font-size: .85rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.svc-link {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color .25s;
}

/* --- FINANCING ------------------------------------------ */
.fin-section {
  padding: 7rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.fin-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.fin-body {
  color: var(--gray-lt);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.fin-list {
  margin-bottom: 2rem;
}
.fin-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  color: var(--gray-lt);
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
}
.fin-check { color: var(--gold); font-size: 1rem; }
.fin-disclaimer {
  font-size: .72rem;
  color: var(--gray);
  margin-top: 1rem;
}

.fin-calc-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}
.fin-calc-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1.75rem;
}
.calc-row {
  margin-bottom: 1.1rem;
}
.calc-row label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: .45rem;
}
.calc-input-box {
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.calc-input-box span {
  padding: .7rem .9rem;
  color: var(--gray);
  font-size: .85rem;
  flex-shrink: 0;
}
.calc-input-box input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: .92rem;
  padding: .7rem .5rem;
  outline: none;
  min-width: 0;
}
.calc-row select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--white);
  font-size: .92rem;
  padding: .7rem .9rem;
  outline: none;
  appearance: none;
  cursor: pointer;
}
.calc-result-box {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: .5rem;
  background: rgba(200,169,110,.08);
  border: 1px solid rgba(200,169,110,.2);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
}
.calc-result-label {
  font-size: .72rem;
  color: var(--gray);
  letter-spacing: .1em;
  width: 100%;
  text-transform: uppercase;
}
.calc-result-num {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
}
.calc-result-term {
  font-size: .8rem;
  color: var(--gray);
}

/* --- TESTIMONIALS --------------------------------------- */
.testimonials-section {
  padding: 7rem 0;
  background: var(--dark);
}
.testimonials-section .section-header { text-align: center; margin-bottom: 4rem; }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 3.5rem;
}

.t-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform .3s, box-shadow .3s;
}
.t-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,.3);
}
.t-card-featured {
  background: linear-gradient(135deg, rgba(200,169,110,.08), rgba(200,169,110,.02));
  border-color: rgba(200,169,110,.2);
  transform: translateY(-8px);
}
.t-card-featured:hover { transform: translateY(-14px); }

.t-rating {
  color: var(--gold);
  font-size: .95rem;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}
.t-card blockquote {
  font-size: .93rem;
  color: var(--gray-lt);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.t-author-row {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.t-avatar {
  width: 42px; height: 42px;
  background: var(--gold-dk);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.t-author-row strong { display: block; font-size: .88rem; color: var(--white); }
.t-author-row small { font-size: .75rem; color: var(--gray); }

.review-badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.review-badge-item {
  text-align: center;
}
.review-badge-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
}
.review-badge-item span { color: var(--gold); font-size: 1.1rem; }
.review-badge-item small {
  display: block;
  font-size: .7rem;
  color: var(--gray);
  letter-spacing: .08em;
  margin-top: .25rem;
}

/* --- FULLSCREEN CTA ------------------------------------- */
.fullscreen-cta {
  position: relative;
  height: 60vh;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.fcta-bg {
  position: absolute;
  inset: 0;
}
.fcta-bg img { width: 100%; height: 100%; object-fit: cover; }
.fcta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,.7);
}
.fcta-content {
  position: relative;
  z-index: 2;
  padding: 0 2rem;
}
.fcta-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.fcta-content p {
  font-size: 1rem;
  color: var(--gray-lt);
  margin-bottom: 2rem;
}
.fcta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --- CONTACT -------------------------------------------- */
.contact-section {
  padding: 7rem 0;
  background: var(--black);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}
.ci { display: flex; gap: 1.1rem; align-items: flex-start; }
.ci-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: .1rem; }
.ci strong { display: block; font-size: .88rem; color: var(--white); margin-bottom: .25rem; }
.ci p, .ci a { font-size: .9rem; color: var(--gray-lt); }
.ci a:hover { color: var(--gold); }

.hours-tbl { border-collapse: collapse; }
.hours-tbl td { font-size: .85rem; color: var(--gray-lt); padding: .2rem 1.25rem .2rem 0; }
.hours-tbl td:first-child { color: var(--gray); min-width: 90px; }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 1.75rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
}
.opt { font-weight: 400; text-transform: none; letter-spacing: 0; }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--white);
  font-size: .9rem;
  padding: .75rem 1rem;
  outline: none;
  transition: border-color .25s;
  resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold-dk); }
.form-group select option { background: var(--dark); }

.form-submit {
  width: 100%;
  padding: .9rem;
  font-size: .85rem;
  letter-spacing: .12em;
}
.form-note {
  text-align: center;
  font-size: .72rem;
  color: var(--gray);
  margin-top: 1rem;
}

/* --- FOOTER --------------------------------------------- */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 5rem 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}
.footer-mark { width: 44px; height: 44px; font-size: 1.2rem; border-radius: 8px; }
.footer-tagline { font-size: .85rem; color: var(--gray); line-height: 1.7; margin-bottom: 1.5rem; }

.social-row { display: flex; gap: .6rem; }
.social-pill {
  width: 34px; height: 34px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  color: var(--gray);
  transition: background .25s, color .25s, border-color .25s;
}
.social-pill:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }

.footer-nav-col h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-nav-col ul li { margin-bottom: .6rem; }
.footer-nav-col a { font-size: .85rem; color: var(--gray); transition: color .25s; }
.footer-nav-col a:hover { color: var(--gold); }

.footer-bottom {
  padding: 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.footer-bottom p, .footer-bottom a { font-size: .75rem; color: var(--gray); }
.footer-bottom a:hover { color: var(--gold); }
.footer-legal-note { color: #555; max-width: 680px; line-height: 1.6; }

/* --- BACK TO TOP ---------------------------------------- */
.back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s, transform .25s;
  z-index: 500;
}
.back-top.visible { opacity: 1; visibility: visible; }
.back-top:hover { transform: translateY(-3px); }

/* --- ANIMATIONS ----------------------------------------- */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: .4; transform: scaleY(.7); }
}

/* JS-driven reveal */
.reveal-item {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease-silk), transform .7s var(--ease-silk);
}
.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE ----------------------------------------- */
@media (max-width: 1100px) {
  .fin-inner { grid-template-columns: 1fr; gap: 3rem; }
  .split-section { grid-template-columns: 1fr; }
  .split-img-col { aspect-ratio: 16/7; }
  .split-content-col { padding: 4rem 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 900px) {
  .nav-menu { display: none; }
  .nav-phone { display: none; }
  .nav-hamburger { display: flex; }
  .btn-gold[href="#contact"] { display: none; }

  .hero-content { padding: 0 2rem; }
  .hero-search { padding: 0 2rem; }
  .search-pill { flex-direction: column; border-radius: 12px; }
  .search-sel { width: 100%; border-bottom: 1px solid var(--border); }
  .search-divider { display: none; }
  .search-btn { width: 100%; padding: 1rem; }

  .hero-scroll-hint { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .model-slide { grid-template-columns: 1fr; gap: 2rem; padding: 0; }
  .inv-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .t-card-featured { transform: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row-2 { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .container { padding: 0 1.25rem; }
  .inv-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .models-carousel { padding: 0 1.25rem; }
  .inv-header { flex-direction: column; align-items: flex-start; }
  .inv-filter-group { flex-wrap: wrap; }
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
  * { cursor: auto !important; }
  .hero-search { bottom: 1.5rem; }
}

/* ── FLEET GALLERY ─────────────────────────────────────── */
.gallery-section {
  padding: 7rem 0;
  background: var(--black);
  border-top: 1px solid var(--border);
}

.gallery-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.gallery-bento {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 380px 260px 260px 380px;
  grid-template-areas:
    "tall-left  wide-top   wide-top"
    "tall-left  square-tr  square-mid"
    "wide-mid   wide-mid   tall-right"
    "square-bl  wide-bot   tall-right";
}

.gallery-cell {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface);
  cursor: pointer;
}

.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s var(--ease-silk);
}

.gallery-cell:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,.82) 0%, rgba(8,8,8,.25) 45%, rgba(8,8,8,0) 100%);
  opacity: 0;
  transition: opacity .4s var(--ease-silk);
  display: flex;
  align-items: flex-end;
  padding: 1.4rem 1.6rem;
}

.gallery-cell:hover .gallery-overlay { opacity: 1; }

.gallery-label {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--gold);
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(200,169,110,.45);
}

.gc-tall-left  { grid-area: tall-left; }
.gc-wide-top   { grid-area: wide-top; }
.gc-square-tr  { grid-area: square-tr; }
.gc-square-mid { grid-area: square-mid; }
.gc-wide-mid   { grid-area: wide-mid; }
.gc-square-bl  { grid-area: square-bl; }
.gc-tall-right { grid-area: tall-right; }
.gc-wide-bot   { grid-area: wide-bot; }
.gc-square-br  { grid-area: square-br; }

@media (max-width: 900px) {
  .gallery-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
    grid-auto-rows: 280px;
    grid-template-areas: none;
    padding: 0 1.5rem;
  }
  .gallery-cell { grid-area: unset !important; }
  .gc-tall-left { grid-column: span 2 !important; height: 340px; }
}

@media (max-width: 600px) {
  .gallery-bento {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
    padding: 0 1.25rem;
    gap: 4px;
  }
  .gc-tall-left { grid-column: span 1 !important; height: 240px; }
  .gc-square-bl, .gc-wide-bot, .gc-square-br { display: none; }
}

/* Mobile nav overlay */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 750;
  padding: calc(var(--nav-h) + 2rem) 2.5rem 2.5rem;
  flex-direction: column;
  gap: .25rem;
  border-top: 1px solid var(--border);
}
.nav-mobile-overlay.open { display: flex; }
.nav-mobile-overlay a {
  display: block;
  font-size: 1.5rem;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--white);
  padding: .9rem 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.nav-mobile-overlay a:last-child { border-bottom: none; }
.nav-mobile-overlay a:hover { color: var(--gold); }

/* ── HERO SLIDER ──────────────────────────────────────────── */
.hero-slider {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
}
.slides-wrap { position: relative; width: 100%; height: 100%; }
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease;
  pointer-events: none;
}
.slide.active { opacity: 1; pointer-events: auto; }
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
  background-color: #1a2540;
}
.slide.active .slide-bg { transform: scale(1); }
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,20,48,.82) 0%, rgba(8,20,48,.45) 55%, rgba(8,20,48,.15) 100%);
}
.slide-content {
  position: absolute;
  top: 50%; left: 0;
  transform: translateY(-50%);
  max-width: 620px;
  padding: 0 4rem;
  color: #fff;
}
.slide-eyebrow {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 1.1rem;
}
.slide-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.06;
  color: #fff;
  margin-bottom: 1rem;
}
.slide-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}
.slide-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  display: inline-block;
  padding: .75rem 1.75rem;
  background: #1D4ED8;
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background .25s, transform .2s;
}
.btn-primary:hover { background: #3B82F6; transform: translateY(-1px); }

.btn-ghost-light {
  display: inline-block;
  padding: .75rem 1.75rem;
  background: transparent;
  color: #fff;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.38);
  cursor: pointer;
  transition: background .25s, border-color .25s;
}
.btn-ghost-light:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.65); }

.slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s;
}
.slider-arrow:hover { background: rgba(255,255,255,.28); }
.prev-arrow { left: 2rem; }
.next-arrow { right: 2rem; }

.slider-dots {
  position: absolute;
  bottom: 7.5rem;
  left: 4rem;
  z-index: 10;
  display: flex;
  gap: .5rem;
}
.slider-dot {
  width: 28px; height: 3px;
  background: rgba(255,255,255,.3);
  border: none;
  border-radius: 99px;
  cursor: pointer;
  transition: background .3s, width .3s;
}
.slider-dot.active { background: #fff; width: 48px; }

/* ── WHITE / COLOURFUL THEME ──────────────────────────────── */
body { background: #fff; color: #1e293b; }

/* Nav — white bar */
.nav { background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(0,0,0,.07); backdrop-filter: blur(16px); }
.nav.scrolled { background: rgba(255,255,255,.98); box-shadow: 0 1px 20px rgba(0,0,0,.08); border-bottom-color: rgba(0,0,0,.1); }
.brand-title { color: #0f172a; }
.brand-sub { color: #64748b; }
.nav-link { color: #475569; }
.nav-link:hover { color: #1D4ED8; }
.nav-link::after { background: #1D4ED8; }
.nav-hamburger span { background: #1e293b; }
.nav-phone { color: #475569; }
.nav-phone:hover { color: #1D4ED8; }
.nav-mobile-overlay { background: #fff; }
.nav-mobile-overlay a { color: #1e293b; border-color: rgba(0,0,0,.06); }
.nav-mobile-overlay a:hover { color: #1D4ED8; }

/* Section text — dark on white */
.section-title { color: #0f172a; }
.section-title em { color: #1D4ED8; }
.section-body { color: #64748b; }
.section-tag { color: #1D4ED8; }

/* Buttons — blue */
.btn-gold { background: #1D4ED8; color: #fff; box-shadow: none; }
.btn-gold:hover { background: #3B82F6; box-shadow: 0 8px 24px rgba(29,78,216,.25); }
.btn-ghost { color: #1e293b; border-color: rgba(0,0,0,.18); }
.btn-ghost:hover { background: rgba(0,0,0,.04); border-color: rgba(0,0,0,.3); }
.btn-outline-gold { color: #1D4ED8; border-color: rgba(29,78,216,.45); }
.btn-outline-gold:hover { background: #1D4ED8; color: #fff; }

/* Marquee — light */
.marquee-strip { background: #f1f5f9; border-color: rgba(0,0,0,.06); }
.marquee-dot { color: #1D4ED8 !important; }
.marquee-track span { color: #64748b; }

/* Stats — colourful cards */
.stats-section { background: #fff; border-color: rgba(0,0,0,.06); }
.stats-grid { background: transparent; border: none; gap: 1.5rem; }
.stat-item { border-radius: 16px; }
.stat-item:nth-child(1) { background: #1D4ED8; }
.stat-item:nth-child(2) { background: #DC2626; }
.stat-item:nth-child(3) { background: #16A34A; }
.stat-item:nth-child(4) { background: #F97316; }
.stat-num { color: #fff; }
.stat-label { color: rgba(255,255,255,.78); }

/* Models — keep dark for contrast */
.models-section { background: #0f172a; }

/* Inventory — light background, white cards */
.inventory-section { background: #f4f7fb; }
.inv-header .section-title { color: #0f172a; }
.inv-card { background: #fff; box-shadow: 0 2px 16px rgba(0,0,0,.06); border-color: rgba(0,0,0,.06); }
.inv-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,.12); border-color: rgba(29,78,216,.2); }
.inv-year-name { color: #0f172a; }
.inv-trim { color: #64748b; }
.inv-price { color: #1D4ED8; }
.inv-meta span { background: #f1f5f9; border-color: rgba(0,0,0,.06); color: #64748b; }
.inv-tag.new { background: #1D4ED8; color: #fff; }
.inv-tag.used { background: #f1f5f9; color: #475569; border-color: rgba(0,0,0,.1); }
.inv-wishlist { background: rgba(255,255,255,.92); color: #64748b; border-color: rgba(0,0,0,.1); }
.inv-wishlist:hover, .inv-wishlist.saved { background: #1D4ED8; color: #fff; }
.filter-tab { color: #64748b; border-color: rgba(0,0,0,.1); }
.filter-tab:hover { color: #1D4ED8; border-color: rgba(29,78,216,.4); }
.filter-tab.active { background: #1D4ED8; color: #fff; border-color: #1D4ED8; }

/* Split section */
.split-content-col { background: #f8fafc; }
.split-content-col .section-title { color: #0f172a; }
.split-body { color: #64748b; }
.feat-icon { color: #1D4ED8; }
.feat-body strong { color: #0f172a; }
.feat-body p { color: #64748b; }
.split-img-badge { background: rgba(255,255,255,.95); border-color: rgba(0,0,0,.08); }
.split-img-badge strong { color: #0f172a; }
.split-img-badge span { color: #1D4ED8; }

/* Services — light, colourful */
.services-section { background: #fff; }
.services-grid { background: transparent; border-color: rgba(0,0,0,.06); }
.service-card { background: #f8fafc; border-color: rgba(0,0,0,.06); }
.service-card:hover { background: #f1f5f9; }
.service-card h3 { color: #0f172a; }
.service-card p { color: #64748b; }
.svc-num { color: rgba(0,0,0,.08); }
.svc-link { color: #1D4ED8; }
.service-card:hover .svc-link { color: #3B82F6; }

/* Financing — light */
.fin-section { background: #f4f7fb; border-color: rgba(0,0,0,.06); }
.fin-section .section-title { color: #0f172a; }
.fin-body { color: #64748b; }
.fin-list li { color: #475569; border-color: rgba(0,0,0,.06); }
.fin-check { color: #1D4ED8; }
.fin-calc-card { background: #fff; box-shadow: 0 4px 24px rgba(0,0,0,.08); border-color: rgba(0,0,0,.06); }
.fin-calc-card h3 { color: #0f172a; }
.calc-input-box { background: #f8fafc; border-color: rgba(0,0,0,.1); }
.calc-input-box input { color: #0f172a; }
.calc-row select { background: #f8fafc; color: #0f172a; border-color: rgba(0,0,0,.1); }
.calc-result-box { background: rgba(29,78,216,.05); border-color: rgba(29,78,216,.18); }
.calc-result-num { color: #1D4ED8; }
.form-group select option { background: #fff; color: #0f172a; }

/* Testimonials — white */
.testimonials-section { background: #fff; }
.testimonials-section .section-title { color: #0f172a; }
.t-card { background: #fff; box-shadow: 0 2px 16px rgba(0,0,0,.06); border-color: rgba(0,0,0,.06); }
.t-card-featured { background: linear-gradient(135deg, rgba(29,78,216,.06), rgba(29,78,216,.02)); border-color: rgba(29,78,216,.22); }
.t-card blockquote { color: #475569; }
.t-author-row strong { color: #0f172a; }
.t-author-row small { color: #94a3b8; }
.t-rating { color: #F59E0B; }
.review-badge-item strong { color: #0f172a; }
.review-badge-item span { color: #F59E0B; }
.review-badges-row { border-color: rgba(0,0,0,.06); }

/* Contact — light */
.contact-section { background: #f4f7fb; }
.contact-section .section-title { color: #0f172a; }
.ci strong { color: #0f172a; }
.ci p, .ci a { color: #64748b; }
.ci a:hover { color: #1D4ED8; }
.hours-tbl td { color: #475569; }
.hours-tbl td:first-child { color: #64748b; }
.contact-form { background: #fff; box-shadow: 0 4px 24px rgba(0,0,0,.08); border-color: rgba(0,0,0,.06); }
.contact-form h3 { color: #0f172a; }
.form-group input,
.form-group select,
.form-group textarea { background: #f8fafc; border-color: rgba(0,0,0,.1); color: #0f172a; }
.form-group input::placeholder, .form-group textarea::placeholder { color: #94a3b8; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: #1D4ED8; }
.form-submit { background: #1D4ED8; }

/* Footer — dark navy */
.footer { background: #0f172a; border-color: rgba(255,255,255,.06); }
.footer-top { border-color: rgba(255,255,255,.06); }
.footer-tagline { color: #94a3b8; }
.footer-nav-col h4 { color: #e2e8f0; }
.footer-nav-col a { color: #94a3b8; }
.footer-nav-col a:hover { color: #60a5fa; }
.social-pill { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.1); color: #94a3b8; }
.social-pill:hover { background: #1D4ED8; border-color: #1D4ED8; color: #fff; }
.footer-bottom p, .footer-bottom a { color: #64748b; }
.footer-bottom a:hover { color: #60a5fa; }

/* Carousel — blue active */
.carousel-btn:hover { background: #1D4ED8; border-color: #1D4ED8; color: #fff; }
.carousel-dot.active { background: #1D4ED8; }

/* Back to top */
.back-top { background: #1D4ED8; color: #fff; }

/* Loader */
.loader { background: #0f172a; }
.loader-logo { color: #60a5fa; }
.loader-fill { background: #1D4ED8; }
.loader-bar { background: rgba(255,255,255,.12); }

/* Search bar */
.search-pill { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.25); }
.search-sel { color: #fff; }
.search-btn { background: #1D4ED8; }
.search-btn:hover { background: #3B82F6; }

/* ── ANIMATION ADDITIONS ─────────────────────────────────── */

.slide-eyebrow,
.slide-content h2,
.slide-content p,
.slide-actions { will-change: transform; }

#invGrid { perspective: 1200px; }
.inv-card { overflow: visible; transform-style: preserve-3d; }
.inv-card:hover { transform: none; }

@keyframes svcIconBounce {
  0%   { transform: translateY(0);    }
  35%  { transform: translateY(-6px); }
  65%  { transform: translateY(-2px); }
  85%  { transform: translateY(-5px); }
  100% { transform: translateY(0);    }
}
.service-card:hover .svc-icon-wrap {
  animation: svcIconBounce 0.52s ease forwards;
}

.btn-gold:active,
.btn-primary:active,
.btn-ghost-light:active {
  transform: scale(0.95) translateY(1px);
  transition: transform 0.08s ease;
}

.slider-arrow { transition: background .25s, transform .2s var(--ease-out); }
.slider-arrow:hover {
  background: rgba(255,255,255,.28);
  transform: translateY(-50%) scale(1.1);
}

.model-slide-img img { will-change: transform; }
.model-slide-img:hover img { transform: none; }
