/* Skip link */
    .skip{
      position:absolute;
      left:-999px;
      top:auto;
      width:1px;
      height:1px;
      overflow:hidden;
    }
    .skip:focus{
      left:18px;
      top:18px;
      width:auto;
      height:auto;
      overflow:visible;
      background:#111;
      padding:10px 14px;
      border:2px solid var(--gold);
      border-radius:999px;
      z-index:999;
    }

    header.hero{
      padding:120px 20px 40px;
      max-width:1200px;
      margin:0 auto;
      display:grid;
      grid-template-columns:minmax(0,1.1fr) minmax(0,0.9fr);
      gap:24px;
    }
    @media (max-width:900px){
      header.hero{grid-template-columns:1fr;padding-top:112px;}
    }
    .hero-text h1{margin:0 0 10px;font-size:2rem;}
    .hero-text p{margin:.4rem 0 .7rem;font-size:.98rem;opacity:.9;}
    .hero-kicker{
      letter-spacing:.2em;
      text-transform:uppercase;
      font-size:.78rem;
      opacity:.85;
      margin-bottom:.4rem;
    }
    .pill-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:.4rem;
    }
    .pill{
      border-radius:999px;
      border:1px solid var(--stroke);
      padding:4px 10px;
      font-size:.8rem;
      background:#0a0a0a;
    }
    .pill.gold{border-color:var(--gold);color:var(--gold);}
    .hero-media{
      border-radius:20px;
      overflow:hidden;
      border:1px solid var(--stroke);
      background:#000;
    }
    .hero-media img{width:100%;height:100%;object-fit:cover;}

    .section{padding:10px 20px 60px;max-width:1200px;margin:0 auto;}
    .section h2{margin-top:0;font-size:1.6rem;}
    .divider{
      height:1px;
      background:linear-gradient(90deg,transparent,var(--gold),transparent);
      margin:20px 0 24px;
    }

    .dealers{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
      gap:18px;
    }
    .dealer-card{
      border-radius:16px;
      border:1px solid var(--stroke);
      background:#0e0e0e;
      overflow:hidden;
      display:flex;
      flex-direction:column;
    }
    /* now a div (no nested links) */
    .dealer-main{
      display:flex;
      gap:14px;
      padding:14px 16px;
      align-items:center;
    }
    .dealer-logo{
      width:72px;
      height:72px;
      object-fit:contain;
      background:#fff;
      border-radius:12px;
      border:1px solid var(--stroke);
      flex-shrink:0;
    }
    .dealer-body h3{
      margin:.1rem 0 .25rem;
      font-size:1.1rem;
      color:var(--gold);
    }
    .dealer-body p{
      margin:0;
      opacity:.85;
      font-size:.9rem;
    }
    .dealer-meta{
      margin-top:4px;
      font-size:.78rem;
      color:var(--muted);
      line-height:1.35;
    }
    .dealer-actions{
      display:flex;
      gap:10px;
      justify-content:flex-end;
      padding:12px 16px;
      border-top:1px solid var(--stroke);
      flex-wrap:wrap;
    }
    .dealer-actions .btn{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:.55rem .9rem;
      border:1px solid var(--stroke);
      border-radius:999px;
      background:#0a0a0a;
      font-weight:600;
      font-size:.85rem;
    }
    .dealer-actions .btn:hover{background:#111;}

    .note{
      font-size:.88rem;
      opacity:.8;
      margin-top:10px;
    }
