/* =====================================================
   MOTORSLUXE PRO — Premium Design System v2
   Black #050505 · Gold #C9A84C · White #F0EBE0
   ===================================================== */

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

:root {
  --black:      #050505;
  --dark:       #0A0A0A;
  --carbon:     #111111;
  --panel:      #161616;
  --panel2:     #1A1A1A;
  --gold:       #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark:  #8B6F2E;
  --gold-dim:   #5A4520;
  --gold-glow:  rgba(201,168,76,.14);
  --gold-line:  rgba(201,168,76,.22);
  --white:      #F0EBE0;
  --silver:     #9A9488;
  --muted:      #585450;
  --border:     rgba(201,168,76,.12);
  --border-s:   rgba(201,168,76,.30);
  --r: 3px;
}

html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family:'Cinzel',serif; font-weight:700; line-height:1.05; }
.gold  { color: var(--gold); }
.white { color: var(--white); }
.container { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gold); color: var(--black);
  font-family: 'Jost',sans-serif; font-weight: 700;
  font-size: .72rem; letter-spacing: .25em; text-transform: uppercase;
  padding: 1rem 2.4rem; border-radius: var(--r);
  border: none; cursor: pointer; text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-gold:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,.3);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--white);
  font-family: 'Jost',sans-serif; font-weight: 600;
  font-size: .72rem; letter-spacing: .25em; text-transform: uppercase;
  padding: 1rem 2.4rem; border-radius: var(--r);
  border: 1px solid rgba(240,235,224,.25); cursor: pointer; text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-glow); }
.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--gold);
  font-family: 'Jost',sans-serif; font-weight: 600;
  font-size: .72rem; letter-spacing: .25em; text-transform: uppercase;
  padding: 1rem 2.4rem; border-radius: var(--r);
  border: 1px solid var(--border-s); cursor: pointer; text-decoration: none;
  transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: var(--gold); background: var(--gold-glow); }

/* ── SECTION LABELS ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .62rem; font-weight: 600;
  letter-spacing: .42em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .9rem;
}
.eyebrow::before, .eyebrow::after {
  content: ''; flex: 0 0 28px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: 'Cinzel',serif;
  font-size: clamp(2rem,4.5vw,3.2rem);
  color: var(--white); margin-bottom: 1rem; line-height: 1.08;
}
.section-sub {
  color: var(--silver); font-size: .92rem;
  max-width: 540px; margin-bottom: 3.5rem; line-height: 1.85;
}
section { padding: 7rem 0; }
section.s-sm   { padding: 4rem 0; }
section.s-dark { background: var(--dark); }
section.s-carbon { background: var(--carbon); }
section.s-panel { background: var(--panel); }

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 76px;
  background: rgba(5,5,5,.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  transition: border-color .3s;
}
.nav-logo {
  display: flex; align-items: center; gap: .8rem;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo-img { height: 42px; width: auto; }
.nav-logo-name {
  font-family: 'Cinzel',serif; font-weight: 700;
  font-size: 1rem; letter-spacing: .12em; color: var(--white); line-height: 1.15;
}
.nav-logo-name span { color: var(--gold); }
.nav-logo-est {
  display: block; font-family: 'Jost',sans-serif;
  font-size: .52rem; letter-spacing: .45em;
  text-transform: uppercase; color: var(--silver); margin-top: .15rem;
}
.nav-links { display: flex; align-items: center; gap: .15rem; list-style: none; }
.nav-link {
  color: var(--silver); text-decoration: none;
  font-size: .68rem; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; padding: .5rem 1rem; border-radius: 2px;
  transition: color .2s; white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
/* Dropdown */
.nav-dd { position: relative; }
.dd-toggle { cursor: pointer; display: flex; align-items: center; gap: .3rem; }
.dd-arrow { font-size: .52rem; transition: transform .2s; }
.nav-dd:hover .dd-arrow { transform: rotate(180deg); }
.dd-menu {
  position: absolute; top: calc(100% + .6rem); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--carbon); border: 1px solid var(--border);
  border-radius: var(--r); min-width: 195px;
  padding: .5rem 0; list-style: none;
  opacity: 0; visibility: hidden;
  transition: opacity .2s, visibility .2s, transform .2s;
}
.nav-dd:hover .dd-menu { opacity:1; visibility:visible; transform:translateX(-50%) translateY(0); }
.dd-menu a {
  display: block; padding: .65rem 1.4rem;
  color: var(--silver); text-decoration: none;
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  transition: color .2s, background .2s;
}
.dd-menu a:hover { color: var(--gold); background: var(--gold-glow); }
.btn-nav {
  background: var(--gold); color: var(--black);
  font-family: 'Jost',sans-serif; font-weight: 700; font-size: .68rem;
  letter-spacing: .22em; text-transform: uppercase;
  padding: .65rem 1.6rem; border-radius: var(--r);
  text-decoration: none; transition: background .2s, box-shadow .2s;
  white-space: nowrap; flex-shrink: 0;
}
.btn-nav:hover { background: var(--gold-light); box-shadow: 0 4px 20px rgba(201,168,76,.3); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 5px;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--gold); transition: all .3s; }
/* Mobile Nav */
.mobile-nav {
  position: fixed; top: 76px; left:0; right:0; z-index: 999;
  background: rgba(5,5,5,.98); border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  display: none; flex-direction: column; padding: 1rem 2rem 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--silver); text-decoration: none; font-size: .8rem;
  font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  padding: .7rem 0; border-bottom: 1px solid var(--border); transition: color .2s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav a.mn-sub { padding-left: 1rem; font-size: .7rem; color: var(--muted); }
.mobile-nav a.mn-sub:hover { color: var(--gold); }
.mobile-nav a.mn-cta {
  margin-top: 1rem; background: var(--gold); color: var(--black);
  text-align: center; padding: .85rem 1rem; border-radius: var(--r);
  font-weight: 700; border-bottom: none; letter-spacing: .2em;
}
.mn-section { font-size: .58rem; letter-spacing: .42em; color: var(--gold); padding: .75rem 0 .2rem; }
main { padding-top: 76px; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
#hero {
  min-height: calc(100vh - 76px);
  display: flex; align-items: center;
  position: relative; overflow: hidden; background: var(--black);
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 80% at 55% 50%, rgba(201,168,76,.055) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.035) 1px, transparent 1px);
  background-size: 65px 65px;
}
.hero-accent-line {
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
  opacity: .45;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 4rem;
  width: 100%; max-width: 1240px;
  margin: 0 auto; padding: 4rem 2rem;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .6rem; font-weight: 600; letter-spacing: .42em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.75rem;
}
.hero-eyebrow::before { content:''; width: 32px; height: 1px; background: var(--gold); }
.hero-title {
  font-family: 'Cinzel',serif; font-weight: 700;
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  line-height: .95; text-transform: uppercase;
  margin-bottom: 1.75rem; letter-spacing: .02em;
}
.hero-title .t-gold  { color: var(--gold); }
.hero-title .t-dim   { color: rgba(240,235,224,.18); }
.hero-title .t-line  {
  display: block; position: relative; padding-bottom: .35em;
}
.hero-title .t-line::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 80px; height: 2px; background: var(--gold);
}
.hero-sub {
  font-size: .93rem; color: var(--silver);
  max-width: 430px; margin-bottom: 2.5rem; line-height: 1.9;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-meta {
  display: flex; gap: 2.5rem; padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-meta-item { }
.hero-meta-num {
  font-family: 'Cinzel',serif; font-weight: 700;
  font-size: 1.6rem; color: var(--gold); display: block; line-height: 1;
}
.hero-meta-label {
  font-size: .58rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--muted);
  display: block; margin-top: .3rem;
}

/* Before/After Slider */
.ba-wrap {
  position: relative; width: 100%; max-width: 580px;
  margin: 0 auto; border-radius: 4px; overflow: hidden;
  box-shadow: 0 0 80px rgba(201,168,76,.14), 0 0 0 1px var(--border);
  user-select: none;
}
.ba-before {
  width: 100%; aspect-ratio: 3/1; min-height: 240px;
  background: #0d0d0d;
  position: relative; overflow: hidden;
}
.ba-after {
  position: absolute; top: 0; left: 0; width: 50%; height: 100%;
  overflow: hidden;
}
.ba-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.ba-lbl {
  position: absolute; bottom: 1.2rem; z-index: 5;
  font-size: .58rem; font-weight: 700; letter-spacing: .28em;
  text-transform: uppercase; padding: .3rem .8rem; border-radius: 2px;
}
.ba-lbl-b { right: 1.2rem; background: rgba(15,15,10,.88); color: var(--silver); }
.ba-lbl-a { left: 1.2rem; background: var(--gold); color: var(--black); }
.ba-handle {
  position: absolute; top: 0; width: 2px; height: 100%;
  background: var(--gold); transform: translateX(-50%); z-index: 10;
  cursor: ew-resize; left: 50%;
}
.ba-knob {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 46px; height: 46px; background: var(--gold);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; cursor: ew-resize; z-index: 11;
  box-shadow: 0 0 0 4px rgba(201,168,76,.25);
}
.ba-knob svg { width: 20px; height: 20px; fill: var(--black); }
.ba-range {
  position: absolute; inset: 0; opacity: 0; cursor: ew-resize;
  z-index: 20; width: 100%; -webkit-appearance: none; appearance: none;
}

/* ══════════════════════════════════════
   MARQUEE BAND
══════════════════════════════════════ */
.marquee-band {
  background: var(--gold); overflow: hidden; padding: .75rem 0;
}
.marquee-track {
  display: flex; gap: 0;
  animation: marquee-scroll 28s linear infinite;
  width: max-content;
}
.marquee-track span {
  display: flex; align-items: center; gap: 0;
  font-family: 'Cinzel',serif; font-size: .62rem; font-weight: 700;
  letter-spacing: .35em; text-transform: uppercase;
  color: var(--black); white-space: nowrap; padding: 0 2rem;
}
.marquee-dot {
  display: inline-block; width: 4px; height: 4px;
  background: var(--black); border-radius: 50; margin: 0 1.5rem;
  opacity: .5; flex-shrink: 0;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   STATS
══════════════════════════════════════ */
.stats-section { padding: 5rem 0; background: var(--dark); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; border: 1px solid var(--border); border-radius: var(--r);
  overflow: hidden;
}
.stat-item {
  padding: 2.5rem 2rem; text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-item::before {
  content: ''; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 2px; background: var(--gold);
}
.stat-number {
  display: flex; align-items: baseline; justify-content: center; gap: .1rem;
  font-family: 'Cinzel',serif; font-weight: 700;
  font-size: clamp(2.2rem,4vw,3.5rem); color: var(--gold); line-height: 1;
  margin-bottom: .6rem;
}
.stat-number .suf { font-size: .55em; color: var(--gold-light); }
.stat-label {
  font-size: .62rem; letter-spacing: .25em;
  text-transform: uppercase; color: var(--silver);
}

/* ══════════════════════════════════════
   SERVICE CARDS
══════════════════════════════════════ */
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem;
}
.svc-card {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--r); padding: 2.4rem 2rem;
  text-decoration: none; display: block; position: relative;
  overflow: hidden; transition: border-color .25s, transform .25s, box-shadow .25s;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.svc-card:hover { border-color: var(--gold-line); transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,.5); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card-num {
  font-family: 'Cinzel',serif; font-weight: 900;
  font-size: 4.5rem; line-height: 1; color: rgba(201,168,76,.06);
  position: absolute; top: 1rem; right: 1.5rem;
  transition: color .3s;
}
.svc-card:hover .svc-card-num { color: rgba(201,168,76,.1); }
.svc-cat {
  display: inline-block; font-size: .58rem; font-weight: 700;
  letter-spacing: .38em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.svc-title {
  font-family: 'Cinzel',serif; font-size: 1.05rem;
  color: var(--white); margin-bottom: .6rem; line-height: 1.2;
}
.svc-sub { font-size: .8rem; color: var(--silver); line-height: 1.7; margin-bottom: 1.4rem; }
.svc-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .65rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold);
  transition: gap .2s;
}
.svc-card:hover .svc-link { gap: .7rem; }

/* ══════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════ */
.why-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem;
}
.why-item {
  padding: 2rem 1.5rem;
  border: 1px solid var(--border); border-radius: var(--r);
  background: var(--panel2); transition: border-color .2s;
}
.why-item:hover { border-color: var(--gold-line); }
.why-icon-wrap {
  width: 52px; height: 52px; border-radius: var(--r);
  background: var(--gold-glow); border: 1px solid var(--border-s);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.why-icon { font-size: 1.4rem; }
.why-title {
  font-family: 'Cinzel',serif; font-size: .82rem;
  color: var(--gold); margin-bottom: .5rem; letter-spacing: .06em;
}
.why-desc { font-size: .78rem; color: var(--silver); line-height: 1.75; }

/* ══════════════════════════════════════
   PROCESS — horizontal timeline
══════════════════════════════════════ */
.process-wrap { position: relative; }
.process-line {
  position: absolute; top: 30px; left: calc(8.33% + 1.5rem);
  right: calc(8.33% + 1.5rem); height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line), var(--gold-line), transparent);
}
.process-grid {
  display: grid; grid-template-columns: repeat(6,1fr); gap: 0;
  position: relative; z-index: 2;
}
.process-step { text-align: center; padding: 0 .75rem; }
.process-num {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--panel); border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel',serif; font-weight: 700;
  font-size: 1rem; color: var(--gold);
  margin: 0 auto 1.5rem;
}
.process-title {
  font-family: 'Cinzel',serif; font-size: .75rem;
  letter-spacing: .08em; color: var(--white); margin-bottom: .4rem;
}
.process-desc { font-size: .72rem; color: var(--silver); line-height: 1.7; }

/* ══════════════════════════════════════
   REVIEWS
══════════════════════════════════════ */
.reviews-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1.5rem;
}
.rating-block { display: flex; align-items: center; gap: 1.5rem; }
.rating-num {
  font-family: 'Cinzel',serif; font-weight: 700;
  font-size: 5rem; color: var(--gold); line-height: 1;
}
.rating-stars { font-size: 1.1rem; color: var(--gold); letter-spacing: .1em; }
.rating-count { font-size: .7rem; color: var(--silver); margin-top: .3rem; letter-spacing: .1em; }
.reviews-track {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 1.5rem;
}
.review-card {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--r); padding: 2rem; position: relative;
}
.review-card::before {
  content: '\201C'; position: absolute; top: .5rem; right: 1.5rem;
  font-family: 'Cinzel',serif; font-size: 5rem; color: rgba(201,168,76,.1);
  line-height: 1; pointer-events: none;
}
.review-stars { color: var(--gold); font-size: .85rem; margin-bottom: 1rem; letter-spacing: .1em; }
.review-text {
  font-size: .86rem; color: var(--silver);
  line-height: 1.85; font-style: italic; margin-bottom: 1.5rem;
}
.review-author { display: flex; align-items: center; gap: .85rem; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold-dim); display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel',serif; font-weight: 700;
  font-size: .8rem; color: var(--gold-light); flex-shrink: 0;
}
.review-name { font-size: .8rem; font-weight: 600; color: var(--white); }
.review-date { font-size: .66rem; color: var(--muted); margin-top: .1rem; }
.review-via  { font-size: .63rem; color: var(--muted); margin-top: .35rem; }

/* ══════════════════════════════════════
   HOURS
══════════════════════════════════════ */
.hours-card {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--r); padding: 3.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hours-list { list-style: none; }
.hours-list li {
  display: flex; justify-content: space-between;
  padding: .8rem 0; border-bottom: 1px solid var(--border); font-size: .86rem;
}
.hours-list li:last-child { border-bottom: none; }
.hours-day  { color: var(--silver); }
.hours-time { color: var(--white); font-weight: 500; }
.hours-time.gold { color: var(--gold); }
.hours-closed { color: var(--muted); }

/* ══════════════════════════════════════
   CONTACT BANNER
══════════════════════════════════════ */
.contact-banner {
  text-align: center; padding: 6rem 0;
  background: var(--dark); position: relative; overflow: hidden;
}
.contact-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201,168,76,.07) 0%, transparent 65%);
}
.contact-banner > * { position: relative; z-index: 2; }
.contact-phone {
  font-family: 'Cinzel',serif;
  font-size: clamp(2.2rem,5vw,4rem);
  color: var(--gold); text-decoration: none;
  display: block; margin: 1.5rem 0; transition: color .2s; letter-spacing: .04em;
}
.contact-phone:hover { color: var(--gold-light); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border); padding: 5rem 0 2.5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3.5rem;
}
.footer-logo-img { height: 50px; width: auto; margin-bottom: 1rem; }
.footer-brand-name {
  font-family: 'Cinzel',serif; font-weight: 700;
  font-size: .95rem; color: var(--white); margin-bottom: .35rem;
}
.footer-brand-name span { color: var(--gold); }
.footer-tagline { font-size: .78rem; color: var(--silver); margin-bottom: 1.75rem; line-height: 1.7; }
.social-row { display: flex; gap: .6rem; flex-wrap: wrap; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--panel); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--silver); transition: border-color .2s, color .2s, background .2s;
}
.social-link svg { width: 15px; height: 15px; fill: currentColor; }
.social-link:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-glow); }
.footer-col h4 {
  font-family: 'Cinzel',serif; font-size: .68rem;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.4rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .55rem; }
.footer-col a {
  color: var(--silver); text-decoration: none;
  font-size: .78rem; transition: color .2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-col p { color: var(--silver); font-size: .78rem; margin-bottom: .4rem; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 2rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; font-size: .68rem; color: var(--muted);
}

/* ══════════════════════════════════════
   CATEGORY PAGES
══════════════════════════════════════ */
.cat-hero {
  padding: 6rem 0 5rem; background: var(--black);
  position: relative; overflow: hidden; text-align: center;
}
.cat-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(201,168,76,.08) 0%, transparent 60%);
}
.cat-hero-inner { position: relative; z-index: 2; }
.cat-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .6rem; font-weight: 600; letter-spacing: .42em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.cat-eyebrow::before,.cat-eyebrow::after { content:''; flex: 0 0 24px; height: 1px; background: var(--gold); }
.cat-title {
  font-family: 'Cinzel',serif;
  font-size: clamp(2.8rem,7vw,5rem);
  color: var(--white); margin-bottom: .6rem; line-height: 1.0;
}
.cat-title span { color: var(--gold); }
.cat-sub { font-size: .9rem; color: var(--silver); letter-spacing: .08em; }

/* Brands Grid */
.brands-section { padding: 4.5rem 0; background: var(--dark); }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px,1fr)); gap: .85rem;
}
.brand-chip {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--r); padding: .85rem 1rem;
  text-align: center; font-weight: 500; font-size: .78rem;
  letter-spacing: .06em; color: var(--silver);
  transition: border-color .2s, color .2s, background .2s;
}
.brand-chip:hover { border-color: var(--gold-line); color: var(--gold); background: var(--gold-glow); }

/* Pricing */
.pricing-section { padding: 5.5rem 0; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 1.5rem;
}
.price-card {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--r); padding: 2.2rem; position: relative;
  transition: border-color .2s, transform .2s;
}
.price-card.featured { border-color: var(--gold); }
.price-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute; top: -1px; right: 1.5rem;
  font-size: .57rem; font-weight: 700; letter-spacing: .2em;
  background: var(--gold); color: var(--black);
  padding: .25rem .8rem; border-radius: 0 0 3px 3px;
}
.price-card:hover { border-color: var(--gold-line); transform: translateY(-4px); }
.price-card-title {
  font-family: 'Cinzel',serif; font-size: .93rem;
  color: var(--white); margin-bottom: .5rem;
}
.price-card-desc { font-size: .78rem; color: var(--silver); margin-bottom: 1.5rem; line-height: 1.7; }
.price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .65rem 0; border-bottom: 1px solid var(--border); font-size: .82rem;
}
.price-row:last-child { border-bottom: none; }
.price-vehicle { color: var(--silver); }
.price-amount  { color: var(--gold); font-weight: 600; font-family: 'Cinzel',serif; }

/* CTA block */
.cta-block {
  text-align: center; padding: 6rem 0; background: var(--dark); position: relative; overflow: hidden;
}
.cta-block::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201,168,76,.07) 0%, transparent 65%);
}
.cta-block > * { position: relative; z-index: 2; }
.cta-block p { color: var(--silver); font-size: .9rem; margin-bottom: 2rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Book Now Tabs */
.booknow-tabs {
  display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 3rem; justify-content: center;
}
.tab-btn {
  background: var(--panel); border: 1px solid var(--border); color: var(--silver);
  padding: .75rem 1.6rem; border-radius: var(--r); cursor: pointer;
  font-family: 'Jost',sans-serif; font-size: .72rem;
  font-weight: 600; letter-spacing: .15em; text-transform: uppercase; transition: all .2s;
}
.tab-btn:hover,.tab-btn.active { background: var(--gold); color: var(--black); border-color: var(--gold); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.booking-pricing {
  background: var(--dark); border: 1px solid var(--border);
  border-radius: var(--r); padding: 2rem; margin-bottom: 2rem;
}
.booking-pricing h4 {
  font-family: 'Cinzel',serif; font-size: .78rem;
  color: var(--gold); letter-spacing: .2em; text-transform: uppercase;
  margin-bottom: 1rem; padding-bottom: .75rem; border-bottom: 1px solid var(--border);
}
.bp-row {
  display: flex; justify-content: space-between;
  padding: .5rem 0; border-bottom: 1px solid var(--border); font-size: .8rem;
}
.bp-row:last-child { border-bottom: none; }
.bp-svc { color: var(--silver); }
.bp-price { color: var(--gold); font-weight: 600; }

/* Booking form */
.booking-form {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--r); padding: 3rem; max-width: 640px; margin: 3rem auto 0;
}
.booking-form h3 {
  font-family: 'Cinzel',serif; font-size: .95rem; color: var(--white);
  margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group.full { grid-column: 1/-1; }
.form-label {
  font-size: .65rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--silver);
}
.form-input,.form-select,.form-textarea {
  background: var(--dark); border: 1px solid var(--border);
  color: var(--white); padding: .8rem 1rem;
  border-radius: var(--r); font-family: 'Jost',sans-serif;
  font-size: .88rem; transition: border-color .2s; outline: none; width: 100%;
}
.form-input:focus,.form-select:focus,.form-textarea:focus { border-color: var(--gold); }
.form-select option { background: var(--dark); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; margin-top: .5rem; justify-content: center; }

/* Form success / error */
.form-success { text-align: center; padding: 3.5rem 2rem; }
.form-success-icon {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--gold); color: var(--black);
  font-size: 1.8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.form-success h3 { font-family:'Cinzel',serif; font-size:1.3rem; color:var(--white); margin-bottom:1rem; }
.form-success p  { color:var(--silver); font-size:.9rem; line-height:1.8; margin-bottom:.5rem; }
.form-success a  { color:var(--gold); text-decoration:none; }
.form-error {
  display: none; background: rgba(180,40,40,.12); border: 1px solid rgba(180,40,40,.35);
  color: #f08080; border-radius: var(--r); padding: .75rem 1rem;
  font-size: .8rem; margin-bottom: 1rem;
}

/* About page */
.about-hero {
  padding: 7rem 0 5.5rem; background: var(--black);
  position: relative; overflow: hidden; text-align: center;
}
.about-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 20%, rgba(201,168,76,.07) 0%, transparent 60%);
}
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.story-text p { font-size: .93rem; color: var(--silver); line-height: 2; margin-bottom: 1.5rem; }
.story-visual {
  aspect-ratio: 4/3; background: var(--carbon);
  border: 1px solid var(--border); border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.story-visual-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,.12) 0%, transparent 70%);
}
.story-visual-logo { position: relative; z-index: 2; text-align: center; }
.story-visual-logo img { height: 130px; width: auto; opacity: .75; }
.values-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem;
}
.value-item {
  text-align: center; padding: 2rem 1rem;
  border: 1px solid var(--border); border-radius: var(--r);
  background: var(--panel); transition: border-color .2s;
}
.value-item:hover { border-color: var(--gold-line); }
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-title {
  font-family: 'Cinzel',serif; font-size: .8rem;
  color: var(--gold); margin-bottom: .45rem; letter-spacing: .08em;
}
.value-desc { font-size: .76rem; color: var(--silver); line-height: 1.75; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.g-item {
  aspect-ratio: 4/3; background: var(--carbon);
  border: 1px solid var(--border); border-radius: var(--r);
  overflow: hidden; position: relative; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s, box-shadow .2s;
}
.g-item.large { grid-column: span 2; aspect-ratio: 16/9; }
.g-item:hover { transform: scale(1.01); box-shadow: 0 8px 32px rgba(201,168,76,.15); }
.g-inner { text-align: center; position: relative; z-index: 2; }
.g-icon  { font-size: 2rem; opacity: .25; margin-bottom: .4rem; display: block; }
.g-label { font-size: .62rem; color: var(--muted); letter-spacing: .18em; text-transform: uppercase; }
.g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,.05) 0%, transparent 60%);
}
.gallery-filter { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn {
  background: var(--panel); border: 1px solid var(--border); color: var(--silver);
  padding: .55rem 1.2rem; border-radius: var(--r); cursor: pointer;
  font-family: 'Jost',sans-serif; font-size: .7rem;
  font-weight: 600; letter-spacing: .15em; text-transform: uppercase; transition: all .2s;
}
.filter-btn:hover,.filter-btn.active { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* Careers */
.job-card {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--r); padding: 2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; margin-bottom: 1.5rem; transition: border-color .2s;
}
.job-card:hover { border-color: var(--gold-line); }
.job-title { font-family:'Cinzel',serif; font-size:.92rem; color:var(--white); margin-bottom:.3rem; }
.job-meta { font-size:.76rem; color:var(--silver); }
.job-tag {
  display: inline-block; background: var(--gold-glow);
  border: 1px solid var(--border); color: var(--gold);
  font-size: .6rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; padding: .25rem .8rem; border-radius: 2px;
}
.perks-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.perk-item {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--r); padding: 1.75rem; text-align: center; transition: border-color .2s;
}
.perk-item:hover { border-color: var(--gold-line); }
.perk-icon { font-size: 1.8rem; margin-bottom: .75rem; }
.perk-title { font-family:'Cinzel',serif; font-size:.8rem; color:var(--gold); margin-bottom:.35rem; }
.perk-desc { font-size:.76rem; color:var(--silver); line-height:1.7; }
.upload-note {
  background: var(--panel); border: 1px dashed var(--border-s);
  border-radius: var(--r); padding: 3rem; text-align: center; margin-bottom: 2rem;
}
.upload-note p { color:var(--silver); font-size:.86rem; line-height:1.8; }
.upload-note strong { color:var(--gold); }

/* section-tag — backwards-compat alias for .eyebrow */
.section-tag {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .62rem; font-weight: 600;
  letter-spacing: .42em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .9rem;
}
.section-tag::before, .section-tag::after {
  content: ''; flex: 0 0 28px; height: 1px; background: var(--gold);
}

/* cat-icon — emoji icon in category hero */
.cat-icon {
  display: block; font-size: 2.8rem; margin-bottom: 1rem;
}

/* ══════════════════════════════════════
   VIDEO SHOWCASE
══════════════════════════════════════ */
.videos-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem; margin-bottom: 3rem;
}
.yt-subscribe {
  display: inline-flex; align-items: center; gap: .6rem;
  background: #FF0000; color: #fff;
  font-family: 'Jost',sans-serif; font-weight: 700; font-size: .7rem;
  letter-spacing: .15em; text-transform: uppercase;
  padding: .75rem 1.6rem; border-radius: var(--r);
  text-decoration: none; transition: background .2s, transform .15s;
  flex-shrink: 0;
}
.yt-subscribe:hover { background: #CC0000; transform: translateY(-2px); }
.yt-subscribe svg { width: 20px; height: 20px; fill: currentColor; }
.videos-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
.video-card {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
  text-decoration: none; display: block;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.video-card:hover { border-color: var(--gold-line); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.5); }
.video-thumb {
  aspect-ratio: 16/9; background: var(--carbon);
  position: relative; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.video-thumb video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.video-thumb iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: none;
}
.video-thumb-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a0800 0%, #1a1400 50%, #0a0800 100%);
}
.video-play-btn {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
  box-shadow: 0 0 0 8px rgba(201,168,76,.2);
  transition: transform .2s, box-shadow .2s;
}
.video-play-btn svg { width: 24px; height: 24px; fill: var(--black); margin-left: 4px; }
.video-card:hover .video-play-btn { transform: scale(1.1); box-shadow: 0 0 0 14px rgba(201,168,76,.12); }
.video-info { padding: 1.2rem 1.5rem 1.5rem; }
.video-title { font-family: 'Cinzel',serif; font-size: .84rem; color: var(--white); margin-bottom: .35rem; line-height: 1.35; }
.video-sub { font-size: .72rem; color: var(--muted); }
.video-yt-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .62rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: #FF4444; margin-top: .5rem;
}

@media (max-width: 1024px) { .videos-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px)  { .videos-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════
   ANIMATE ON SCROLL
══════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-links,.btn-nav { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-meta { justify-content: center; }
  .ba-wrap { max-width: 500px; margin: 2.5rem auto 0; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(3,1fr); }
  .process-line { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid .stat-item:nth-child(2) { border-right: none; }
  .stats-grid .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
  .stats-grid .stat-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .g-item.large { grid-column: span 1; aspect-ratio: 4/3; }
  .hours-card { grid-template-columns: 1fr; gap: 2rem; }
  .perks-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .nav { padding: 0 1.2rem; }
  section { padding: 5rem 0; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: 1fr; }
  .stats-grid .stat-item { border-right: none !important; border-top: 1px solid var(--border); }
  .stats-grid .stat-item:first-child { border-top: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .reviews-track { grid-template-columns: 1fr; }
  .job-card { flex-direction: column; align-items: flex-start; }
  .perks-grid { grid-template-columns: 1fr; }
  .booknow-tabs { gap: .5rem; }
  .tab-btn { padding: .65rem 1rem; font-size: .68rem; }
  .hero-meta { gap: 1.5rem; flex-wrap: wrap; }
  .rating-num { font-size: 3.5rem; }
  .marquee-track span { font-size: .55rem; padding: 0 1.2rem; }
}
