/* ---------- Reset & base ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: #000000; }
body { overflow-x: hidden; max-width: 100%; }
body.body-scroll-locked { overflow: hidden; height: 100vh; }

/* Custom scrollbar (site-wide) -- Windows Chrome/Edge otherwise falls back
   to the native OS scrollbar, which can render with visible up/down
   step-arrow buttons at the ends of the track. This removes those and
   replaces the whole scrollbar with a slim, branded one instead. */
html { scrollbar-width: thin; scrollbar-color: rgba(217,182,78,.5) #000; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: rgba(217,182,78,.45); border-radius: 8px; border: 2px solid #000; }
::-webkit-scrollbar-thumb:hover { background: rgba(217,182,78,.65); }
::-webkit-scrollbar-button { display: none; width: 0; height: 0; }
::-webkit-scrollbar-corner { background: #000; }
html { scroll-behavior: smooth; }

:root {
  --background: #000000;
  --surface: #000000;
  --surface-2: #000000;
  --foreground: #f4f2ec;
  --muted: #c7c4bf;
  --gold: #d9b64e;
  --gold-hover: #caa63f;
  --border: rgba(255,255,255,0.09);
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  font-weight: 300;
}

h1, h2, h3, h4 {
  font-family: "Oswald", "Segoe UI", Arial, sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 0.5em;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--gold); color: #000; }
:focus-visible { outline: 1px solid var(--gold); outline-offset: 3px; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding-top: 4rem; padding-bottom: 4rem; }
.narrow { max-width: 760px; }
.muted { color: var(--muted); }
.small { font-size: 0.85rem; }
.gold { color: var(--gold); }
.eyebrow { font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 0.25em; font-size: 0.8rem; font-weight: 500; color: var(--gold); margin-bottom: 0.5rem; }

/* Scroll-reveal: quiet fade + rise, respects reduced-motion (see main.js) */
.fh-reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
.fh-reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fh-reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 2px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-hover); }
.btn-outline { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover { background: var(--gold); color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }

/* ---------- Header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #000;
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: stretch; padding: 0; position: relative; }

.logo-lockup { display: flex; align-items: center; flex-shrink: 0; padding: 0.6rem 2rem 0.6rem 1.25rem; }
.logo-lockup img { height: 58px; width: auto; }
.logo { font-family: "Oswald", serif; font-weight: 600; font-size: 1.25rem; text-transform: uppercase; letter-spacing: 0.03em; }

.header-right { flex: 1; min-width: 0; }

.header-topbar { display: flex; align-items: center; justify-content: space-between; padding: 0.55rem 1.5rem; border-bottom: 1px solid var(--border); font-size: 0.8rem; color: var(--muted); gap: 1rem; }
.site-topbar-contact { display: flex; align-items: center; gap: 1.25rem; }
.site-topbar-contact a, .site-topbar-contact span { display: inline-flex; align-items: center; gap: 0.5rem; }
.site-topbar-contact a { color: var(--muted); }
.site-topbar-contact a:hover { color: var(--gold); }
.site-topbar-contact > *:not(:last-child) { padding-right: 1.25rem; border-right: 1px solid var(--border); }
.site-topbar-social { display: flex; align-items: center; gap: 1rem; }
.site-topbar-social a { color: var(--muted); display: flex; transition: color .2s ease; }
.site-topbar-social a:hover { color: var(--gold); }
.site-topbar-social svg { width: 16px; height: 16px; }

.header-navrow { display: flex; align-items: center; padding: 0.85rem 1.5rem; gap: 1.5rem; }
.main-nav {
  display: none; align-items: center; gap: 2.1rem; font-size: 0.95rem; font-weight: 600;
  font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 0.05em;
}
.main-nav a, .main-nav button { display: inline-flex; align-items: center; gap: 0.3rem; position: relative; padding: 0.3rem 0; }
.main-nav a::after, .main-nav button::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--gold);
  transition: width .25s ease;
}
.main-nav a:hover::after, .main-nav button:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a:hover, .main-nav button:hover, .main-nav a.active { color: var(--gold); }
.main-nav button { background: none; border: none; color: inherit; font: inherit; cursor: pointer; }
.nav-caret { font-size: 0.6rem; }
.dropdown { position: relative; }
.dropdown-menu {
  display: flex; position: absolute; top: 100%; left: 0; width: 220px; margin-top: 0;
  flex-direction: column; gap: 0.1rem;
  background: #000; border: 1px solid var(--border); border-top: 2px solid var(--gold); padding: 0.6rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  text-transform: none;
  opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-8px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
}
.dropdown:hover .dropdown-menu, .dropdown.is-open .dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
}
.dropdown-menu a { padding: 0.6rem 0.85rem; font-size: 0.85rem; font-weight: 500; letter-spacing: 0; color: var(--muted); border-radius: 2px; }
.dropdown-menu a::after { content: none; }
.dropdown-menu a:hover { background: var(--surface-2); color: var(--gold); }
.mobile-menu-toggle {
  background: none; border: 1px solid var(--border); border-radius: 4px; color: var(--foreground); cursor: pointer; padding: 0.5rem;
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 44px; height: 44px;
  transition: border-color .2s ease;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle.is-open { border-color: rgba(217,182,78,.5); }
.hamburger-line { display: block; width: 22px; height: 2px; background: var(--foreground); transition: transform .3s ease, opacity .3s ease, background .3s ease; }
.mobile-menu-toggle.is-open .hamburger-line { background: var(--gold); }
.mobile-menu-toggle.is-open .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.is-open .hamburger-line:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.is-open .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.dropdown--link { display: flex; align-items: center; gap: 0.15rem; }
.dropdown--link > a { padding-right: 0 !important; }
.dropdown-caret-btn { background: none; border: none; color: inherit; cursor: pointer; padding: 0.3rem 0.2rem; display: flex; align-items: center; }

@media (max-width: 1023px) {
  .header-inner { align-items: center; justify-content: space-between; }
  .logo-lockup { padding: 0.65rem 1.25rem; }
  .header-topbar { display: none; }
  .header-navrow { padding: 0; }

  .main-nav {
    display: flex; visibility: hidden; opacity: 0; position: fixed; top: 0; bottom: 0; left: auto; right: -100%; width: 100%;
    flex-direction: column; align-items: stretch; gap: 0; overflow-y: auto; overflow-x: hidden;
    background: #000; padding: 1.75rem; z-index: 100; box-sizing: border-box;
    transition: opacity .3s ease, right .35s cubic-bezier(.22,1,.36,1), visibility .35s;
  }
  .main-nav.nav-open { visibility: visible; opacity: 1; right: 0; }

  .mobile-nav-close {
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    width: 42px; height: 42px; border: 1px solid var(--border); border-radius: 50%; background: none; color: var(--foreground);
    cursor: pointer;
  }
  .mobile-nav-close svg { width: 18px; height: 18px; }
  .mobile-nav-close:hover { border-color: rgba(217,182,78,.5); color: var(--gold); }
  .mobile-nav-close-wrap {
    display: flex; justify-content: flex-end; padding-bottom: 1.75rem; margin-bottom: 1.25rem; border-bottom: 1px solid var(--border);
  }
  .main-nav a, .main-nav button:not(.mobile-nav-close) { width: 100%; padding: 1.15rem 0.25rem; font-size: 1.05rem; border-bottom: 1px solid var(--border); justify-content: space-between; transition: color .2s ease; }
  .main-nav a:hover, .main-nav button:hover { color: var(--gold); background: none; }
  .main-nav a::after, .main-nav button::after { content: none; }
  .dropdown { width: 100%; }
  .dropdown--link {
    display: grid; grid-template-columns: 1fr auto; align-items: stretch; width: 100%;
  }
  .dropdown--link > a { width: auto; min-width: 0; justify-content: flex-start; border-bottom: none; }
  .dropdown-caret-btn { padding: 1.15rem 0.5rem 1.15rem 0.25rem; border-bottom: none; }
  .dropdown--link::after { content: ""; grid-column: 1 / -1; border-bottom: 1px solid var(--border); }
  .dropdown-menu {
    position: static; width: 100%; margin-top: 0; border: none; border-top: none; box-shadow: none; padding: 0 0 0 1rem;
    display: none; opacity: 1; visibility: visible; transform: none; pointer-events: auto;
  }
  .dropdown-menu a { border-bottom: 1px dashed var(--border); }
  .dropdown.is-open .dropdown-menu { display: flex; }
}

@media (min-width: 1024px) {
  .header-right { display: flex; flex-direction: column; }
  .logo-lockup { border-right: 1px solid var(--border); }
  .main-nav { display: flex; }
  .mobile-menu-toggle { display: none; }
  .mobile-nav-close-wrap { display: none; }
}

/* =========================================================================
   HOMEPAGE REDESIGN v4 -- minimal luxury, black & gold, "fh-" / "ap-lux-" prefixed
   Quiet by design: hairline borders, generous whitespace, a soft lift and a
   thin gold edge on hover -- nothing animates unless the user does something.
   ========================================================================= */

.fh-section--dark { background: #000; color: #fff; }

/* ---------- Hero ---------- */
.fh-hero { position: relative; background: #000; min-height: 86vh; display: flex; align-items: center; overflow: hidden; }
.fh-hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; transform: scale(1.2); transform-origin: center; z-index: 0; }
.fh-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.3) 0%, rgba(0,0,0,.72) 80%, #000 100%); z-index: 1; }
.fh-hero-box { position: relative; z-index: 2; width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.fh-hero-text { max-width: 760px; }
.fh-hero-desktop-only { display: none; }
.fh-hero-mobile-only { display: block; }
.fh-hero-eyebrow { font-family: "Oswald", Arial, Helvetica, sans-serif; color: var(--gold); font-size: 13px; font-weight: 600; letter-spacing: 3px; display: block; margin: 0 0 18px; }
.fh-hero-title { font-family: "Oswald", Arial, Helvetica, sans-serif; font-size: 62px; font-weight: 700; line-height: 1.12; margin: 0 0 22px; color: #fff; text-transform: uppercase; }
.fh-hero-desc { font-family: "Roboto", Arial, Helvetica, sans-serif; font-size: 16px; color: rgba(255,255,255,.75); line-height: 1.75; margin: 0 0 32px; font-weight: 300; max-width: 580px; }
.fh-hero-mobile-title { font-family: "Oswald", Arial, Helvetica, sans-serif; font-size: 34px; font-weight: 700; line-height: 1.15; color: #fff; margin: 0; text-transform: capitalize; }
.fh-btn-hero {
  display: inline-block; background: var(--gold); color: #fff;
  font-family: "Oswald", Arial, Helvetica, sans-serif; font-weight: 600; text-decoration: none;
  padding: 15px 34px; border: none; cursor: pointer; font-size: 13px; letter-spacing: .06em; text-transform: uppercase;
  transition: background .25s ease;
}
.fh-btn-hero:hover, .fh-btn-hero:focus, .fh-btn-hero:active, .fh-btn-hero:visited { background: var(--gold-hover); color: #fff; }
@media (max-width: 768px) { .fh-hero { min-height: 70vh; align-items: flex-end; } .fh-hero-box { padding-bottom: 56px; padding-left: 24px; padding-right: 24px; } .fh-hero-title { font-size: 38px; } }
@media (min-width: 769px) { .fh-hero-desktop-only { display: block; } .fh-hero-mobile-only { display: none; } }

/* ---------- Layout helpers ---------- */
.fh-container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.fh-section { padding: 84px 0; }
.fh-section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 44px; flex-wrap: wrap; gap: 16px; }
.fh-section-head--center > div { width: 100%; }
.fh-eyebrow { display: block; color: var(--gold); font-family: "Oswald", Arial, Helvetica, sans-serif; font-size: 13px; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; margin: 0 0 12px; }
.fh-section-head h2 { margin: 0; font-size: 30px; font-weight: 700; color: #fff; }
.fh-welcome-link { display: inline-flex; align-items: center; gap: 10px; font-family: "Oswald", Arial, Helvetica, sans-serif; color: #fff; font-weight: 600; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; text-decoration: none; padding-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,.3); transition: border-color .25s ease, color .25s ease; }
.fh-welcome-link:hover { color: var(--gold); border-color: var(--gold); }
.fh-welcome-link svg { width: 12px; height: 12px; }
@media (max-width: 768px) { .fh-section { padding: 56px 0; } }

/* ---------- Search filter: quiet console overlapping the hero ---------- */
.fh-filter-section {
  position: relative; z-index: 3; margin: -100px auto 0; max-width: 1400px;
  background: #000;
  border-top: 1px solid var(--border);
  padding: 44px 0 56px;
}
@media (max-width: 768px) { .fh-filter-section { margin-top: -40px; padding: 32px 0 40px; } }
.fh-filter-header { max-width: 1400px; margin: 0 auto 26px; padding: 0 24px; }
.fh-filter-header h2 { color: #fff; font-size: 26px; font-weight: 700; margin: 0 0 14px; }
.fh-line { width: 100%; height: 1px; background: var(--border); }
.fh-home-filter { display: flex; gap: 20px; max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.fh-home-filter select {
  background: var(--surface); color: var(--muted); padding: 18px 20px;
  border: 1px solid var(--border); flex: 1; font-size: 15px; outline: none; height: 58px; appearance: none;
  font-family: "Roboto", sans-serif; transition: border-color .2s ease, color .2s ease;
}
.fh-home-filter select:focus, .fh-home-filter select:hover { color: #fff; border-color: rgba(217,182,78,.45); }
.fh-home-filter button {
  background: var(--gold); color: #fff; padding: 0 34px; border: none; cursor: pointer;
  font-weight: 600; font-family: "Oswald", sans-serif; letter-spacing: .05em; font-size: 15px; height: 58px;
  white-space: nowrap; flex: 0 0 180px; transition: background .25s ease;
}
.fh-home-filter button:hover { background: var(--gold-hover); }
@media (max-width: 1024px) { .fh-home-filter { flex-direction: column; gap: 14px; } .fh-home-filter select, .fh-home-filter button { height: 52px; flex: 0 0 auto; } }

/* ---------- Brand slider ("Our Categories") ---------- */
.dourado-slider-wrap { position: relative; overflow: hidden; padding: 10px 24px 0; max-width: 1400px; margin: 0 auto; }
.dourado-slider { display: flex; gap: 22px; transition: transform .5s ease; }
.dourado-card {
  flex: 0 0 auto; min-width: 280px; height: 210px; position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
  text-decoration: none; transition: transform .3s ease, border-color .3s ease;
}
.dourado-card:hover { transform: translateY(-6px); border-color: rgba(217,182,78,.5); }
.dourado-card img { max-width: 140px; max-height: 84px; object-fit: contain; margin-bottom: 15px; opacity: .92; transition: opacity .3s ease, transform .3s ease; }
.dourado-card:hover img { opacity: 1; transform: scale(1.04); }
.dourado-card .title { color: var(--gold); font-family: "Oswald", sans-serif; font-weight: 600; letter-spacing: .02em; }
.dourado-card .title span { display: block; font-size: 11px; color: var(--muted); margin-top: 5px; letter-spacing: .06em; }
.dourado-arrow { position: absolute; top: 45%; transform: translateY(-50%); width: 48px; height: 48px; border: 1px solid var(--border); background: #000; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 20; transition: border-color .25s ease; }
.dourado-arrow::before { content: ''; width: 8px; height: 8px; border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); transform: rotate(45deg); }
.dourado-arrow.left { left: 24px; } .dourado-arrow.left::before { transform: rotate(-135deg); }
.dourado-arrow.right { right: 24px; }
.dourado-arrow:hover { border-color: var(--gold); }
@media (min-width: 1400px) { .dourado-card { min-width: calc((100% - 66px) / 4); } }
@media (max-width: 1024px) { .dourado-card { min-width: 45%; } }
@media (max-width: 600px) { .dourado-card { min-width: 85%; } .dourado-arrow { width: 40px; height: 40px; } }

/* ---------- Company briefing ---------- */
.fh-briefing { position: relative; background-position: center; background-size: cover; background-repeat: no-repeat; padding: 160px 0; min-height: 540px; display: flex; align-items: center; overflow: hidden; }
.fh-briefing::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.62); z-index: 0; }
.fh-briefing-inner { position: relative; z-index: 1; width: 100%; }
.fh-briefing-slides { position: relative; height: 220px; }
.fh-briefing-slide { display: none; position: absolute; top: 0; left: 0; max-width: 700px; }
.fh-briefing-slide.is-active { display: block; }
.fh-briefing-slide h3 { font-family: "Oswald", Arial, Helvetica, sans-serif; color: #fff; font-size: 27px; margin: 0 0 16px; text-transform: uppercase; }
.fh-briefing-slide p { color: rgba(255,255,255,.78); line-height: 1.75; margin: 0; font-size: 15px; font-weight: 300; }
.fh-briefing-contact { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; margin-top: 44px; }
.fh-briefing-contact-btn {
  display: inline-block; background: transparent; color: var(--gold); border: 1px solid var(--gold);
  font-family: "Oswald", Arial, Helvetica, sans-serif; font-weight: 600; text-transform: uppercase; text-decoration: none;
  padding: 13px 30px; font-size: 14px; letter-spacing: .04em; transition: background .25s ease, color .25s ease;
}
.fh-briefing-contact-btn:hover { background: var(--gold); color: #fff; }
.fh-briefing-call-label { font-family: "Oswald", Arial, Helvetica, sans-serif; color: rgba(255,255,255,.6); font-size: 13px; margin: 0 0 2px; }
.fh-briefing-call-label a { color: rgba(255,255,255,.6); text-decoration: none; }
.fh-briefing-call-number { font-family: "Oswald", Arial, Helvetica, sans-serif; color: var(--gold); font-size: 21px; font-weight: 600; margin: 0; }
.fh-briefing-call-number a { color: var(--gold); text-decoration: none; }
.fh-briefing-call-number a:hover { color: var(--gold-hover); }
@media (max-width: 768px) { .fh-briefing { padding: 90px 0; min-height: 440px; } .fh-briefing-slide h3 { font-size: 21px; } }

/* ---------- Featured cars: quiet luxury card ---------- */
.fh-ap-filter { display: flex; gap: 28px; flex-wrap: wrap; }
.fh-ap-filter a { font-family: "Oswald", Arial, Helvetica, sans-serif; color: var(--muted); text-decoration: none; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; padding-bottom: 6px; border-bottom: 1px solid transparent; }
.fh-ap-filter a:hover { color: #fff; }
.fh-ap-filter a.active { color: var(--gold); border-bottom-color: var(--gold); }
.fh-ap-group { display: none; }
.fh-ap-group.is-active { display: block; }
.fh-ap-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 26px; }
.ap-item { display: block; }

/* Mobile: swipeable one-card-at-a-time infinite-loop carousel with tappable arrows */
.fh-ap-swipe-arrow { display: none; }
@media (max-width: 768px) {
  .fh-ap-carousel-wrap { position: relative; }
  .fh-ap-grid { display: flex; grid-template-columns: none; gap: 0; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .fh-ap-grid::-webkit-scrollbar { display: none; }
  .fh-ap-grid > .ap-item { flex: 0 0 100%; width: 100%; scroll-snap-align: center; }
  button.fh-ap-swipe-arrow { display: flex; position: absolute; top: 40%; width: 40px !important; height: 40px !important; min-width: 40px !important; border-radius: 50% !important; background: rgba(0,0,0,.55) !important; border: 1px solid var(--gold) !important; color: var(--gold) !important; align-items: center; justify-content: center; font-size: 14px !important; line-height: 1 !important; z-index: 3; pointer-events: auto; cursor: pointer; padding: 0 !important; outline: none; box-shadow: none !important; text-transform: none !important; -webkit-tap-highlight-color: transparent; }
  .fh-ap-swipe-arrow--left { left: 6px; }
  .fh-ap-swipe-arrow--right { right: 6px; }
  .fh-ap-grid.fh-swipe-hint { animation: fhSwipeHint 1.1s ease .6s 1; }
}
@keyframes fhSwipeHint { 0% { transform: translateX(0); } 30% { transform: translateX(-18px); } 60% { transform: translateX(4px); } 100% { transform: translateX(0); } }

/* ---------- Welcome to Luxury Cars (static left + rotating right) ---------- */
.fh-welcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.fh-welcome-left .fh-eyebrow { margin-bottom: 16px; }
.fh-welcome-title { font-family: "Oswald", Arial, Helvetica, sans-serif; font-size: 36px; font-weight: 700; color: var(--foreground); text-transform: uppercase; margin: 0 0 26px; line-height: 1.15; }
.fh-welcome-slides { position: relative; min-height: 155px; display: flex; align-items: center; overflow: visible; }
.fh-welcome-slide { display: none; width: 100%; }
.fh-welcome-slide.is-active { display: block; }
.fh-welcome-slide p { color: var(--muted); line-height: 1.8; font-size: 16px; margin: 0; font-weight: 300; }
.fh-welcome-slide a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(217,182,78,.35); }
.fh-welcome-slide a:hover { color: var(--gold-hover); }
@media (max-width: 900px) { .fh-welcome-grid { grid-template-columns: 1fr; gap: 24px; } }

/* ---------- Virtual showroom ---------- */
.fh-showroom-wrap { height: 500px; position: relative; background: #000; display: flex; align-items: center; justify-content: center; cursor: pointer; overflow: hidden; }
.fh-showroom-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.8); transition: transform .5s ease; }
.fh-showroom-wrap:hover img { transform: scale(1.03); }
.fh-showroom-label {
  position: relative; z-index: 2; color: var(--gold); font-size: 15px; padding: 15px 30px; border: 1px solid var(--gold);
  background: rgba(0,0,0,.55); letter-spacing: 2px; font-weight: 600; text-transform: uppercase;
  font-family: "Oswald", sans-serif;
}
.fh-showroom-wrap iframe { position: relative; z-index: 2; border: 0; }
@media (max-width: 768px) { .fh-showroom-wrap { height: 320px; } }

/* ---------- Our Commitment + Dourado In Motion (same row) ---------- */
.fh-commitment-section { padding-bottom: 20px; }
.fh-commitment-grid { display: flex; align-items: stretch; gap: 40px; }
.fh-commitment-left, .fh-commitment-right { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; }
button.fh-edge-arrow { flex: 0 0 auto; width: 36px !important; height: 36px !important; min-width: 36px !important; padding: 0 !important; border: 1px solid var(--border) !important; background: transparent !important; color: var(--gold) !important; cursor: pointer; font-size: 13px !important; line-height: 1 !important; display: flex !important; align-items: center; justify-content: center; box-shadow: none !important; text-transform: none !important; transition: border-color .25s ease; }
button.fh-edge-arrow:hover { border-color: var(--gold) !important; }
.fh-dots { display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
.fh-dots span { width: 6px; height: 6px; background: rgba(255,255,255,.2); display: inline-block; }
.fh-dots span.is-active { background: var(--gold); }

.fh-steps-card {
  border: 1px solid var(--border); background: var(--surface); flex: 1;
  display: flex; align-items: center; justify-content: center; padding: 2.5rem;
}
.fh-steps-row { display: flex; align-items: center; justify-content: center; gap: 18px; width: 100%; }
.fh-steps-slides { position: relative; min-height: 110px; max-width: 400px; text-align: center; }
.fh-step { display: none; }
.fh-step.is-active { display: block; }
.fh-step h3 { color: var(--gold); font-size: 25px; font-family: "Oswald", Arial, Helvetica, sans-serif; font-weight: 700; margin-bottom: 14px; }
.fh-step p { color: var(--muted); font-size: 16px; line-height: 1.7; margin: 0 auto; font-weight: 300; }
@media (max-width: 900px) { .fh-commitment-grid { flex-direction: column; gap: 50px; align-items: stretch; } }

/* ---------- Dourado In Motion: fixed 3-slot (prev / center / next) ---------- */
.fh-motion-card {
  border: 1px solid var(--border); background: var(--surface); flex: 1;
  display: flex; align-items: center; justify-content: center; padding: 2rem 1rem;
}
.fh-motion-row { display: flex; align-items: center; gap: 16px; justify-content: center; width: 100%; }
.fh-motion-viewport, .fh-motion-track { display: flex; align-items: center; justify-content: center; }
.fh-motion-slide { position: relative; flex: 0 0 auto; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: opacity .3s ease, transform .3s ease; background-color: var(--surface-2); border: 1px solid var(--border); }
.fh-motion-slide[data-slot="center"] { width: 190px; height: 240px; opacity: 1; transform: scale(1); z-index: 2; }
.fh-motion-slide[data-slot="prev"], .fh-motion-slide[data-slot="next"] { width: 140px; height: 195px; opacity: .5; transform: scale(.92); z-index: 1; }
.fh-motion-slide[data-slot="prev"] { margin-right: -24px; }
.fh-motion-slide[data-slot="next"] { margin-left: -24px; }
.fh-motion-play {
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(217,182,78,.7); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.45); backdrop-filter: blur(3px);
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.fh-motion-play svg { width: 18px; height: 18px; margin-left: 2px; }
.fh-motion-slide[data-slot="center"]:hover .fh-motion-play { background: var(--gold); border-color: var(--gold); color: #000; transform: scale(1.08); }
@media (max-width: 768px) { .fh-motion-slide[data-slot="prev"], .fh-motion-slide[data-slot="next"] { display: none; } .fh-motion-slide[data-slot="center"] { width: 260px; height: 320px; } }
@media (min-width: 768px) { }
/* =========================================================================
   INTERIOR PAGES -- contact, about/faq/privacy, blog, brand, inventory shell.
   Deliberately does NOT style .car-card or any .car-detail-* / .car-gallery*
   classes (single listing page + card design are being redone separately).
   ========================================================================= */

/* ---------- Rich text content blocks (about, faq, privacy, brand SEO, blog post) ---------- */
.prose { color: var(--muted); line-height: 1.8; font-size: 1rem; }
.prose h1, .prose h2, .prose h3, .prose h4 { color: var(--foreground); margin: 2em 0 0.6em; }
.prose h1:first-child, .prose h2:first-child, .prose h3:first-child, .prose h4:first-child { margin-top: 0; }
.prose p { margin: 0 0 1.25em; }
.prose a { color: var(--gold); }
.prose a:hover { color: var(--gold-hover); }
.prose ul, .prose ol { margin: 0 0 1.25em; padding-left: 1.4em; }
.prose li { margin-bottom: 0.4em; }
.prose img { border-radius: 2px; margin: 1.5em 0; }
.prose hr { border: none; border-top: 1px solid var(--border); margin: 2em 0; }
.prose blockquote { border-left: 2px solid var(--gold); padding-left: 1.25em; margin: 1.5em 0; color: var(--foreground); font-style: italic; }
.prose strong { color: var(--foreground); }

/* ---------- Generic page header bits shared by these pages ---------- */
.section .eyebrow { display: block; }
.section h1 { font-size: 2rem; margin-bottom: 0.5rem; }
.content-page-card { border: 1px solid var(--border); background: var(--surface); padding: 2.5rem; margin-top: 2rem; border-radius: 4px; }
@media (max-width: 600px) { .content-page-card { padding: 1.5rem; } }

/* ---------- Contact page ---------- */
.contact-intro { color: var(--muted); font-size: 1.05rem; max-width: 640px; margin: 0.75rem 0 0; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: 2.5rem; align-items: start; }
.contact-map { width: 100%; height: 380px; margin-top: 3rem; border: 1px solid var(--border); overflow: hidden; }
@media (min-width: 800px) { .contact-grid { grid-template-columns: 0.75fr 1.25fr; } }

.contact-info-card, .contact-form-card { border: 1px solid var(--border); background: var(--surface); padding: 2rem; }
.contact-info-row { display: flex; align-items: flex-start; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--border); }
.contact-info-row:last-of-type { border-bottom: none; }
.contact-info-icon { flex: 0 0 auto; width: 20px; height: 20px; color: var(--gold); margin-top: 0.15em; }
.contact-info-icon svg { width: 100%; height: 100%; }
.contact-info-label { display: block; font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.7rem; color: var(--muted); margin-bottom: 0.25rem; }
.contact-info-row p { margin: 0; color: var(--foreground); }
.contact-info-row a { color: var(--foreground); }
.contact-info-row a:hover { color: var(--gold); }
.contact-info-card .btn { margin-top: 1.5rem; }

.form-row { margin-bottom: 1.25rem; }
.form-row label { display: block; margin-bottom: 0.4rem; font-size: 0.9rem; color: var(--muted); }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; background: var(--surface); border: 1px solid var(--border); color: var(--foreground);
  padding: 0.8rem 1rem; font: inherit; border-radius: 2px;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { outline: none; border-color: rgba(217,182,78,.5); }
.form-row textarea { min-height: 120px; resize: vertical; }
.form-error { color: #f87171; font-size: 0.9rem; margin: 0 0 1rem; }
.notice { border: 1px solid var(--border); padding: 1.5rem; border-radius: 2px; }
.notice-success { border-color: rgba(74,222,128,.35); background: rgba(74,222,128,.06); }

/* ---------- Blog ---------- */
/* ---------- Blog ---------- */
.blog-hero { padding-bottom: 1rem; }
.blog-hero-sub { color: var(--muted); font-size: 1.05rem; max-width: 640px; margin: 0.5rem 0 0; }

.blog-eyebrow { color: var(--gold); font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.72rem; font-weight: 600; margin: 0 0 0.6rem; }
.blog-read-link {
  display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1rem;
  color: var(--gold); font-family: "Oswald", sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
}
.blog-read-link svg { width: 14px; height: 14px; transition: transform .25s ease; }
.blog-card:hover .blog-read-link svg, .blog-featured:hover .blog-read-link svg { transform: translateX(4px); }

/* Featured (most recent) post */
.blog-featured-wrap { padding-bottom: 1rem; }
.blog-featured {
  display: grid; grid-template-columns: 1fr; gap: 0; border: 1px solid var(--border);
  color: inherit; text-decoration: none; transition: border-color .3s ease;
}
.blog-featured:hover { border-color: rgba(217,182,78,.4); }
@media (min-width: 900px) { .blog-featured { grid-template-columns: 1.1fr 1fr; align-items: stretch; } }
.blog-featured-image { aspect-ratio: 16 / 10; overflow: hidden; background: var(--surface-2); }
@media (min-width: 900px) { .blog-featured-image { aspect-ratio: auto; height: 100%; } }
.blog-featured-image img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.03); transition: transform .6s cubic-bezier(.22,1,.36,1); }
.blog-featured:hover .blog-featured-image img { transform: scale(1.1); }
.blog-featured-body { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
.blog-featured-body h2 { font-size: 1.6rem; line-height: 1.3; margin: 0 0 0.9rem; text-transform: none; letter-spacing: 0; }
@media (min-width: 700px) { .blog-featured-body h2 { font-size: 1.9rem; } }
.blog-featured-excerpt { color: var(--muted); line-height: 1.75; margin: 0; }

/* Card grid (remaining posts) */
.blog-grid-section { padding-top: 1rem; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; }
.blog-card { display: block; color: inherit; text-decoration: none; }
.blog-card-image { aspect-ratio: 16 / 10; overflow: hidden; background: var(--surface-2); border: 1px solid var(--border); transition: border-color .3s ease; }
.blog-card:hover .blog-card-image { border-color: rgba(217,182,78,.4); }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); transition: transform .6s cubic-bezier(.22,1,.36,1); }
.blog-card:hover .blog-card-image img { transform: scale(1.15); }
.blog-card-body { padding: 1.4rem 0.1rem 0; }
.blog-card-body h2 { font-size: 1.15rem; line-height: 1.4; margin: 0 0 0.7rem; text-transform: none; letter-spacing: 0; }
.blog-card:hover .blog-card-body h2 { color: var(--gold); }
.blog-card-excerpt { color: var(--muted); font-size: 0.92rem; line-height: 1.7; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.blog-post { max-width: 780px; margin: 0 auto; padding-left: 1.25rem; padding-right: 1.25rem; }
.blog-post-back { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--muted); font-family: "Oswald", sans-serif; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2rem; transition: color .2s ease; }
.blog-post-back svg { width: 14px; height: 14px; }
.blog-post-back:hover { color: var(--gold); }
.blog-post-date { color: var(--gold); font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.72rem; font-weight: 600; margin: 0 0 0.75rem; }
.blog-post-title { font-size: 1.9rem; line-height: 1.3; margin: 0 0 1.5rem; }
@media (min-width: 700px) { .blog-post-title { font-size: 2.4rem; } }
.blog-post-hero { margin: 0 0 2.5rem; border-radius: 4px; overflow: hidden; border: 1px solid var(--border); aspect-ratio: 16 / 9; }
.blog-post-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-post-content { font-size: 1.05rem; }

.blog-post-nav {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.1);
}
.blog-post-nav-link { display: flex; flex-direction: column; gap: .35rem; padding: 1rem 1.25rem; border-radius: 8px; border: 1px solid rgba(255,255,255,.1); transition: border-color .2s ease, background .2s ease; }
.blog-post-nav-link:hover { border-color: var(--gold); background: rgba(255,255,255,.03); }
.blog-post-nav-next { text-align: right; grid-column: 2; }
.blog-post-nav-label { font-size: .8rem; text-transform: uppercase; letter-spacing: .04em; color: var(--gold); }
.blog-post-nav-title { font-weight: 600; }
@media (max-width: 640px) {
  .blog-post-nav { grid-template-columns: 1fr; }
  .blog-post-nav-next { grid-column: 1; text-align: left; }
}

/* ---------- Brand pages ---------- */
.brand-hero { position: relative; background: #000; min-height: 28vh; overflow: hidden; }
.brand-hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.brand-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.55) 100%); z-index: 1; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
@media (max-width: 768px) { .brand-hero { min-height: 20vh; } }

.brand-seo-section { padding-top: 2.5rem; padding-bottom: 1rem; }
.brand-seo-content-wrap { max-height: 3.6em; overflow: hidden; position: relative; }
.brand-seo-content-wrap::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.8em;
  background: linear-gradient(rgba(0,0,0,0), var(--background));
  pointer-events: none;
}
.brand-seo-content-wrap.is-open { max-height: none; }
.brand-seo-content-wrap.is-open::after { display: none; }
.brand-seo-content { margin-top: 0; padding-top: 0; border-top: none; }

/* ---------- Inventory hero banner + expandable SEO text ---------- */
.inv-hero { position: relative; background: #000; min-height: 46vh; overflow: hidden; }
.inv-hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.inv-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.75) 100%); z-index: 1; }
@media (max-width: 768px) { .inv-hero { min-height: 32vh; } }

.inv-hero-text-section { background: #000; padding: 2rem 0 0.5rem; }
.inv-hero-title { font-size: 1.6rem; line-height: 1.3; margin: 0 0 0.85rem; max-width: none; }
@media (min-width: 700px) { .inv-hero-title { font-size: 2rem; } }
.inv-hero-desc { color: var(--muted); line-height: 1.8; font-size: 1rem; max-width: none; margin: 0; }
.inv-hero-desc a { color: var(--gold); }
.inv-hero-desc a:hover { color: var(--gold-hover); }

.inv-hero-extra { max-height: 0; overflow: hidden; max-width: none; opacity: 0; transition: max-height .4s ease, opacity .3s ease; }
.inv-hero-extra.is-open { max-height: 3000px; opacity: 1; }
.inv-hero-extra h2 { font-size: 1.15rem; margin: 1.75rem 0 0.85rem; }
.inv-hero-extra h2:first-child { margin-top: 1.5rem; }
.inv-hero-extra p { color: var(--muted); line-height: 1.8; margin: 0 0 1.1rem; }
.inv-hero-extra a { color: var(--gold); }
.inv-hero-extra a:hover { color: var(--gold-hover); }

.inv-readmore-btn {
  display: inline-flex; align-items: center; gap: 0.5rem; background: none; border: none; cursor: pointer;
  color: var(--gold); font-family: "Oswald", sans-serif; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; margin-top: 1rem; padding: 0;
}
.inv-readmore-btn svg { width: 14px; height: 14px; transition: transform .2s ease; }
.inv-content { padding-top: 0.5rem; padding-bottom: 4rem; }
.inv-readmore-btn.is-open svg { transform: rotate(90deg); }

/* ---------- Inventory instant filter (brand/model/year + Sale/Sold pill) ---------- */
.inv-filter { margin: 2rem 0 1.5rem; }
.inv-filter-heading { font-size: 1.4rem; margin: 0 0 1rem; }
.inv-filter-rule { border: none; border-top: 1px solid var(--border); margin: 0 0 1.5rem; }
.inv-filter-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.inv-filter-row select {
  background: var(--surface); border: 1px solid var(--border); color: var(--muted);
  padding: 0.85rem 1.1rem; font: inherit; border-radius: 2px; flex: 1 1 200px; min-width: 160px;
  transition: border-color .2s ease, color .2s ease;
}
.inv-filter-row select:focus, .inv-filter-row select:hover { color: var(--foreground); border-color: rgba(217,182,78,.45); outline: none; }
.inv-filter-row select:disabled { color: var(--gold); font-weight: 600; cursor: not-allowed; opacity: 1; }
.inv-filter-row select:disabled:hover { border-color: var(--border); color: var(--gold); }
.inv-reset {
  background: var(--gold); color: #fff; border: none; padding: 0.85rem 1.75rem; border-radius: 2px;
  font-family: "Oswald", sans-serif; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  font-size: .85rem; cursor: pointer; white-space: nowrap; transition: background .25s ease;
}
.inv-reset:hover { background: var(--gold-hover); }
@media (max-width: 700px) {
  .inv-filter { background: var(--surface); border: 1px solid var(--border); border-radius: 6px; padding: 1.25rem; margin: 1.5rem 0; }
  .inv-filter-heading { font-size: 1.15rem; }
  .inv-filter-rule { margin-bottom: 1.1rem; }
  .inv-filter-row { flex-direction: column; gap: 0.85rem; }
  .inv-filter-row select, .inv-reset { width: 100%; flex: 0 0 auto; padding: 1rem 1.1rem; font-size: 0.95rem; }
  .inv-toggle-row { margin-top: 1.25rem; }
}

.inv-toggle-row { display: flex; justify-content: center; margin: 2rem 0 0; }
.inv-toggle-pill {
  display: flex; background: var(--surface); border: 1px solid var(--border); border-radius: 40px;
  overflow: hidden; width: 100%; max-width: 480px;
}
.inv-toggle-pill button {
  flex: 1; padding: 0.9rem 0; border: none; background: transparent; color: var(--muted);
  font-family: "Oswald", sans-serif; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  font-size: .82rem; cursor: pointer; transition: background .25s ease, color .25s ease;
}
.inv-toggle-pill button.is-active { background: var(--gold); color: #fff; }

.empty-state { color: var(--muted); padding: 3rem 0; text-align: center; border: 1px dashed var(--border); margin-top: 1.5rem; }

/* =========================================================================
   ABOUT US -- "about-" prefixed
   ========================================================================= */

/* ---------- Welcome to Dourado ---------- */
.about-welcome { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .about-welcome { grid-template-columns: 0.85fr 1.15fr; gap: 3.5rem; } }

.about-welcome-image { position: relative; border: 1px solid var(--border); overflow: hidden; }
.about-welcome-image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 4; display: block; }
@media (min-width: 900px) { .about-welcome-image img { aspect-ratio: 4 / 5; } }

.about-welcome-body .eyebrow { display: block; }
.about-pull-quote {
  font-family: "Oswald", sans-serif; font-size: 1.6rem; line-height: 1.35; color: var(--foreground);
  text-transform: none; letter-spacing: 0; margin: 0 0 1.5rem; font-style: italic;
}
@media (min-width: 700px) { .about-pull-quote { font-size: 2rem; } }

.about-rotator { position: relative; margin-bottom: 1.75rem; transition: height .3s ease; }
.about-rotator-slide { display: none; position: absolute; top: 0; left: 0; width: 100%; color: var(--muted); line-height: 1.85; margin: 0; }
.about-rotator-slide.is-active { display: block; }
.about-rotator-slide a { color: var(--gold); }
.about-rotator-slide a:hover { color: var(--gold-hover); }
.about-rotator-slide strong { color: var(--foreground); }

/* ---------- Our Mission: full-bleed background image section ---------- */
.about-mission { position: relative; background-position: center; background-size: cover; background-repeat: no-repeat; min-height: 70vh; display: flex; align-items: center; overflow: hidden; }
.about-mission-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.55) 55%, rgba(0,0,0,.35) 100%); z-index: 0; }
.about-mission-inner { position: relative; z-index: 1; padding-top: 4rem; padding-bottom: 4rem; max-width: 700px; }
.about-mission-title { font-size: 2.4rem; color: #fff; margin: 0 0 1.75rem; }
@media (min-width: 700px) { .about-mission-title { font-size: 3rem; } }
.about-mission-slides { position: relative; margin-bottom: 2rem; transition: height .3s ease; }
.about-mission-slide { display: none; position: absolute; top: 0; left: 0; width: 100%; color: rgba(255,255,255,.85); line-height: 1.85; margin: 0; font-size: 1.05rem; }
.about-mission-slide.is-active { display: block; }
.about-mission-slide strong { color: #fff; }

.about-play-btn {
  display: inline-flex; align-items: center; gap: 0.85rem; background: none; border: none; cursor: pointer;
  color: var(--gold); font-family: "Oswald", sans-serif; font-weight: 600; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.06em; padding: 0;
}
.about-play-circle {
  display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.5); color: #fff; flex-shrink: 0; transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.about-play-circle svg { width: 16px; height: 16px; margin-left: 2px; }
.about-play-btn:hover .about-play-circle { background: var(--gold); border-color: var(--gold); color: #000; }

/* ---------- Brand marquee ---------- */
.about-marquee-section { padding: 2.5rem 0 4rem; background: #000; overflow: hidden; }
.about-marquee-rule { border: none; border-top: 1px solid var(--border); max-width: 1200px; margin: 0 auto 2.5rem; }
.about-marquee-wrap { overflow: hidden; }
.about-marquee-track { display: flex; gap: 1.5rem; width: max-content; animation: about-marquee 40s linear infinite; }
.about-marquee-item { flex: 0 0 auto; width: 160px; height: 160px; border: 1px solid var(--border); overflow: hidden; }
.about-marquee-item img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.3); transition: filter .3s ease; }
.about-marquee-item:hover img { filter: none; }
@keyframes about-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .about-marquee-track { animation: none; } }

/* ---------- Video lightbox ---------- */
.about-video-lightbox {
  display: none; position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,.95);
  align-items: center; justify-content: center; padding: 2rem;
}
.about-video-lightbox.is-open { display: flex; }
.about-video-frame { width: 100%; max-width: 960px; aspect-ratio: 16 / 9; background: #000; }
.about-video-frame iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Footer redesign (already live on your site -- kept as-is,
   appended here so this one file is the complete, single source of truth) ---------- */

.site-footer { border-top: 1px solid var(--border); }
.footer-container { width: 100%; margin: 0 auto; padding: 0 32px; }

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-top: 3rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 700px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1100px) {
  .footer-top { grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr; }
}

.footer-cta-heading-link { display: block; color: inherit; text-decoration: none; }
.footer-cta-heading-link:hover .footer-cta-heading { color: var(--gold); }
.footer-cta-heading {
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  transition: color .2s ease;
}
.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}
.footer-contact-line a { color: var(--muted); }
.footer-contact-line a:hover { color: var(--gold); }
.ficon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: var(--gold);
}

.footer-links { padding-top: 0.4rem; }
.footer-links ul { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: var(--muted); font-size: 0.95rem; }
.footer-links a:hover { color: var(--gold); }

.footer-signup .newsletter-form {
  display: flex;
  margin-bottom: 0.75rem;
}
.footer-signup input[type="email"] {
  flex: 1;
  min-width: 0;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--foreground);
  padding: 0.75rem 1rem;
  font: inherit;
}
.footer-signup button {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 0 1.25rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
}
.footer-signup button:hover { background: var(--gold-hover); }
.newsletter-msg { font-size: 0.85rem; margin-bottom: 1.25rem; }
.newsletter-msg-ok { color: #4ade80; }
.newsletter-msg-error { color: #f87171; }

.app-badges {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: none;
  margin-top: 1.25rem;
}
.app-badge-img { display: block; width: auto; }
.app-badge-img--apple { height: 44px; }
.app-badge-img--google { height: 60px; margin-top: -8px; margin-bottom: -8px; }

.footer-bottom {
  display: grid !important;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 1.25rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  text-align: center;
}
@media (min-width: 900px) {
  .footer-bottom {
    grid-template-columns: 1fr auto 1fr;
    text-align: left;
  }
}
.footer-copyright { font-size: 0.85rem; color: var(--muted); }
.footer-logo { display: flex; justify-content: center; }
.footer-logo img { height: 52px; width: auto; }
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
@media (min-width: 900px) {
  .footer-social { justify-content: flex-end; }
}
.footer-social a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
}
.footer-social svg { width: 16px; height: 16px; fill: var(--muted); }
.footer-social a:hover { border-color: var(--gold); }
.footer-social a:hover svg { fill: var(--gold); }

/* Floating WhatsApp button */
.floating-whatsapp {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  height: 46px;
  min-width: 46px;
  background: #25d366;
  border-radius: 999px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
  z-index: 40;
  overflow: hidden;
  padding: 0;
  transition: padding .3s ease;
}
.floating-whatsapp-icon { flex: 0 0 auto; width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; }
.floating-whatsapp-icon svg { width: 24px; height: 24px; fill: #fff; }
.floating-whatsapp-label {
  max-width: 0; overflow: hidden; white-space: nowrap; color: #fff; font-family: "Oswald", sans-serif;
  font-weight: 600; font-size: 0.85rem; letter-spacing: 0.02em; transition: max-width .35s ease;
}
.floating-whatsapp:hover { padding-right: 1rem; }
.floating-whatsapp:hover .floating-whatsapp-label { max-width: 140px; }

#scroll-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  color: #000;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 40;
  box-shadow: 0 4px 14px rgba(0,0,0,.4);
  transition: background .2s ease, transform .2s ease;
}
#scroll-to-top.is-visible { display: flex; }
#scroll-to-top:hover { background: var(--gold-hover); transform: translateY(-2px); }
#scroll-to-top svg { width: 18px; height: 18px; fill: currentColor; }

/* =========================================================================
   ABOUT US -- "Our Mission" section: left-aligned, clean, Play Video below.
   Paste this at the VERY END of assets/css/style.css. It overrides the old
   .about-mission rules (same selectors, later in the file = wins).
   ========================================================================= */

/* Darker on the left so the text is always readable over the car photo. */
.about-mission-overlay {
  background: linear-gradient(90deg,
              rgba(0,0,0,.92) 0%,
              rgba(0,0,0,.80) 38%,
              rgba(0,0,0,.45) 70%,
              rgba(0,0,0,.15) 100%);
}

/* Keep the text in a column on the LEFT instead of centered. */
.about-mission-inner {
  max-width: 560px;
  margin-left: 0;
  margin-right: auto;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

/* Stack the rotating slides in a single grid cell. The box auto-sizes to the
   tallest slide, so nothing collapses and the Play button can never overlap
   the text. (Replaces the old absolute-positioned slides.) */
.about-mission-slides {
  display: grid;
  margin-bottom: 2rem;
  height: auto !important;   /* neutralises the old JS-set fixed height */
}
.about-mission-slide {
  grid-area: 1 / 1;          /* every slide shares the same cell */
  display: block;
  position: static;
  top: auto; left: auto; width: auto;
  margin: 0;
  color: rgba(255,255,255,.85);
  line-height: 1.85;
  font-size: 1.05rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease;
}
.about-mission-slide.is-active {
  opacity: 1;
  visibility: visible;
}
.about-mission-slide strong { color: #fff; }

/* Play Video sits cleanly under the paragraph, in normal flow. */
.about-play-btn { margin-top: .25rem; }

/* -------- Mobile -------- */
@media (max-width: 700px) {
  .about-mission { min-height: 0; }
  .about-mission-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.72) 100%);
  }
  .about-mission-inner {
    max-width: 100%;
    margin-right: 0;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .about-mission-title { font-size: 2rem; margin-bottom: 1.25rem; }
  .about-mission-slide { font-size: 1rem; line-height: 1.7; }
  .about-play-btn { margin-top: .75rem; }
}

/* Featured-cars carousel: dim + disable the arrow at each end (no infinite loop).
   Paste at the end of assets/css/style.css. */
.fh-ap-swipe-arrow[disabled] {
  opacity: 0.25 !important;
  cursor: default;
  pointer-events: none;
}

/* =========================================================================
   GOOGLE REVIEWS - redesigned.   ========================================================================= */
.rv-section { padding: 5rem 0; background: #000; }

/* Header - properly centred. (The old markup inherited align-items:flex-end
   from .fh-section-head, which in a column layout shoved it all to the right.) */
.rv-head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .5rem; margin-bottom: 1.5rem; }
.rv-eyebrow {
  color: var(--gold); font-family: "Oswald", sans-serif; text-transform: uppercase;
  letter-spacing: .2em; font-size: .78rem; font-weight: 600;
}
.rv-head h2 {
  margin: 0; color: #fff; font-family: "Oswald", sans-serif; font-weight: 700;
  text-transform: uppercase; font-size: 1.7rem; letter-spacing: .01em;
}
@media (min-width: 700px) { .rv-head h2 { font-size: 2.1rem; } }

/* Rating summary */
.rv-summary {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: .75rem; margin: 0 auto 3rem; padding: .85rem 1.5rem;
  border: 1px solid var(--border); border-radius: 999px; width: fit-content;
  background: var(--surface);
}
.rv-summary-score { font-family: "Oswald", sans-serif; font-size: 1.6rem; font-weight: 700; color: #fff; line-height: 1; }
.rv-summary-stars { color: var(--gold); font-size: 1.05rem; letter-spacing: .1em; }
.rv-summary-meta { color: var(--muted); font-size: .85rem; }
.rv-summary-meta strong { color: #fff; font-weight: 600; }

/* Carousel - ONE row. 3 cards on desktop, 2 on tablet, 1 on mobile. */
.rv-carousel { position: relative; }
.rv-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;              /* Firefox */
  -ms-overflow-style: none;           /* old Edge */
  padding-bottom: 4px;
}
.rv-track::-webkit-scrollbar { display: none; }

.rv-track > .rv-card {
  flex: 0 0 100%;                     /* mobile: 1 at a time */
  scroll-snap-align: start;
  min-width: 0;
}
@media (min-width: 640px) {
  .rv-track > .rv-card { flex: 0 0 calc((100% - 1.25rem) / 2); }   /* tablet: 2 */
}
@media (min-width: 1024px) {
  .rv-track { gap: 1.5rem; }
  .rv-track > .rv-card { flex: 0 0 calc((100% - 3rem) / 3); }      /* desktop: 3 */
}

/* Arrows */
.rv-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3; width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.65); border: 1px solid var(--gold); color: var(--gold);
  cursor: pointer; padding: 0;
  transition: background .2s ease, opacity .2s ease;
}
.rv-arrow:hover { background: var(--gold); color: #000; }
.rv-arrow svg { width: 18px; height: 18px; }
.rv-arrow--prev { left: -14px; }
.rv-arrow--next { right: -14px; }
.rv-arrow[disabled] { opacity: .25; cursor: default; pointer-events: none; }
.rv-arrow[hidden] { display: none; }

@media (max-width: 1100px) {
  .rv-arrow--prev { left: 2px; }
  .rv-arrow--next { right: 2px; }
}

.rv-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border); border-radius: 10px;
  padding: 1.6rem 1.5rem 1.4rem;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.rv-card:hover {
  border-color: rgba(217,182,78,.45);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,.45);
}

.rv-card-head { display: flex; align-items: center; gap: .75rem; margin-bottom: .9rem; }
.rv-avatar {
  width: 44px; height: 44px; flex: 0 0 44px; border-radius: 50%; overflow: hidden;
  background: var(--surface-2); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: "Oswald", sans-serif; font-weight: 600; font-size: 1.05rem;
}
.rv-avatar img { width: 100%; height: 100%; object-fit: cover; }
.rv-who { min-width: 0; flex: 1 1 auto; }
.rv-name { margin: 0; font-weight: 600; font-size: .95rem; color: var(--foreground); line-height: 1.3; }
.rv-time { margin: .15rem 0 0; color: var(--muted); font-size: .75rem; }
.rv-g { width: 18px; height: 18px; flex: 0 0 18px; opacity: .9; }

.rv-stars { margin: 0 0 .65rem; color: var(--gold); font-size: .9rem; letter-spacing: .08em; }

/* Clamp the text so every card is the same height and the grid stays tidy. */
.rv-text {
  margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.7;
  display: -webkit-box; -webkit-line-clamp: 7; -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Read-all-on-Google link */
.rv-cta { text-align: center; margin-top: 2.5rem; }
.rv-cta a {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--gold); font-family: "Oswald", sans-serif; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em; font-size: .8rem;
}
.rv-cta a:hover { color: var(--gold-hover); }
.rv-cta svg { width: 15px; height: 15px; transition: transform .2s ease; }
.rv-cta a:hover svg { transform: translateX(4px); }

@media (max-width: 700px) {
  .rv-section { padding: 3.5rem 0; }
  .rv-summary { gap: .5rem; padding: .75rem 1.1rem; }
  .rv-summary-meta { font-size: .78rem; }
}

/* =========================================================================
   FORM FIELDS - make them actually visible.

   The problem: --surface is #000 (identical to the page background) and
   --border is rgba(255,255,255,.09) - 9% white. So every input was a black
   box on a black page with an almost invisible outline.
   ========================================================================= */

/* ---- Contact form (and any .form-row on the site) ---- */
.form-row input,
.form-row textarea,
.form-row select {
  background: rgba(255, 255, 255, .05);       /* lifts the field off the page */
  border: 1px solid rgba(255, 255, 255, .22); /* was .09 - now actually visible */
  border-radius: 4px;
  color: var(--foreground);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(255, 255, 255, .38);
}
.form-row input:hover,
.form-row textarea:hover,
.form-row select:hover {
  border-color: rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .07);
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 0 0 3px rgba(217, 182, 78, .16);   /* soft gold focus ring */
}
/* Labels were --muted grey; make them read clearly as field labels. */
.form-row label {
  color: var(--foreground);
  font-weight: 500;
}

/* ---- Newsletter box in the footer ---- */
.footer-signup input[type="email"] {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 4px 0 0 4px;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.footer-signup input[type="email"]::placeholder {
  color: rgba(255, 255, 255, .40);
}
.footer-signup input[type="email"]:hover {
  border-color: rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .07);
}
.footer-signup input[type="email"]:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 0 0 3px rgba(217, 182, 78, .16);
}
.footer-signup button { border-radius: 0 4px 4px 0; }

/* Chrome autofill turns fields white/blue - keep them on-theme. */
.form-row input:-webkit-autofill,
.form-row textarea:-webkit-autofill,
.footer-signup input:-webkit-autofill {
  -webkit-text-fill-color: var(--foreground);
  -webkit-box-shadow: 0 0 0 1000px #14140f inset;
  caret-color: var(--foreground);
}
/* =========================================================================
   CONTACT PAGE - country dropdown, linked address, socials, bot honeypot
   ========================================================================= */

/* Address link */
.contact-info-row a { color: var(--foreground); text-decoration: none; transition: color .2s ease; }
.contact-info-row a:hover { color: var(--gold); text-decoration: underline; }

/* ---- Honeypot: must be invisible to humans but NOT display:none, or some
   bots detect it. Push it out of the viewport instead. ---- */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto; width: 1px; height: 1px; overflow: hidden;
}

/* ---- Phone row: [flag +971 v][ number ] ---- */
.phone-field { display: flex; gap: .5rem; position: relative; }
.phone-field input[type="tel"] { flex: 1 1 auto; min-width: 0; }

.cc-btn {
  flex: 0 0 auto;
  display: flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 4px;
  color: var(--foreground);
  padding: 0.8rem 0.7rem;
  font: inherit; cursor: pointer; white-space: nowrap;
  transition: border-color .2s ease, background .2s ease;
}
.cc-btn:hover { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.07); }
.cc-btn[aria-expanded="true"] { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(217,182,78,.16); }
.cc-flag { font-size: 1.1rem; line-height: 1; }
.cc-code { font-variant-numeric: tabular-nums; }
.cc-caret { width: 14px; height: 14px; opacity: .6; }

/* Dropdown panel */
.cc-panel {
  position: absolute; z-index: 30; top: calc(100% + 6px); left: 0;
  width: min(340px, 100%);
  background: #14140f;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(0,0,0,.6);
  overflow: hidden;
}
.cc-panel[hidden] { display: none; }
.cc-search {
  width: 100%; padding: .7rem .85rem;
  background: rgba(255,255,255,.05);
  border: none; border-bottom: 1px solid rgba(255,255,255,.14);
  color: var(--foreground); font: inherit;
}
.cc-search:focus { outline: none; background: rgba(255,255,255,.08); }
.cc-search::placeholder { color: rgba(255,255,255,.4); }

.cc-list { list-style: none; margin: 0; padding: .25rem; max-height: 260px; overflow-y: auto; }
.cc-list li {
  display: flex; align-items: center; gap: .6rem;
  padding: .55rem .6rem; border-radius: 4px; cursor: pointer;
  font-size: .9rem; color: var(--foreground);
}
.cc-list li:hover, .cc-list li.is-active { background: rgba(217,182,78,.16); }
.cc-list li.is-selected { color: var(--gold); }
.cc-list li[hidden] { display: none; }
.cc-name { flex: 1 1 auto; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cc-dial { color: var(--muted); font-variant-numeric: tabular-nums; flex: 0 0 auto; }

.cc-list::-webkit-scrollbar { width: 8px; }
.cc-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,.18); border-radius: 4px; }

/* ---- Social icons in the contact card ---- */
.contact-socials { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.contact-socials-label {
  display: block; margin-bottom: .75rem; color: var(--muted);
  font-family: "Oswald", sans-serif; text-transform: uppercase;
  letter-spacing: .12em; font-size: .72rem;
}
.contact-socials-row { display: flex; gap: .6rem; flex-wrap: wrap; }
.contact-socials-row a {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); color: var(--muted);
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.contact-socials-row a:hover { color: #000; background: var(--gold); border-color: var(--gold); }
.contact-socials-row svg { width: 17px; height: 17px; fill: currentColor; }
/* =========================================================================
   404 PAGE.   ========================================================================= */
.nf-section { padding: 5rem 0 6rem; background: #000; }
.nf-inner { text-align: center; max-width: 780px; }

.nf-code {
  font-family: "Oswald", sans-serif; font-weight: 700;
  font-size: clamp(4.5rem, 16vw, 9rem); line-height: 1;
  margin: 0; color: var(--gold);
  opacity: .22; letter-spacing: .04em;
}
.nf-title {
  font-family: "Oswald", sans-serif; text-transform: uppercase;
  font-weight: 700; color: #fff; letter-spacing: .01em;
  font-size: 1.6rem; line-height: 1.25; margin: -0.5rem 0 1rem;
}
@media (min-width: 700px) { .nf-title { font-size: 2.3rem; } }

.nf-lead {
  color: var(--muted); font-size: 1rem; line-height: 1.8;
  max-width: 520px; margin: 0 auto 2.25rem;
}

.nf-actions {
  display: flex; flex-wrap: wrap; gap: .75rem;
  justify-content: center; margin-bottom: 3.5rem;
}

/* Brand links */
.nf-brands { border-top: 1px solid var(--border); padding-top: 2.25rem; }
.nf-brands-label {
  display: block; margin-bottom: 1.25rem;
  color: var(--gold); font-family: "Oswald", sans-serif;
  text-transform: uppercase; letter-spacing: .18em; font-size: .75rem; font-weight: 600;
}
.nf-brand-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center;
}
.nf-brand-list a {
  display: block; padding: .6rem 1.1rem;
  border: 1px solid var(--border); border-radius: 999px;
  color: var(--foreground); font-size: .88rem;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.nf-brand-list a:hover {
  color: #000; background: var(--gold); border-color: var(--gold);
}

@media (max-width: 600px) {
  .nf-section { padding: 3.5rem 0 4rem; }
  .nf-actions .btn { width: 100%; }
}

/* =========================================================================
   BRAND HERO - copy left, image bleeding to the right edge of the screen.
   ========================================================================= */
.bhx {
  position: relative;
  background: #000;
  overflow: hidden;
}

/* Full-bleed grid. The COPY is what gets aligned to the 1400px container
   (via its left padding below) - the grid itself spans the whole viewport,
   so the image can run all the way to the right edge with no black gap. */
.bhx-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  width: 100%;
}
@media (min-width: 900px) {
  .bhx-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    min-height: 62vh;
  }
}

/* ---- left: the copy ---- */
.bhx-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.25rem 1.5rem 3rem;
  min-width: 0;
}
@media (min-width: 900px) {
  .bhx-copy {
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-right: 3.5rem;
    /* Lines the text up with the rest of the site (1400px container) on wide
       screens, without constraining the grid and cropping the image. */
    padding-left: max(2.5rem, calc((100vw - 1400px) / 2 + 1.25rem));
  }
}

.bhx-eyebrow {
  margin: 0 0 1.1rem;
  color: var(--gold);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

/* High-contrast serif - loaded in includes/header.php. */
.bhx-name {
  margin: 0 0 1rem;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: 0.02em;
  color: #fff;
  text-transform: uppercase;
}

.bhx-tagline {
  margin: 0 0 1.4rem;
  color: var(--gold);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.5;
}

.bhx-text {
  margin: 0 0 2rem;
  max-width: 46ch;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.85;
}

.bhx-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  align-self: flex-start;
  color: var(--gold);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(217, 182, 78, 0.4);
  transition: color .2s ease, border-color .2s ease, gap .2s ease;
}
.bhx-cta:hover { color: var(--gold-hover); border-color: var(--gold); gap: 0.9rem; }
.bhx-cta svg { width: 15px; height: 15px; }

/* ---- right: the image, running to the edge of the screen ---- */
.bhx-media {
  position: relative;
  min-height: 260px;
  order: -1;                 /* on mobile the image sits ABOVE the copy */
}
@media (min-width: 900px) {
  .bhx-media { order: 0; min-height: 0; }
}
.bhx-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Melts the image into the black so there's no hard seam beside the copy. */
.bhx-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 45%, rgba(0,0,0,.75) 100%);
}
@media (min-width: 900px) {
  .bhx-fade {
    background: linear-gradient(90deg, #000 0%, rgba(0,0,0,.6) 18%, rgba(0,0,0,0) 55%);
  }
}

/* No image yet -> the copy simply spans the full width. Never looks broken. */
.bhx--noimg .bhx-grid { grid-template-columns: 1fr; min-height: 0; }
.bhx--noimg .bhx-copy { padding: 4rem 1.5rem; max-width: 1400px; margin: 0 auto; }

/* =========================================================================
   CAR CARD  --  black, square image, hairline-ruled
   ========================================================================= */

.car-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.25rem;
  margin-top: 2rem;
}

/* ---- the card ---------------------------------------------------------- */
.car-card {
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  text-decoration: none;
  color: inherit;

  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,.10);
  transition: border-color .5s ease;
}
.car-card:hover { border-color: rgba(217,182,78,.55); }

/* ---- image: SQUARE ----------------------------------------------------- */
.car-card-image {
  position: relative;
  flex: 0 0 auto;
  aspect-ratio: 1 / 1;              /* SQUARE */
  overflow: hidden;
  background: #000;
}
.car-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.35);
  transition: transform 1.2s cubic-bezier(.22,1,.36,1);
}
.car-card:hover .car-card-image img { transform: scale(1.43); }

/* photo dissolves into the black body below it */
.car-card-image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,.8) 100%);
  pointer-events: none;
}

/* gold hairline sealing the base of the photo */
.car-card-image::before {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; z-index: 2;
  background: var(--gold);
  opacity: .35;
  transition: opacity .5s ease;
}
.car-card:hover .car-card-image::before { opacity: 1; }

/* ---- status badge ------------------------------------------------------ */
.car-status-badge {
  position: absolute; top: 0; left: 0; z-index: 3;
  padding: .35rem .8rem;
  font-family: "Oswald", sans-serif;
  font-size: .58rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(4px);
  color: var(--gold);
}

/* ---- body: compact, so the image keeps some height --------------------- */
.car-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;                          /* fills the rest; footers stay aligned */
  padding: 1.15rem 1.25rem 1.15rem;
}

.car-card-brand {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase; letter-spacing: .24em;
  font-size: .6rem; font-weight: 500;
  color: var(--gold);
  margin: 0 0 .45rem;
}

.car-card-title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1.3;
  color: #fff;
  text-transform: none; letter-spacing: .005em;
  margin: 0 0 .9rem;
  min-height: 2.6em;                /* 2 lines -- keeps titles aligned */
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  transition: color .4s ease;
}
.car-card:hover .car-card-title { color: var(--gold); }

/* ---- specs: hairline-ruled, no fill, still black ----------------------- */
.car-card-specs {
  display: flex; align-items: stretch;
  gap: 0;
  padding: .7rem 0;
  margin: 0 0 .9rem;
  border-top: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.car-card-spec {
  display: flex; align-items: center; justify-content: center;
  gap: .4rem;
  flex: 1; min-width: 0;
  padding: 0 .25rem;
}
.car-card-spec svg { width: 13px; height: 13px; color: var(--gold); opacity: .8; flex-shrink: 0; }
.car-card-spec-value {
  display: block; font-size: .78rem; color: #fff;
  font-weight: 500; line-height: 1.25; white-space: nowrap;
}
.car-card-spec-label {
  display: block; font-family: "Oswald", sans-serif;
  font-size: .54rem; color: var(--muted); opacity: .6;
  text-transform: uppercase; letter-spacing: .16em; line-height: 1.45;
}
.car-card-spec-sep {
  width: 1px; align-self: stretch; flex: 0 0 1px;
  background: rgba(255,255,255,.10);
}

/* ---- footer ------------------------------------------------------------ */
.car-card-footer {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: .85rem;
  margin-top: auto;                 /* pins price to the base of the card */
}

.car-card-price {
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem; font-weight: 600; letter-spacing: .02em;
  font-variant-numeric: tabular-nums;   /* digits line up across cards */
  color: var(--gold);
  margin: 0; line-height: 1.15;
}
.car-card-price-usd {
  font-size: .68rem; color: var(--muted); opacity: .6;
  margin: .25rem 0 0; letter-spacing: .03em;
}

.car-card-cta {
  display: inline-flex; align-items: center; gap: .45rem;
  white-space: nowrap;
  font-family: "Oswald", sans-serif;
  font-size: .63rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted);
  padding: 0 0 .3rem;
  position: relative;
  transition: color .4s ease;
}
.car-card-cta::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  opacity: .3;
  transition: opacity .4s ease;
}
.car-card-cta svg { width: 12px; height: 12px; transition: transform .45s cubic-bezier(.22,1,.36,1); }

.car-card:hover .car-card-cta { color: var(--gold); }
.car-card:hover .car-card-cta::after { opacity: 1; }
.car-card:hover .car-card-cta svg { transform: translateX(5px); }

@media (max-width: 480px) {
  .car-card-body { padding: 1.1rem 1.1rem 1.05rem; }
  .car-card-title { font-size: 1.1rem; }
  .car-card-price { font-size: 1.28rem; }
  .car-card-spec { gap: .3rem; padding: 0 .18rem; }
  .car-card-spec svg { display: none; }   /* icons crowd 3-up on phones */
  .car-card-footer { gap: .7rem; }
}