/* =========================================================================
   footballers-cars.co.uk — Design System
   A trading style of Cocoon Vehicles Ltd
   Black / Gold / White luxury theme with Dark (default) + Bright modes.
   Prefix: fc-
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,600&family=Inter:wght@400;500;600;700;800&display=swap');

/* -------------------------------------------------------------------------
   1. Design tokens
   ------------------------------------------------------------------------- */
:root {
  /* Brand gold ramp */
  --fc-gold-050: #fbf3da;
  --fc-gold-100: #f3e1ac;
  --fc-gold-300: #e6c667;
  --fc-gold-500: #d4af37; /* decorative gold */
  --fc-gold-600: #b3901f; /* AA-safe gold-on-black for text */
  --fc-gold-700: #8a6d1a; /* AA-safe gold-on-white for text */
  --fc-gold-900: #4a3a0d;

  /* Neutrals */
  --fc-black-950: #060607;
  --fc-black-900: #0a0a0c;
  --fc-black-800: #121215;
  --fc-black-700: #19191d;
  --fc-black-600: #232328;
  --fc-black-500: #2f2f36;
  --fc-line-dark: #2a2a30;
  --fc-white: #ffffff;
  --fc-ivory: #f8f6f1;
  --fc-grey-100: #f1efe9;
  --fc-grey-300: #d8d5cc;
  --fc-grey-500: #9a9890;
  --fc-grey-700: #5b5a56;
  --fc-grey-900: #2b2a28;

  --fc-success: #2f9e63;
  --fc-danger: #d9483f;
  --fc-focus: #7fd0ff;

  /* Font */
  --fc-font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --fc-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Motion */
  --fc-ease: cubic-bezier(.22,.7,.24,1);
  --fc-t-fast: 160ms;
  --fc-t-base: 260ms;
  --fc-t-slow: 480ms;

  /* Radius / shadow */
  --fc-radius-sm: 8px;
  --fc-radius-md: 14px;
  --fc-radius-lg: 22px;
  --fc-radius-pill: 999px;

  /* Layout */
  --fc-container: 1320px;
  --fc-header-h: 84px;
  --fc-header-h-mobile: 64px;
  --fc-gutter: clamp(18px, 4vw, 48px);

  /* THEME: dark (default) */
  --fc-bg: var(--fc-black-950);
  --fc-bg-alt: var(--fc-black-900);
  --fc-surface: var(--fc-black-800);
  --fc-surface-raised: var(--fc-black-700);
  --fc-border: var(--fc-line-dark);
  --fc-text: var(--fc-ivory);
  --fc-text-dim: #b7b4aa;
  --fc-text-faint: #85837c;
  --fc-gold-text: var(--fc-gold-600);
  --fc-gold-solid: var(--fc-gold-500);
  --fc-on-gold: var(--fc-black-950);
  --fc-shadow: 0 24px 60px rgba(0,0,0,.55);
  --fc-shadow-sm: 0 10px 26px rgba(0,0,0,.4);
  --fc-image-well: #f2f0ea; /* neutral panel behind white-background product photography */
  --fc-scrim: rgba(6,6,7,.72);
}

[data-theme='light'] {
  --fc-bg: var(--fc-white);
  --fc-bg-alt: var(--fc-grey-100);
  --fc-surface: #ffffff;
  --fc-surface-raised: var(--fc-grey-100);
  --fc-border: var(--fc-grey-300);
  --fc-text: #16150f;
  --fc-text-dim: #4d4b44;
  --fc-text-faint: #78766e;
  --fc-gold-text: var(--fc-gold-700);
  --fc-gold-solid: var(--fc-gold-500);
  --fc-on-gold: #16150f;
  --fc-shadow: 0 24px 50px rgba(30,25,10,.14);
  --fc-shadow-sm: 0 8px 20px rgba(30,25,10,.10);
  --fc-image-well: #f4f2ec;
  --fc-scrim: rgba(255,255,255,.86);
}

/* -------------------------------------------------------------------------
   2. Reset
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
ul[class], ol[class] { margin: 0; padding: 0; list-style: none; }
img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
a { color: inherit; text-decoration: none; }
table { border-collapse: collapse; width: 100%; }

body {
  background: var(--fc-bg);
  color: var(--fc-text);
  font-family: var(--fc-font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background var(--fc-t-base) var(--fc-ease), color var(--fc-t-base) var(--fc-ease);
  overflow-x: hidden;
}
body.fc-lock-scroll { overflow: hidden; }

.fc-skip-link {
  position: fixed; top: -60px; left: 12px; z-index: 999;
  background: var(--fc-gold-solid); color: var(--fc-on-gold);
  padding: 12px 18px; border-radius: var(--fc-radius-sm); font-weight: 700;
  transition: top var(--fc-t-fast) var(--fc-ease);
}
.fc-skip-link:focus { top: 12px; }

:focus-visible {
  outline: 3px solid var(--fc-focus);
  outline-offset: 3px;
  border-radius: 4px;
}
.fc-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;
}

/* -------------------------------------------------------------------------
   3. Typography
   ------------------------------------------------------------------------- */
h1, h2, h3, h4, .fc-font-display { font-family: var(--fc-font-display); font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); line-height: 1.04; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); line-height: 1.1; }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.85rem); line-height: 1.22; }
h4 { font-size: 1.15rem; line-height: 1.3; }
.fc-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--fc-gold-text);
}
.fc-eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--fc-gold-solid); display: inline-block; }
.fc-lede { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--fc-text-dim); max-width: 62ch; }
p.fc-body, .fc-prose p { color: var(--fc-text-dim); max-width: 72ch; }
.fc-prose h2 { margin-top: 2.4em; margin-bottom: .5em; }
.fc-prose h3 { margin-top: 1.8em; margin-bottom: .5em; color: var(--fc-text); }
.fc-prose p, .fc-prose ul, .fc-prose ol { margin-bottom: 1.1em; color: var(--fc-text-dim); }
.fc-prose ul, .fc-prose ol { padding-left: 1.3em; }
.fc-prose li { margin-bottom: .5em; }
.fc-prose a { color: var(--fc-gold-text); text-decoration: underline; text-underline-offset: 3px; }
.fc-prose strong { color: var(--fc-text); }
a.fc-text-link {
  color: var(--fc-gold-text); font-weight: 700; text-decoration: underline; text-underline-offset: 3px;
}

/* -------------------------------------------------------------------------
   4. Layout
   ------------------------------------------------------------------------- */
.fc-container { width: 100%; max-width: var(--fc-container); margin-inline: auto; padding-inline: var(--fc-gutter); }
.fc-container--wide { max-width: 1600px; }
.fc-section { padding-block: clamp(48px, 8vw, 108px); }
.fc-section--tight { padding-block: clamp(32px, 5vw, 64px); }
.fc-section--alt { background: var(--fc-bg-alt); }
.fc-grid { display: grid; gap: clamp(18px, 2.6vw, 32px); }
.fc-grid--2 { grid-template-columns: repeat(2, 1fr); }
.fc-grid--3 { grid-template-columns: repeat(3, 1fr); }
.fc-grid--4 { grid-template-columns: repeat(4, 1fr); }
.fc-grid--auto { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
@media (max-width: 980px) { .fc-grid--3, .fc-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .fc-grid--2, .fc-grid--3, .fc-grid--4 { grid-template-columns: 1fr; } }
.fc-flex { display: flex; align-items: center; }
.fc-flex--between { justify-content: space-between; }
.fc-flex--wrap { flex-wrap: wrap; }
.fc-stack > * + * { margin-top: var(--fc-stack-gap, 16px); }
.fc-divider { border: 0; border-top: 1px solid var(--fc-border); margin: 0; }
.fc-center-text { text-align: center; margin-inline: auto; }

/* Reveal-on-scroll */
.fc-reveal { opacity: 0; transform: translateY(18px); transition: opacity var(--fc-t-slow) var(--fc-ease), transform var(--fc-t-slow) var(--fc-ease); }
.fc-reveal.fc-in { opacity: 1; transform: none; }
/* Staggered entrance for grid items — small, ascending delay per position so
   a row of cards fades/lifts in as a wave rather than all at once. */
.fc-grid > .fc-reveal:nth-child(1), .fc-vehicle-grid > .fc-reveal:nth-child(1) { transition-delay: 0ms; }
.fc-grid > .fc-reveal:nth-child(2), .fc-vehicle-grid > .fc-reveal:nth-child(2) { transition-delay: 60ms; }
.fc-grid > .fc-reveal:nth-child(3), .fc-vehicle-grid > .fc-reveal:nth-child(3) { transition-delay: 120ms; }
.fc-grid > .fc-reveal:nth-child(4), .fc-vehicle-grid > .fc-reveal:nth-child(4) { transition-delay: 180ms; }
.fc-grid > .fc-reveal:nth-child(5), .fc-vehicle-grid > .fc-reveal:nth-child(5) { transition-delay: 240ms; }
.fc-grid > .fc-reveal:nth-child(6), .fc-vehicle-grid > .fc-reveal:nth-child(6) { transition-delay: 300ms; }
.fc-grid > .fc-reveal:nth-child(n+7), .fc-vehicle-grid > .fc-reveal:nth-child(n+7) { transition-delay: 340ms; }

/* Hero entrance — plays automatically on load since hero content sits above
   the fold and would otherwise never trigger the scroll-based reveal. */
@keyframes fc-fade-up { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.fc-hero .fc-eyebrow, .fc-hero h1, .fc-hero .fc-lede, .fc-hero .fc-hero__ctas, .fc-hero .fc-hero__stats {
  animation: fc-fade-up .75s var(--fc-ease) both;
}
.fc-hero .fc-eyebrow { animation-delay: .02s; }
.fc-hero h1 { animation-delay: .09s; }
.fc-hero .fc-lede { animation-delay: .17s; }
.fc-hero .fc-hero__ctas { animation-delay: .25s; }
.fc-hero .fc-hero__stats { animation-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .fc-hero .fc-eyebrow, .fc-hero h1, .fc-hero .fc-lede, .fc-hero .fc-hero__ctas, .fc-hero .fc-hero__stats { animation: none; }
  .fc-reveal { transition-duration: 1ms; }
}

/* -------------------------------------------------------------------------
   5. Buttons
   ------------------------------------------------------------------------- */
.fc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 14px 26px; border-radius: var(--fc-radius-pill);
  font-weight: 800; font-size: .95rem; letter-spacing: .01em; white-space: nowrap;
  border: 1.5px solid transparent; transition: transform var(--fc-t-fast) var(--fc-ease), box-shadow var(--fc-t-fast) var(--fc-ease), background var(--fc-t-fast) var(--fc-ease), color var(--fc-t-fast) var(--fc-ease), border-color var(--fc-t-fast) var(--fc-ease);
}
.fc-btn:hover { transform: translateY(-2px); }
.fc-btn:active { transform: translateY(0); }
.fc-btn--primary { background: linear-gradient(135deg, var(--fc-gold-300), var(--fc-gold-500)); color: var(--fc-on-gold); box-shadow: 0 14px 30px rgba(212,175,55,.28); }
.fc-btn--primary:hover { box-shadow: 0 18px 38px rgba(212,175,55,.4); }
.fc-btn--outline { background: transparent; border-color: var(--fc-gold-solid); color: var(--fc-text); }
.fc-btn--outline:hover { background: rgba(212,175,55,.1); }
.fc-btn--ghost { background: var(--fc-surface); border-color: var(--fc-border); color: var(--fc-text); }
.fc-btn--ghost:hover { border-color: var(--fc-gold-solid); }
.fc-btn--whatsapp { background: #25d366; color: #06280f; }
.fc-btn--whatsapp:hover { box-shadow: 0 14px 30px rgba(37,211,102,.35); }
.fc-btn--sm { min-height: 40px; padding: 8px 18px; font-size: .84rem; }
.fc-btn--block { width: 100%; }
.fc-btn:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.fc-btn-icon { width: 44px; height: 44px; min-height: 0; padding: 0; border-radius: 50%; }

/* -------------------------------------------------------------------------
   6. Header / navigation
   ------------------------------------------------------------------------- */
.fc-header {
  position: sticky; top: 0; z-index: 60; height: var(--fc-header-h);
  display: flex; align-items: center;
  background: color-mix(in srgb, var(--fc-bg) 86%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--fc-border);
  transition: height var(--fc-t-base) var(--fc-ease), background var(--fc-t-base) var(--fc-ease);
}
@media (max-width: 980px) { .fc-header { height: var(--fc-header-h-mobile); } }
.fc-header__inner { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.fc-logo { display: flex; flex-direction: column; line-height: 1; font-family: var(--fc-font-display); }
.fc-logo strong { font-size: 1.32rem; font-weight: 800; color: var(--fc-text); }
.fc-logo strong em { font-style: normal; color: var(--fc-gold-text); }
.fc-logo span { font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; color: var(--fc-text-faint); margin-top: 4px; }

.fc-nav { display: flex; align-items: center; gap: 4px; }
.fc-nav__item { position: relative; }
.fc-nav__link {
  display: flex; align-items: center; gap: 6px; padding: 10px 14px; border-radius: var(--fc-radius-pill);
  font-weight: 700; font-size: .9rem; color: var(--fc-text-dim); transition: color var(--fc-t-fast), background var(--fc-t-fast);
}
.fc-nav__link:hover, .fc-nav__item.fc-open > .fc-nav__link { color: var(--fc-text); background: var(--fc-surface); }
.fc-nav__caret { width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); transition: transform var(--fc-t-fast); margin-top: -3px; }
.fc-nav__item.fc-open .fc-nav__caret { transform: rotate(-135deg); margin-top: 3px; }

.fc-mega {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translate(-50%, 8px);
  width: min(680px, 86vw); background: var(--fc-surface); border: 1px solid var(--fc-border);
  border-radius: var(--fc-radius-md); box-shadow: var(--fc-shadow); padding: 22px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px 20px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--fc-t-base) var(--fc-ease), transform var(--fc-t-base) var(--fc-ease), visibility var(--fc-t-base);
}
.fc-nav__item.fc-open .fc-mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.fc-mega a { display: flex; flex-direction: column; gap: 2px; padding: 10px 12px; border-radius: var(--fc-radius-sm); }
.fc-mega a:hover { background: var(--fc-bg-alt); }
.fc-mega a strong { font-size: .88rem; color: var(--fc-text); }
.fc-mega a small { font-size: .76rem; color: var(--fc-text-faint); }

.fc-header__actions { display: flex; align-items: center; gap: 10px; }
.fc-icon-btn {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: var(--fc-surface); border: 1px solid var(--fc-border); transition: border-color var(--fc-t-fast), transform var(--fc-t-fast);
}
.fc-icon-btn:hover { border-color: var(--fc-gold-solid); transform: translateY(-2px); }

/* Theme toggle */
.fc-theme-toggle { position: relative; width: 58px; height: 32px; border-radius: 999px; background: var(--fc-surface); border: 1px solid var(--fc-border); padding: 3px; }
.fc-theme-toggle__thumb { width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg, var(--fc-gold-300), var(--fc-gold-500)); transition: transform var(--fc-t-base) var(--fc-ease); display: grid; place-items: center; font-size: 12px; }
[data-theme='light'] .fc-theme-toggle__thumb { transform: translateX(26px); }

/* VAT toggle (pill switch with two labels) */
.fc-vat-toggle { display: inline-flex; align-items: center; background: var(--fc-surface); border: 1px solid var(--fc-border); border-radius: var(--fc-radius-pill); padding: 4px; gap: 2px; }
.fc-vat-toggle button { padding: 7px 14px; border-radius: var(--fc-radius-pill); font-size: .78rem; font-weight: 800; color: var(--fc-text-faint); transition: background var(--fc-t-fast), color var(--fc-t-fast); }
.fc-vat-toggle button[aria-pressed='true'] { background: var(--fc-gold-solid); color: var(--fc-on-gold); }

/* Hamburger */
.fc-burger { display: none; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--fc-border); background: var(--fc-surface); position: relative; }
.fc-burger span, .fc-burger span::before, .fc-burger span::after {
  content: ''; position: absolute; left: 12px; right: 12px; height: 2px; background: var(--fc-text); border-radius: 2px; transition: transform var(--fc-t-base) var(--fc-ease), opacity var(--fc-t-fast);
}
.fc-burger span { top: 50%; transform: translateY(-1px); }
.fc-burger span::before { top: -8px; }
.fc-burger span::after { top: 8px; }
.fc-burger[aria-expanded='true'] span { background: transparent; }
.fc-burger[aria-expanded='true'] span::before { top: 0; transform: rotate(45deg); }
.fc-burger[aria-expanded='true'] span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 980px) {
  .fc-nav { display: none; }
  .fc-burger { display: block; }
}

/* Mobile menu overlay — sits above ALL content, closes on route change */
.fc-mobile-menu {
  position: fixed; inset: 0; z-index: 100; visibility: hidden;
}
.fc-mobile-menu__scrim {
  position: absolute; inset: 0; background: var(--fc-scrim); opacity: 0; transition: opacity var(--fc-t-base) var(--fc-ease);
}
.fc-mobile-menu__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(390px, 88vw);
  background: var(--fc-bg); border-left: 1px solid var(--fc-border);
  transform: translateX(100%); transition: transform var(--fc-t-slow) var(--fc-ease);
  display: flex; flex-direction: column; padding: 20px; overflow-y: auto;
  padding-top: max(20px, env(safe-area-inset-top));
  padding-bottom: max(20px, env(safe-area-inset-bottom));
}
.fc-mobile-menu.fc-active { visibility: visible; }
.fc-mobile-menu.fc-active .fc-mobile-menu__scrim { opacity: 1; }
.fc-mobile-menu.fc-active .fc-mobile-menu__panel { transform: translateX(0); }
.fc-mobile-menu__top { display: flex; justify-content: flex-end; margin-bottom: 12px; }
.fc-mobile-menu details { border-bottom: 1px solid var(--fc-border); }
.fc-mobile-menu summary { list-style: none; display: flex; justify-content: space-between; align-items: center; padding: 16px 4px; font-weight: 800; font-size: 1.05rem; font-family: var(--fc-font-display); }
.fc-mobile-menu summary::-webkit-details-marker { display: none; }
.fc-mobile-menu summary::after { content: '+'; font-size: 1.4rem; color: var(--fc-gold-text); }
.fc-mobile-menu details[open] summary::after { content: '–'; }
.fc-mobile-menu .fc-mobile-sub { padding: 0 4px 16px; display: grid; gap: 10px; }
.fc-mobile-menu .fc-mobile-sub a { color: var(--fc-text-dim); font-weight: 600; }
.fc-mobile-menu .fc-mobile-sub--controls { gap: 16px; }
.fc-mobile-toggle-row { display: flex; align-items: center; justify-content: space-between; font-weight: 700; font-size: .85rem; color: var(--fc-text-dim); }
.fc-mobile-menu__toolbar { display: flex; justify-content: space-between; align-items: center; padding: 18px 4px; margin-top: auto; gap: 12px; }
.fc-mobile-menu__cta { display: grid; gap: 10px; padding: 14px 4px 4px; }

/* -------------------------------------------------------------------------
   7. Footer
   ------------------------------------------------------------------------- */
.fc-footer { background: var(--fc-black-950); color: var(--fc-ivory); border-top: 1px solid var(--fc-line-dark); padding-block: 64px 28px; }
[data-theme='light'] .fc-footer { background: #0e0d0b; }
.fc-footer a { color: #cfcdc4; }
.fc-footer a:hover { color: var(--fc-gold-500); }
.fc-footer__top { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr) 1.4fr; gap: 32px; padding-bottom: 44px; }
@media (max-width: 1180px) { .fc-footer__top { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 780px) { .fc-footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .fc-footer__top { grid-template-columns: 1fr; } }
.fc-footer h4 { color: var(--fc-gold-500); font-family: var(--fc-font-body); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.fc-footer li { margin-bottom: 10px; font-size: .89rem; }
.fc-footer__brand p { color: #b7b4aa; font-size: .89rem; max-width: 34ch; margin-top: 12px; }
.fc-footer__social { display: flex; gap: 10px; margin-top: 18px; }
.fc-footer__social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid #2a2a30; display: grid; place-items: center; }
.fc-footer__legal { border-top: 1px solid #201f1c; padding-top: 26px; display: flex; flex-wrap: wrap; gap: 14px 24px; justify-content: space-between; align-items: center; font-size: .78rem; color: #8b887f; }
.fc-footer__legal-links { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.fc-footer__disclaimer { font-size: .74rem; color: #716e64; line-height: 1.7; margin-top: 22px; max-width: 100ch; }
.fc-footer__credit { display: flex; gap: 6px; align-items: center; }

/* Mailchimp embed — restyle to fit theme without breaking Mailchimp JS hooks */
#mc_embed_signup { background: transparent !important; width: 100% !important; max-width: 420px; font-family: var(--fc-font-body) !important; }
#mc_embed_signup h2 { font-family: var(--fc-font-display); font-size: 1.2rem; color: var(--fc-ivory); }
#mc_embed_signup .indicates-required, #mc_embed_signup label, #mc_embed_signup p { color: #b7b4aa !important; font-size: .82rem !important; }
#mc_embed_signup input[type='email'] {
  width: 100%; padding: 12px 14px; border-radius: var(--fc-radius-sm); border: 1px solid #2a2a30; background: #141416; color: #fff; margin: 8px 0;
}
#mc_embed_signup .button {
  background: linear-gradient(135deg, var(--fc-gold-300), var(--fc-gold-500)) !important; color: #0a0a0c !important;
  border-radius: 999px !important; font-weight: 800 !important; padding: 12px 22px !important; border: 0 !important;
}

/* -------------------------------------------------------------------------
   8. Cookie banner
   ------------------------------------------------------------------------- */
.fc-cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90; max-width: 560px; margin-inline: auto;
  background: var(--fc-surface); border: 1px solid var(--fc-border); border-radius: var(--fc-radius-lg);
  box-shadow: var(--fc-shadow); padding: 22px; transform: translateY(140%); transition: transform var(--fc-t-slow) var(--fc-ease);
}
.fc-cookie.fc-active { transform: translateY(0); }
.fc-cookie p { font-size: .84rem; color: var(--fc-text-dim); margin-bottom: 14px; }
.fc-cookie__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* -------------------------------------------------------------------------
   9. Sticky mobile Enquire/WhatsApp bar
   ------------------------------------------------------------------------- */
.fc-mobile-cta-bar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  padding: 10px 12px max(10px, env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--fc-bg) 92%, transparent); backdrop-filter: blur(10px);
  border-top: 1px solid var(--fc-border); gap: 10px;
}
@media (max-width: 720px) { .fc-mobile-cta-bar { display: flex; } body { padding-bottom: 74px; } }
.fc-mobile-cta-bar .fc-btn { flex: 1; min-height: 46px; padding: 10px 8px; font-size: .74rem; gap: 5px; }
@media (max-width: 360px) { .fc-mobile-cta-bar .fc-btn { font-size: .68rem; padding: 10px 4px; } }

/* -------------------------------------------------------------------------
   10. Buttons row / basket bubble
   ------------------------------------------------------------------------- */
.fc-basket-fab {
  position: fixed; right: 20px; bottom: 96px; z-index: 65;
  display: none; align-items: center; gap: 10px; padding: 12px 20px 12px 14px;
  background: var(--fc-gold-solid); color: var(--fc-on-gold); border-radius: var(--fc-radius-pill);
  box-shadow: 0 16px 34px rgba(212,175,55,.4); font-weight: 800; transform: translateY(12px); opacity: 0;
  transition: transform var(--fc-t-base) var(--fc-ease), opacity var(--fc-t-base) var(--fc-ease);
}
.fc-basket-fab.fc-visible { display: inline-flex; transform: none; opacity: 1; }
@media (max-width: 720px) { .fc-basket-fab { bottom: 86px; right: 14px; } }
.fc-basket-fab__count { background: var(--fc-on-gold); color: var(--fc-gold-solid); width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; font-size: .78rem; }

.fc-basket-drawer {
  position: fixed; inset: 0; z-index: 110; visibility: hidden;
}
.fc-basket-drawer.fc-active { visibility: visible; }
.fc-basket-drawer__scrim { position: absolute; inset: 0; background: var(--fc-scrim); opacity: 0; transition: opacity var(--fc-t-base); }
.fc-basket-drawer.fc-active .fc-basket-drawer__scrim { opacity: 1; }
.fc-basket-drawer__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(460px, 92vw); background: var(--fc-bg);
  border-left: 1px solid var(--fc-border); transform: translateX(100%); transition: transform var(--fc-t-slow) var(--fc-ease);
  display: flex; flex-direction: column; padding: 22px; overflow-y: auto;
}
.fc-basket-drawer.fc-active .fc-basket-drawer__panel { transform: translateX(0); }
.fc-basket-item { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--fc-border); }
.fc-basket-item img { width: 84px; height: 60px; object-fit: contain; background: var(--fc-image-well); border-radius: var(--fc-radius-sm); }
.fc-basket-item__meta { flex: 1; min-width: 0; }
.fc-basket-item__meta strong { display: block; font-size: .9rem; }
.fc-basket-item__meta span { font-size: .78rem; color: var(--fc-text-faint); }
.fc-basket-item__remove { color: var(--fc-danger); font-size: .78rem; font-weight: 700; }

/* -------------------------------------------------------------------------
   11. Hero
   ------------------------------------------------------------------------- */
.fc-hero { position: relative; padding-block: clamp(70px, 12vw, 150px) clamp(50px, 8vw, 90px); overflow: hidden; }
.fc-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 60% at 85% 0%, rgba(212,175,55,.16), transparent 60%),
    radial-gradient(50% 50% at 5% 100%, rgba(212,175,55,.08), transparent 60%);
}
.fc-hero__inner { position: relative; z-index: 1; }
.fc-hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
@media (max-width: 900px) { .fc-hero__grid { grid-template-columns: 1fr; } }
.fc-hero h1 { margin-block: 18px 20px; }
.fc-hero h1 em { font-style: italic; color: var(--fc-gold-text); }
.fc-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.fc-hero__stats { display: flex; gap: 28px; margin-top: 40px; flex-wrap: wrap; }
.fc-hero__stats div strong { display: block; font-family: var(--fc-font-display); font-size: 1.6rem; color: var(--fc-gold-text); }
.fc-hero__stats div span { font-size: .78rem; color: var(--fc-text-faint); }
.fc-hero__art { position: relative; border-radius: var(--fc-radius-lg); overflow: hidden; aspect-ratio: 4/5; background: var(--fc-surface); border: 1px solid var(--fc-border); }
.fc-hero__art img { width: 100%; height: 100%; object-fit: cover; }

/* -------------------------------------------------------------------------
   12. Cards
   ------------------------------------------------------------------------- */
.fc-card {
  background: var(--fc-surface); border: 1px solid var(--fc-border); border-radius: var(--fc-radius-lg);
  padding: 26px; transition: transform var(--fc-t-base) var(--fc-ease), border-color var(--fc-t-base), box-shadow var(--fc-t-base);
}
.fc-card:hover { transform: translateY(-4px); border-color: rgba(212,175,55,.4); box-shadow: var(--fc-shadow-sm); }
.fc-card__icon { width: 52px; height: 52px; border-radius: var(--fc-radius-sm); background: rgba(212,175,55,.12); display: grid; place-items: center; color: var(--fc-gold-text); margin-bottom: 18px; }
.fc-card h3 { margin-bottom: 8px; }
.fc-card p { color: var(--fc-text-dim); font-size: .92rem; }
.fc-card--link { display: block; }

.fc-pillar-card { position: relative; border-radius: var(--fc-radius-lg); overflow: hidden; aspect-ratio: 4/5; border: 1px solid var(--fc-border); }
.fc-pillar-card--noimg { background: radial-gradient(120% 120% at 100% 0%, rgba(212,175,55,.22), transparent 55%), linear-gradient(155deg, var(--fc-black-700), var(--fc-black-950)); display: flex; align-items: flex-end; transition: transform var(--fc-t-base) var(--fc-ease), border-color var(--fc-t-base); }
.fc-pillar-card--noimg:hover { transform: translateY(-4px); border-color: rgba(212,175,55,.5); }
.fc-pillar-card--noimg .fc-pillar-card__body { position: static; background: none; padding: 26px; }
.fc-pillar-card img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--fc-t-slow) var(--fc-ease); }
.fc-pillar-card:hover img { transform: scale(1.06); }
.fc-pillar-card__body { position: absolute; inset: auto 0 0 0; padding: 22px; background: linear-gradient(0deg, rgba(0,0,0,.86), transparent); color: #fff; }
.fc-pillar-card__body span { color: var(--fc-gold-500); font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.fc-pillar-card__body h3 { color: #fff; margin-top: 6px; }

/* -------------------------------------------------------------------------
   13. Badges / chips
   ------------------------------------------------------------------------- */
.fc-badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: var(--fc-radius-pill); font-size: .72rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.fc-badge--gold { background: rgba(212,175,55,.15); color: var(--fc-gold-text); border: 1px solid rgba(212,175,55,.35); }
.fc-badge--stock { background: rgba(47,158,99,.15); color: var(--fc-success); border: 1px solid rgba(47,158,99,.35); }
.fc-badge--limited { background: rgba(217,72,63,.12); color: var(--fc-danger); border: 1px solid rgba(217,72,63,.3); }
.fc-badge--dark { background: rgba(0,0,0,.55); color: #fff; border: 1px solid rgba(255,255,255,.18); }
.fc-chip {
  padding: 8px 14px; border-radius: var(--fc-radius-pill); border: 1px solid var(--fc-border); background: var(--fc-surface);
  font-size: .82rem; font-weight: 700; color: var(--fc-text-dim); transition: all var(--fc-t-fast);
}
.fc-chip[aria-pressed='true'] { background: var(--fc-gold-solid); border-color: var(--fc-gold-solid); color: var(--fc-on-gold); }

/* -------------------------------------------------------------------------
   14. Vehicle catalogue
   ------------------------------------------------------------------------- */
.fc-catalogue { display: grid; grid-template-columns: 300px 1fr; gap: 32px; align-items: start; }
@media (max-width: 980px) { .fc-catalogue { grid-template-columns: 1fr; } }

.fc-catalogue__vat-bar {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 12px;
  font-size: .82rem; font-weight: 700; color: var(--fc-text-dim);
  margin-bottom: 4px;
}

.fc-filters { position: sticky; top: calc(var(--fc-header-h) + 20px); background: var(--fc-surface); border: 1px solid var(--fc-border); border-radius: var(--fc-radius-lg); padding: 22px; max-height: calc(100vh - var(--fc-header-h) - 40px); overflow-y: auto; }
@media (max-width: 980px) { .fc-filters { position: fixed; inset: 0 0 0 auto; top: 0; height: 100%; width: min(400px, 92vw); z-index: 998; border-radius: 0; max-height: none; transform: translateX(100%); transition: transform var(--fc-t-slow) var(--fc-ease); } .fc-filters.fc-active { transform: translateX(0); } }
.fc-filters__scrim { display: none; }
@media (max-width: 980px) { .fc-filters__scrim { display: block; position: fixed; inset: 0; background: var(--fc-scrim); z-index: 997; opacity: 0; visibility: hidden; transition: opacity var(--fc-t-base); } .fc-filters__scrim.fc-active { opacity: 1; visibility: visible; } }

/* The open/close affordances only make sense for the mobile slide-in drawer —
   on desktop the filters sidebar is permanently visible (sticky column), so
   these buttons are hidden there to avoid a "Close" button that does nothing. */
[data-filters-open], [data-filters-close] { display: none; }
@media (max-width: 980px) { [data-filters-open], [data-filters-close] { display: inline-flex; } }

.fc-filter-group { border-bottom: 1px solid var(--fc-border); padding-bottom: 16px; margin-bottom: 16px; }
.fc-filter-group summary { list-style: none; display: flex; justify-content: space-between; cursor: pointer; font-weight: 800; font-size: .88rem; padding: 4px 0; }
.fc-filter-group summary::-webkit-details-marker { display: none; }
.fc-filter-group summary::after { content: '⌄'; color: var(--fc-gold-text); font-size: 1.1rem; transition: transform var(--fc-t-fast); }
.fc-filter-group[open] summary::after { transform: rotate(180deg); }
.fc-filter-group__body { padding-top: 12px; display: grid; gap: 8px; }
.fc-filter-option { display: flex; align-items: center; gap: 10px; font-size: .86rem; color: var(--fc-text-dim); padding: 4px 0; }
.fc-filter-option input[type='checkbox'] { width: 18px; height: 18px; accent-color: var(--fc-gold-solid); }
.fc-filter-option small { margin-left: auto; color: var(--fc-text-faint); }
.fc-filter-search { width: 100%; padding: 10px 12px; border-radius: var(--fc-radius-sm); background: var(--fc-bg-alt); border: 1px solid var(--fc-border); margin-bottom: 12px; font-size: .86rem; }

.fc-range { padding-top: 6px; }
.fc-range__values { display: flex; justify-content: space-between; font-size: .8rem; color: var(--fc-gold-text); font-weight: 700; margin-bottom: 8px; }
.fc-range input[type='range'] {
  width: 100%; appearance: none; height: 4px; background: var(--fc-border); border-radius: 4px; margin: 10px 0;
}
.fc-range input[type='range']::-webkit-slider-thumb { appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--fc-gold-solid); border: 3px solid var(--fc-bg); box-shadow: 0 0 0 1px var(--fc-gold-solid); cursor: pointer; }
.fc-range input[type='range']::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: var(--fc-gold-solid); border: 3px solid var(--fc-bg); cursor: pointer; }

.fc-toolbar { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.fc-toolbar__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.fc-results-count { font-size: .86rem; color: var(--fc-text-faint); }
.fc-sort select { padding: 10px 14px; border-radius: var(--fc-radius-pill); background: var(--fc-surface); border: 1px solid var(--fc-border); font-size: .84rem; font-weight: 700; }

.fc-vehicle-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; align-items: stretch; }
.fc-vehicle-card {
  /* Off-white "showroom card" styling, held constant across both dark and bright
     site themes — vehicle photography is always shot on a plain white backdrop,
     so the card body stays a consistent cream regardless of the page theme. */
  --fc-surface: var(--fc-image-well);
  --fc-bg-alt: #eae7db;
  --fc-border: #ded9c9;
  --fc-text: #17160f;
  --fc-text-dim: #4d4b42;
  --fc-text-faint: #78766c;
  --fc-gold-text: var(--fc-gold-700);
  --fc-on-gold: #17160f;
  background: var(--fc-surface); color: var(--fc-text);
  border: 1px solid var(--fc-border); border-radius: var(--fc-radius-lg); overflow: hidden;
  display: flex; flex-direction: column; height: 100%;
  transition: transform var(--fc-t-base) var(--fc-ease), border-color var(--fc-t-base), box-shadow var(--fc-t-base) var(--fc-ease);
  position: relative;
}
.fc-vehicle-card:hover { transform: translateY(-5px); border-color: rgba(212,175,55,.5); box-shadow: 0 18px 40px rgba(20,18,10,.18); }
.fc-vehicle-card__media { position: relative; aspect-ratio: 16/10; background: var(--fc-image-well); overflow: hidden; }
.fc-vehicle-card__media img { width: 100%; height: 100%; object-fit: contain; padding: 14px; transition: transform var(--fc-t-slow) var(--fc-ease); }
.fc-vehicle-card:hover .fc-vehicle-card__media img { transform: scale(1.06); }
.fc-vehicle-card__badges { position: absolute; top: 12px; left: 12px; z-index: 2; display: flex; gap: 6px; flex-wrap: wrap; }
.fc-vehicle-card__tick { position: absolute; top: 12px; right: 12px; z-index: 2; width: 32px; height: 32px; border-radius: 50%; background: rgba(0,0,0,.55); border: 1.5px solid rgba(255,255,255,.5); display: grid; place-items: center; color: #fff; cursor: pointer; transition: all var(--fc-t-fast); }
.fc-vehicle-card__tick[aria-pressed='true'] { background: var(--fc-gold-solid); border-color: var(--fc-gold-solid); color: var(--fc-on-gold); }
.fc-vehicle-card__body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; color: var(--fc-text); }
.fc-vehicle-card__make { font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--fc-gold-text); }
.fc-vehicle-card__title { font-family: var(--fc-font-display); font-size: 1.08rem; font-weight: 700; line-height: 1.25; color: var(--fc-text); }
.fc-vehicle-card__specs { display: flex; flex-wrap: wrap; gap: 6px 10px; font-size: .76rem; color: var(--fc-text-faint); }
.fc-vehicle-card__specs span { display: flex; align-items: center; gap: 4px; }
.fc-vehicle-card__contract-badge { display: inline-flex; align-self: flex-start; padding: 4px 10px; border-radius: var(--fc-radius-pill); font-size: .68rem; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; background: rgba(23,22,15,.07); color: var(--fc-text-dim); border: 1px solid var(--fc-border); }
.fc-vehicle-card__option { width: 100%; padding: 11px 12px; border-radius: var(--fc-radius-sm); background: var(--fc-bg-alt); border: 1px solid var(--fc-border); font-size: .82rem; font-weight: 700; color: var(--fc-text); }
.fc-vehicle-card__price-block { margin-top: auto; padding-top: 4px; display: flex; flex-direction: column; gap: 10px; }
.fc-vehicle-card__price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.fc-vehicle-card__price strong { font-family: var(--fc-font-display); font-size: 1.5rem; color: var(--fc-text); }
.fc-vehicle-card__price span { font-size: .76rem; color: var(--fc-text-faint); }
.fc-vehicle-card__line { font-size: .78rem; color: var(--fc-text-dim); }
.fc-vehicle-card__qualify { font-size: .74rem; color: var(--fc-text-dim); font-weight: 600; }
.fc-vehicle-card__actions { display: flex; gap: 8px; }
.fc-vehicle-card__actions .fc-btn { flex: 1; }
.fc-vehicle-card__actions [data-whatsapp-btn] { display: none; }
@media (max-width: 720px) { .fc-vehicle-card__actions [data-whatsapp-btn] { display: inline-flex; } }
.fc-vehicle-card__deal { text-align: center; font-size: .78rem; font-weight: 700; color: var(--fc-gold-text); text-decoration: underline; text-underline-offset: 3px; }

.fc-empty-state { text-align: center; padding: 60px 20px; color: var(--fc-text-faint); }

.fc-map-embed { position: relative; width: 100%; height: 380px; border-radius: var(--fc-radius-lg); overflow: hidden; border: 1px solid var(--fc-border); }
.fc-skeleton { background: linear-gradient(100deg, var(--fc-surface) 30%, var(--fc-surface-raised) 50%, var(--fc-surface) 70%); background-size: 200% 100%; animation: fc-shimmer 1.3s infinite; border-radius: var(--fc-radius-lg); height: 380px; }
@keyframes fc-shimmer { to { background-position-x: -200%; } }

/* -------------------------------------------------------------------------
   15. FAQ accordion
   ------------------------------------------------------------------------- */
.fc-faq { max-width: 880px; }
.fc-faq details { border-bottom: 1px solid var(--fc-border); padding: 6px 0; }
.fc-faq summary { list-style: none; display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 18px 4px; font-weight: 700; font-size: 1.02rem; }
.fc-faq summary::-webkit-details-marker { display: none; }
.fc-faq summary::after { content: '+'; font-size: 1.5rem; color: var(--fc-gold-text); flex-shrink: 0; transition: transform var(--fc-t-fast); }
.fc-faq details[open] summary::after { transform: rotate(45deg); }
.fc-faq__a { padding: 0 4px 20px; color: var(--fc-text-dim); font-size: .94rem; max-width: 70ch; }

/* -------------------------------------------------------------------------
   16. Forms (enquiry / contact / insurance reg lookup)
   ------------------------------------------------------------------------- */
.fc-form { display: grid; gap: 16px; }
.fc-field { display: grid; gap: 6px; }
.fc-field label { font-size: .82rem; font-weight: 700; color: var(--fc-text-dim); }
.fc-field input, .fc-field select, .fc-field textarea {
  padding: 13px 14px; border-radius: var(--fc-radius-sm); background: var(--fc-bg-alt); border: 1px solid var(--fc-border); color: var(--fc-text); font-size: .94rem;
  transition: border-color var(--fc-t-fast);
}
.fc-field input:focus, .fc-field select:focus, .fc-field textarea:focus { border-color: var(--fc-gold-solid); }
.fc-field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .fc-field--row { grid-template-columns: 1fr; } }
.fc-form__note { font-size: .78rem; color: var(--fc-text-faint); }
.fc-form__success { padding: 18px; border-radius: var(--fc-radius-md); background: rgba(47,158,99,.12); border: 1px solid rgba(47,158,99,.35); color: var(--fc-success); font-weight: 700; }
.fc-form__error { padding: 18px; border-radius: var(--fc-radius-md); background: rgba(217,72,63,.1); border: 1px solid rgba(217,72,63,.3); color: var(--fc-danger); font-weight: 700; }

.fc-reg-lookup { display: flex; gap: 10px; max-width: 460px; }
.fc-reg-lookup input {
  flex: 1; padding: 14px 16px; border-radius: var(--fc-radius-sm); border: 3px solid #ffce00; background: #ffce00; color: #16150f;
  font-weight: 800; letter-spacing: .06em; text-transform: uppercase; text-align: center; font-size: 1.05rem;
}
.fc-reg-lookup input::placeholder { color: #6b5c00; }

/* -------------------------------------------------------------------------
   17. Misc: stats, testimonials, brand strip, table (price list)
   ------------------------------------------------------------------------- */
.fc-brand-strip { display: flex; flex-wrap: wrap; gap: 28px; align-items: center; justify-content: center; }
.fc-brand-strip img { height: 34px; width: auto; object-fit: contain; opacity: .82; filter: var(--fc-logo-filter, none); transition: opacity var(--fc-t-fast), transform var(--fc-t-fast); }
[data-theme='dark'] .fc-brand-strip img, :root:not([data-theme='light']) .fc-brand-strip img { filter: invert(1) brightness(1.5); }
.fc-brand-strip img:hover { opacity: 1; transform: translateY(-2px); }

.fc-stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
@media (max-width: 780px) { .fc-stat-strip { grid-template-columns: repeat(2, 1fr); } }
.fc-stat-strip strong { display: block; font-family: var(--fc-font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--fc-gold-text); }
.fc-stat-strip span { font-size: .8rem; color: var(--fc-text-faint); }

.fc-quote-card { padding: 30px; border-radius: var(--fc-radius-lg); background: var(--fc-surface); border: 1px solid var(--fc-border); }
.fc-quote-card p { font-family: var(--fc-font-display); font-size: 1.2rem; font-style: italic; color: var(--fc-text); }
.fc-quote-card footer { margin-top: 16px; font-size: .82rem; color: var(--fc-text-faint); }

.fc-table-wrap { overflow-x: auto; border: 1px solid var(--fc-border); border-radius: var(--fc-radius-md); }
.fc-table { min-width: 900px; }
.fc-table th, .fc-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--fc-border); font-size: .86rem; white-space: nowrap; }
.fc-table th { background: var(--fc-surface); color: var(--fc-gold-text); font-size: .74rem; text-transform: uppercase; letter-spacing: .06em; position: sticky; top: 0; }
.fc-table tr:hover td { background: var(--fc-surface); }

.fc-breadcrumbs { font-size: .8rem; color: var(--fc-text-faint); display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.fc-breadcrumbs a { color: var(--fc-text-faint); }
.fc-breadcrumbs a:hover { color: var(--fc-gold-text); }

.fc-news-card { display: flex; flex-direction: column; border-radius: var(--fc-radius-lg); overflow: hidden; background: var(--fc-surface); border: 1px solid var(--fc-border); }
.fc-news-card__img { aspect-ratio: 16/10; background: var(--fc-surface-raised); overflow: hidden; }
.fc-news-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--fc-t-slow); }
.fc-news-card:hover .fc-news-card__img img { transform: scale(1.05); }
.fc-news-card__body { padding: 18px; display: grid; gap: 8px; }
.fc-news-card time { font-size: .74rem; color: var(--fc-text-faint); text-transform: uppercase; letter-spacing: .05em; }

.fc-404 { min-height: 60vh; display: grid; place-items: center; text-align: center; }
.fc-404 .fc-eyebrow { justify-content: center; }
.fc-404 .fc-eyebrow::before { display: none; }

.fc-sitemap-list { columns: 3; gap: 30px; }
@media (max-width: 900px) { .fc-sitemap-list { columns: 2; } }
@media (max-width: 600px) { .fc-sitemap-list { columns: 1; } }
.fc-sitemap-list li { break-inside: avoid; margin-bottom: 10px; }
.fc-sitemap-list h3 { margin: 22px 0 10px; break-after: avoid; color: var(--fc-gold-text); font-size: 1rem; }

.fc-noscript-banner { background: var(--fc-danger); color: #fff; text-align: center; padding: 12px; font-size: .86rem; }

/* -------------------------------------------------------------------------
   18. Vehicle Finder widget
   ------------------------------------------------------------------------- */
.fc-finder-wrap { border-radius: var(--fc-radius-lg); overflow: hidden; border: 1px solid var(--fc-border); background: var(--fc-surface); box-shadow: var(--fc-shadow); }
.fc-finder__progress-wrap { padding: 22px 28px 0; }
.fc-finder__meta { display: flex; justify-content: space-between; font-size: .78rem; font-weight: 700; color: var(--fc-text-faint); margin-bottom: 8px; }
.fc-finder__bar { height: 6px; border-radius: 999px; background: var(--fc-bg-alt); overflow: hidden; }
.fc-finder__bar-fill { width: 0; height: 100%; background: linear-gradient(90deg, var(--fc-gold-300), var(--fc-gold-500)); transition: width var(--fc-t-base) var(--fc-ease); }
.fc-finder__content { min-height: 340px; padding: 26px 28px; animation: fc-fade .25s ease; }
@keyframes fc-fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.fc-finder__question { margin-bottom: 8px; font-size: clamp(1.3rem, 2.6vw, 1.7rem); }
.fc-finder__help { color: var(--fc-text-faint); margin-bottom: 20px; font-size: .92rem; }
.fc-finder__options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.fc-finder__options--three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 640px) { .fc-finder__options, .fc-finder__options--three { grid-template-columns: 1fr; } }
.fc-finder__option { position: relative; text-align: left; padding: 16px; min-height: 88px; border-radius: var(--fc-radius-md); border: 2px solid var(--fc-border); background: var(--fc-bg-alt); transition: all var(--fc-t-fast); }
.fc-finder__option:hover { border-color: var(--fc-gold-solid); transform: translateY(-2px); }
.fc-finder__option[aria-pressed='true'] { border-color: var(--fc-gold-solid); background: rgba(212,175,55,.1); box-shadow: 0 0 0 3px rgba(212,175,55,.15); }
.fc-finder__option-icon { display: block; font-size: 1.5rem; margin-bottom: 6px; }
.fc-finder__option-title { display: block; font-weight: 800; color: var(--fc-text); }
.fc-finder__option-copy { display: block; margin-top: 4px; font-size: .82rem; color: var(--fc-text-faint); }
.fc-finder__actions { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 18px 28px; border-top: 1px solid var(--fc-border); }
.fc-finder__actions--hidden { display: none; }
.fc-finder__actions-right { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.fc-finder__result-intro { padding: 16px 18px; border-left: 4px solid var(--fc-gold-solid); border-radius: 8px; background: var(--fc-bg-alt); margin-bottom: 20px; font-size: .92rem; color: var(--fc-text-dim); }
.fc-finder__result-card { padding: 26px; border-radius: var(--fc-radius-md); background: linear-gradient(135deg, var(--fc-black-900), var(--fc-black-700)); text-align: center; margin-bottom: 18px; }
.fc-finder__result-card h3 { color: #fff; margin: 10px 0; }
.fc-finder__result-card p { color: #cfcdc4; }
.fc-finder__chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0 0 20px; padding: 0; justify-content: center; }
.fc-finder__chips li { padding: 6px 12px; border-radius: 999px; background: var(--fc-bg-alt); border: 1px solid var(--fc-border); font-size: .78rem; font-weight: 700; }
.fc-finder__result-actions { display: flex; justify-content: center; gap: 18px; margin-top: 14px; }
