 /* ── Tokens ── */
    :root {
      --slate:    #2558c4;
      --slate-lt: #2d6ad8;
      --slate-dk: #1a3f9a;
      --amber:    #e8900a;
      --amber-lt: #f5a83c;
      --amber-dk: #c17600;
      --sand:     #eef4ff;
      --sand-dk:  #dce8ff;
      --white:    #ffffff;
      --ink:      #173270;
      --muted:    #6080a0;
      --border-d: rgba(255,255,255,.12);
      --border-l: #bdd2f0;
      --display:  'Bebas Neue', sans-serif;
      --body:     'Inter', sans-serif;
      --r:        10px;
      --r-sm:     6px;
      --shadow:   0 8px 32px rgba(26,63,154,.16);
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: var(--body); color: var(--ink); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }

    /* ── Nav ── */
    .site-nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 300;
      padding: 0 40px;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(28,43,58,.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-d);
      transition: background .3s;
    }
    .nav-logo {
      font-family: var(--display);
      font-size: 1.8rem;
      letter-spacing: .08em;
      color: var(--white);
      line-height: 1;
    }
    .nav-logo span { color: var(--amber); }
    .nav-links { display: flex; align-items: center; gap: 4px; }
    .nav-link { padding: 8px 14px; font-size: .88rem; font-weight: 500; color: rgba(255,255,255,.7); border-radius: var(--r-sm); transition: color .15s, background .15s; }
    .nav-link:hover { color: var(--white); background: rgba(255,255,255,.08); }
    .nav-cta { background: var(--amber); color: var(--white); font-weight: 700; font-size: .88rem; padding: 10px 22px; border-radius: var(--r-sm); margin-left: 12px; transition: background .15s; }
    .nav-cta:hover { background: var(--amber-lt); }
    .nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
    .nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

    /* ── Helpers ── */
    .container { max-width: 1200px; margin: 0 auto; }
    .section { padding: 100px 40px; }
    .section-sand { background: var(--sand); }
    .section-slate { background: var(--slate); }
    .section-slate-lt { background: var(--slate-lt); }
    .eyebrow { font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--amber); margin-bottom: 12px; }
    .eyebrow-light { color: var(--amber-lt); }
    h1.display, h2.display { font-family: var(--display); font-size: clamp(2.4rem, 4.5vw, 3.6rem); letter-spacing: .03em; line-height: 1.0; margin-bottom: 18px; }
    h1.display em, h2.display em { color: var(--amber); font-style: normal; }
    h1.display-white, h2.display-white { color: var(--white); }
    .lead { font-size: 1.02rem; max-width: 560px; line-height: 1.72; }
    .lead-muted { color: var(--muted); }
    .lead-dim { color: rgba(255,255,255,.62); }
    .section-header { margin-bottom: 56px; }
    .section-header.center { text-align: center; }
    .section-header.center .lead { margin: 0 auto; }

    .btn { display: inline-block; font-weight: 700; font-size: .94rem; padding: 15px 30px; border-radius: var(--r-sm); transition: all .15s; }
    .btn-amber { background: var(--amber); color: var(--white); }
    .btn-amber:hover { background: var(--amber-lt); transform: translateY(-1px); }
    .btn-outline-white { border: 2px solid rgba(255,255,255,.45); color: var(--white); }
    .btn-outline-white:hover { border-color: var(--white); }
    .btn-outline-dark { border: 2px solid var(--slate); color: var(--slate); }
    .btn-outline-dark:hover { background: var(--slate); color: var(--white); }

    /* ── Hero ── */
    .hero {
      background: var(--slate-dk);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 120px 40px 80px;
      position: relative;
      overflow: hidden;
    }
    /* Road horizon line */
    .hero::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 120px;
      background: linear-gradient(to top, rgba(26,95,212,.1), transparent);
      pointer-events: none;
    }
    /* Stars */
    .hero-stars {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }
    .star {
      position: absolute;
      background: var(--white);
      border-radius: 50%;
      animation: twinkle 3s ease-in-out infinite;
    }
    @keyframes twinkle {
      0%, 100% { opacity: .4; }
      50% { opacity: 1; }
    }
    .hero-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      position: relative;
      z-index: 2;
    }
    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(26,95,212,.18);
      border: 1px solid rgba(58,124,232,.4);
      color: var(--amber-lt);
      font-size: .74rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 100px;
      margin-bottom: 24px;
    }
    .hero-tag::before { content: ''; width: 6px; height: 6px; background: var(--amber); border-radius: 50%; }
    .hero h1 {
      font-family: var(--display);
      font-size: clamp(3.2rem, 6vw, 5.6rem);
      color: var(--white);
      line-height: .98;
      letter-spacing: .02em;
      margin-bottom: 24px;
    }
    .hero h1 em { color: var(--amber); font-style: normal; display: block; }
    .hero-desc { color: rgba(255,255,255,.68); font-size: 1.05rem; line-height: 1.72; margin-bottom: 36px; max-width: 440px; }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
    .hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
    .hero-stat { }
    .hero-stat-num { font-family: var(--display); font-size: 2.2rem; color: var(--amber); line-height: 1; }
    .hero-stat-lbl { font-size: .76rem; color: rgba(255,255,255,.5); margin-top: 2px; }

    /* Van illustration wrapper */
    .hero-van {
      display: flex;
      align-items: flex-end;
      justify-content: center;
      padding-bottom: 20px;
    }

    /* ── About / tagline ── */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .about-text p { color: var(--muted); font-size: .98rem; line-height: 1.75; margin-bottom: 18px; }
    .about-text p:last-of-type { margin-bottom: 28px; }
    .about-check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; margin: 24px 0 32px; }
    .about-check { display: flex; align-items: center; gap: 10px; font-size: .9rem; font-weight: 500; color: var(--ink); }
    .about-check::before { content: ''; width: 20px; height: 20px; flex-shrink: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='10' fill='%23e8900a'/%3E%3Cpath d='M6 10l3 3 5-5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-size: cover; }
    /* About visual panel */
    .about-visual {
      background: var(--slate);
      border-radius: 16px;
      padding: 48px 40px;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    .build-step-mini {
      display: flex;
      align-items: center;
      gap: 18px;
    }
    .bsm-num {
      font-family: var(--display);
      font-size: 2.4rem;
      color: var(--amber);
      opacity: .35;
      line-height: 1;
      width: 44px;
      flex-shrink: 0;
    }
    .bsm-content h5 { font-family: var(--display); font-size: 1.1rem; color: var(--white); letter-spacing: .05em; margin-bottom: 3px; }
    .bsm-content p { font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.5; }
    .bsm-divider { border: none; border-top: 1px solid var(--border-d); }

    /* ── Process ── */
    .process-steps {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
      position: relative;
    }
    .process-steps::before {
      content: '';
      position: absolute;
      top: 32px;
      left: 10%;
      right: 10%;
      height: 2px;
      background: linear-gradient(90deg, var(--amber) 0%, var(--amber-lt) 100%);
      opacity: .25;
    }
    .process-step { padding: 0 16px; text-align: center; position: relative; z-index: 1; }
    .ps-icon {
      width: 64px;
      height: 64px;
      background: var(--slate-lt);
      border: 2px solid var(--border-d);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      transition: border-color .2s, background .2s;
    }
    .process-step:hover .ps-icon { border-color: var(--amber); background: rgba(232,144,10,.12); }
    .ps-icon svg { width: 26px; height: 26px; }
    .ps-num { font-family: var(--display); font-size: .85rem; color: var(--amber); letter-spacing: .1em; margin-bottom: 6px; }
    .ps-title { font-family: var(--display); font-size: 1.15rem; color: var(--white); letter-spacing: .04em; margin-bottom: 8px; }
    .ps-desc { font-size: .82rem; color: rgba(255,255,255,.52); line-height: 1.55; }

    /* ── Builds showcase ── */
    .builds-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .build-card {
      background: var(--white);
      border: 1px solid var(--border-l);
      border-radius: 14px;
      overflow: hidden;
      transition: box-shadow .2s, transform .18s;
    }
    .build-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
    .build-card.large-card {
      grid-column: span 2;
    }
    .build-visual {
      background: var(--slate);
      height: 220px;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      padding: 0 0 16px;
      position: relative;
      overflow: hidden;
    }
    .build-card.large-card .build-visual { height: 260px; }
    .build-visual-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 80%, rgba(26,95,212,.15) 0%, transparent 70%);
    }
    .build-badge {
      position: absolute;
      top: 14px;
      left: 14px;
      background: var(--amber);
      color: var(--white);
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 100px;
    }
    .build-body { padding: 24px; }
    .build-model { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--amber); margin-bottom: 4px; }
    .build-name { font-family: var(--display); font-size: 1.6rem; color: var(--ink); letter-spacing: .04em; margin-bottom: 8px; }
    .build-card.large-card .build-name { font-size: 2rem; }
    .build-desc { font-size: .86rem; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
    .build-specs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
    .build-spec { font-size: .75rem; font-weight: 600; color: var(--slate); background: var(--sand); border-radius: 100px; padding: 4px 12px; }
    .build-footer { display: flex; align-items: center; justify-content: space-between; }
    .build-price-lbl { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
    .build-price { font-family: var(--display); font-size: 1.8rem; color: var(--slate); letter-spacing: .02em; }
    .build-link { font-size: .84rem; font-weight: 700; color: var(--amber); display: flex; align-items: center; gap: 4px; }
    .build-link::after { content: '→'; }

    /* ── Customise ── */
    .custom-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: var(--border-d);
      border-radius: 14px;
      overflow: hidden;
    }
    .custom-cell {
      background: var(--slate-lt);
      padding: 32px 28px;
      transition: background .2s;
    }
    .custom-cell:hover { background: rgba(232,144,10,.1); }
    .custom-icon {
      font-size: 2rem;
      margin-bottom: 14px;
      line-height: 1;
    }
    .custom-cell h4 { font-family: var(--display); font-size: 1.2rem; color: var(--white); letter-spacing: .04em; margin-bottom: 8px; }
    .custom-cell p { font-size: .84rem; color: rgba(255,255,255,.55); line-height: 1.6; }
    .custom-options { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
    .custom-opt { font-size: .72rem; font-weight: 600; color: rgba(255,255,255,.65); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: 100px; padding: 3px 10px; }

    /* ── FAQ ── */
    .faq-wrap { max-width: 780px; margin: 0 auto; }
    .faq-item { border-bottom: 1px solid var(--border-l); }
    .faq-q { width: 100%; background: none; border: none; text-align: left; padding: 22px 0; font-family: var(--body); font-size: 1rem; font-weight: 600; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
    .faq-q:hover { color: var(--amber-dk); }
    .faq-chevron { flex-shrink: 0; width: 30px; height: 30px; background: var(--sand); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform .2s, background .15s; font-size: 1rem; color: var(--slate); }
    .faq-item.open .faq-chevron { transform: rotate(45deg); background: var(--amber); color: var(--white); }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height .32s ease; }
    .faq-item.open .faq-a { max-height: 300px; }
    .faq-a-inner { padding-bottom: 22px; font-size: .92rem; color: var(--muted); line-height: 1.78; }

    /* ── Build enquiry form ── */
    .enquiry-section { background: var(--slate-dk); }
    .enquiry-grid { display: grid; grid-template-columns: 1fr 520px; gap: 72px; align-items: start; }
    .eq-info h2 { color: var(--white); }
    .eq-info p { color: rgba(255,255,255,.62); font-size: 1rem; line-height: 1.72; margin-bottom: 32px; }
    .eq-detail { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
    .eq-icon { width: 44px; height: 44px; background: rgba(255,255,255,.07); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
    .eq-text strong { display: block; font-size: .74rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .1em; }
    .eq-text a, .eq-text span { color: var(--white); font-weight: 600; }
    .eq-text a:hover { color: var(--amber-lt); }
    .form-card { background: var(--white); border-radius: 14px; padding: 40px; box-shadow: 0 24px 64px rgba(0,0,0,.25); }
    .form-card h3 { font-family: var(--display); font-size: 1.8rem; color: var(--ink); letter-spacing: .04em; margin-bottom: 8px; }
    .form-card .form-sub { font-size: .84rem; color: var(--muted); margin-bottom: 26px; }
    .frow { margin-bottom: 14px; }
    .frow-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
    .frow label, .frow-2 label { display: block; font-size: .78rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 5px; }
    .frow input, .frow select, .frow textarea,
    .frow-2 input, .frow-2 select { width: 100%; padding: 11px 14px; border: 1.5px solid #ddd8d0; border-radius: var(--r-sm); font-family: var(--body); font-size: .92rem; color: var(--ink); background: var(--white); transition: border-color .15s; }
    .frow input:focus, .frow select:focus, .frow textarea:focus, .frow-2 input:focus, .frow-2 select:focus { outline: none; border-color: var(--amber); }
    .frow textarea { resize: vertical; min-height: 90px; }
    .form-submit { width: 100%; background: var(--amber); color: var(--white); font-family: var(--body); font-weight: 700; font-size: 1rem; padding: 15px; border: none; border-radius: var(--r-sm); cursor: pointer; transition: background .15s; margin-top: 6px; }
    .form-submit:hover { background: var(--amber-lt); }
    .form-note { font-size: .74rem; color: var(--muted); text-align: center; margin-top: 10px; }

    /* ── CTA band ── */
    .cta-band { background: var(--slate-dk); padding: 80px 40px; text-align: center; position: relative; overflow: hidden; }
    .cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 120% at 50% 50%, rgba(255,255,255,.08) 0%, transparent 70%); pointer-events: none; }
    .cta-band h2 { font-family: var(--display); font-size: clamp(2.4rem, 5vw, 4rem); color: var(--white); letter-spacing: .03em; margin-bottom: 14px; position: relative; z-index: 1; }
    .cta-band p { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 520px; margin: 0 auto 36px; line-height: 1.65; position: relative; z-index: 1; }
    .cta-band-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }
    .btn-white { background: var(--white); color: var(--slate-dk); font-weight: 700; }
    .btn-white:hover { background: var(--sand); }
    .btn-outline-amber-w { border: 2px solid rgba(255,255,255,.6); color: var(--white); }
    .btn-outline-amber-w:hover { border-color: var(--white); }

    /* ── Footer ── */
    .site-footer { background: var(--slate-dk); padding: 72px 40px 0; color: rgba(255,255,255,.55); }
    .footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
    .footer-logo { font-family: var(--display); font-size: 1.7rem; color: var(--white); letter-spacing: .08em; margin-bottom: 14px; }
    .footer-logo span { color: var(--amber); }
    .footer-desc { font-size: .85rem; line-height: 1.7; margin-bottom: 22px; }
    .footer-socials { display: flex; gap: 10px; }
    .social-btn { width: 38px; height: 38px; background: rgba(255,255,255,.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .82rem; font-weight: 700; color: rgba(255,255,255,.65); transition: background .15s, color .15s; }
    .social-btn:hover { background: var(--amber); color: var(--white); }
    .footer-col h5 { font-family: var(--display); font-size: 1rem; color: var(--white); letter-spacing: .08em; margin-bottom: 16px; }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 10px; }
    .footer-col a { font-size: .85rem; color: rgba(255,255,255,.55); transition: color .12s; }
    .footer-col a:hover { color: var(--amber-lt); }
    .footer-bottom { max-width: 1200px; margin: 0 auto; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: .8rem; }
    .footer-bottom a { color: rgba(255,255,255,.4); }
    .footer-bottom a:hover { color: var(--white); }

    /* ── Mobile bar ── */
    .mobile-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--slate-dk); border-top: 1px solid var(--border-d); padding: 12px 16px; gap: 10px; z-index: 400; }
    .mobile-bar a { flex: 1; text-align: center; padding: 12px; border-radius: var(--r-sm); font-weight: 700; font-size: .9rem; }
    .mbar-call { background: rgba(255,255,255,.1); color: var(--white); }
    .mbar-cta { background: var(--amber); color: var(--white); }

    /* ── Responsive ── */
    @media (max-width: 1050px) {
      .hero-grid { grid-template-columns: 1fr; }
      .hero-van { display: none; }
      .about-grid { grid-template-columns: 1fr; }
      .builds-grid { grid-template-columns: 1fr 1fr; }
      .build-card.large-card { grid-column: span 2; }
      .process-steps { grid-template-columns: 1fr 1fr; }
      .process-steps::before { display: none; }
      .custom-grid { grid-template-columns: 1fr 1fr; }
      .reviews-grid { grid-template-columns: 1fr 1fr; }
      .enquiry-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 720px) {
      .section { padding: 64px 24px; }
      .site-nav { padding: 0 24px; }
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      .nav-cta { display: none; }
      .builds-grid { grid-template-columns: 1fr; }
      .build-card.large-card { grid-column: span 1; }
      .process-steps { grid-template-columns: 1fr; }
      .custom-grid { grid-template-columns: 1fr; }
      .reviews-grid { grid-template-columns: 1fr; }
      .about-check-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .mobile-bar { display: flex; }
      body { padding-bottom: 72px; }
      .frow-2 { grid-template-columns: 1fr; }
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation: none !important; transition: none !important; }
    }

    /* ── Promo Banner ── */
    .promo-banner {
      background: var(--amber);
      padding: 10px 24px;
      text-align: center;
      position: relative;
      z-index: 400;
    }
    .promo-banner-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }
    .promo-tagline {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--display);
      font-size: 1.1rem;
      letter-spacing: .07em;
      color: var(--white);
    }
    .promo-tagline .tl-dot {
      width: 6px;
      height: 6px;
      background: rgba(255,255,255,.85);
      border-radius: 50%;
      flex-shrink: 0;
    }
    .promo-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: .82rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: .01em;
    }
    .promo-pill-icon {
      font-size: 1rem;
      flex-shrink: 0;
    }
    .promo-divider {
      width: 4px;
      height: 4px;
      background: rgba(255,255,255,.4);
      border-radius: 50%;
      flex-shrink: 0;
    }
    .promo-cta-link {
      font-size: .78rem;
      font-weight: 700;
      color: var(--white);
      text-decoration: underline;
      text-underline-offset: 3px;
      white-space: nowrap;
      opacity: .85;
      transition: opacity .15s;
    }
    .promo-cta-link:hover { opacity: 1; }
    @media (max-width: 600px) {
      .promo-banner { padding: 8px 16px; }
      .promo-tagline { font-size: .92rem; }
      .promo-pill { font-size: .76rem; }
      .promo-divider { display: none; }
    }

    /* ── Latest News Banner ── */
    .news-bar {
      background: linear-gradient(90deg, var(--slate-dk) 0%, var(--slate-lt) 100%);
      border-bottom: 2px solid var(--amber);
      padding: 11px 24px;
      position: relative;
      z-index: 350;
    }
    .news-bar-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .news-tag {
      background: var(--white);
      color: var(--slate-dk);
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 4px;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .news-bar-text {
      font-size: .85rem;
      font-weight: 600;
      color: rgba(255,255,255,.85);
      flex: 1;
    }
    .news-bar-text span { color: #a8c8ff; font-weight: 700; }
    .news-bar-link {
      font-size: .8rem;
      font-weight: 700;
      color: var(--white);
      border: 1.5px solid rgba(255,255,255,.5);
      padding: 4px 14px;
      border-radius: 4px;
      white-space: nowrap;
      flex-shrink: 0;
      transition: background .15s, border-color .15s;
    }
    .news-bar-link:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

    /* ── Featured Listing ── */
    .listing-section { background: linear-gradient(160deg, var(--sand) 0%, var(--white) 60%); }
    .listing-card {
      background: var(--white);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 40px rgba(26,63,154,.18), 0 0 0 1px rgba(84,144,245,.12);
      display: grid;
      grid-template-columns: 420px 1fr;
    }
    .listing-visual {
      background: linear-gradient(160deg, var(--slate-dk) 0%, var(--slate-lt) 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 40px 32px;
      position: relative;
      gap: 24px;
    }
    .listing-visual::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 90%, rgba(84,144,245,.18) 0%, transparent 70%);
      pointer-events: none;
    }
    .listing-visual-label {
      position: absolute;
      top: 18px;
      left: 18px;
      background: linear-gradient(90deg, var(--amber) 0%, var(--amber-lt) 100%);
      color: var(--white);
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 100px;
      box-shadow: 0 2px 12px rgba(47,116,232,.4);
    }
    .listing-price-card {
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(84,144,245,.4);
      border-radius: 12px;
      padding: 20px 28px;
      text-align: center;
      width: 100%;
      box-shadow: 0 0 30px rgba(84,144,245,.15);
    }
    .listing-price-lbl { font-size: .72rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 4px; }
    .listing-price { font-family: var(--display); font-size: 3rem; color: #a8c8ff; line-height: 1; text-shadow: 0 0 24px rgba(84,144,245,.5); }
    .listing-kms {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: .82rem;
      color: rgba(255,255,255,.65);
      font-weight: 600;
    }
    .listing-kms::before { content: '🚐'; font-size: 1rem; }
    .listing-year-make {
      font-family: var(--display);
      font-size: 1.4rem;
      color: var(--white);
      letter-spacing: .06em;
      text-align: center;
    }
    .listing-ready {
      background: rgba(84,144,245,.2);
      border: 1px solid rgba(84,144,245,.5);
      color: #c0d8ff;
      font-size: .76rem;
      font-weight: 700;
      padding: 6px 16px;
      border-radius: 100px;
      letter-spacing: .06em;
    }

    .listing-body { padding: 40px 44px; }
    .listing-eyebrow { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--amber); margin-bottom: 10px; }
    .listing-title { font-family: var(--display); font-size: 2rem; color: var(--slate-dk); letter-spacing: .03em; line-height: 1.05; margin-bottom: 10px; }
    .listing-tagline { font-size: .95rem; color: var(--muted); line-height: 1.65; margin-bottom: 28px; }

    .listing-features-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px 24px;
      margin-bottom: 28px;
    }
    .listing-feature-group { }
    .listing-feature-heading {
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--slate-dk);
      background: var(--sand);
      margin-bottom: 8px;
      padding: 5px 10px;
      border-left: 3px solid var(--amber);
      border-radius: 0 4px 4px 0;
    }
    .listing-feature {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: .84rem;
      color: var(--ink);
      padding: 4px 0;
      line-height: 1.4;
    }
    .listing-feature::before {
      content: '✓';
      color: var(--amber-lt);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .listing-ctas {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      padding-top: 20px;
      border-top: 2px solid var(--sand);
    }

    @media (max-width: 980px) {
      .listing-card { grid-template-columns: 1fr; }
      .listing-visual { flex-direction: row; flex-wrap: wrap; padding: 28px; min-height: unset; }
      .listing-features-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 600px) {
      .news-bar-inner { flex-wrap: wrap; gap: 8px; }
      .news-bar-link { width: 100%; text-align: center; }
      .listing-body { padding: 28px 24px; }
    }