  :root {
    --gold: #e4aa36;
    --gold-light: #ffd06b;
    --purple: #3f074d;
    --purple-2: #17021d;
    --magenta: #e21bbd;
    --ink: #030304;
  }

  * { box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    margin: 0;
    background: #000;
    color: #fff;
    font-family: Inter, system-ui, sans-serif;
  }

  a { color: inherit; text-decoration: none; }

  .font-display {
    font-family: "Bebas Neue", Impact, sans-serif;
    letter-spacing: .025em;
  }

  .shell {
    width: 100%;
    padding-inline: clamp(24px, 3vw, 58px);
    margin-inline: auto;
  }

  .gold-btn {
    background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 48%, #c98722 100%);
    color: #130e05;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.38), 0 0 20px rgba(228,170,54,.18);
  }

  .hero {
    min-height: clamp(560px, 68vh, 690px);
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-bottom: 1px solid rgba(228,170,54,.24);
    background:
      linear-gradient(90deg, rgba(0,0,0,.99) 0%, rgba(0,0,0,.92) 26%, rgba(0,0,0,.48) 52%, rgba(0,0,0,.06) 100%),
      linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.02) 48%, rgba(0,0,0,.88) 100%),
      url("../assets/hero-scene.jpg");
    background-size: cover;
    background-position: center center;
  }

  .hero::after {
    content: "";
    display: none;
  }

  .nav-link {
    position: relative;
    font-size: clamp(10px, 2.7vw, 12px);
    font-weight: 900;
    text-transform: uppercase;
    color: rgba(255,255,255,.84);
  }

  .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 2px;
    transform: scaleX(0);
    background: var(--gold);
    transition: transform .2s ease;
  }

  .nav-link:hover::after { transform: scaleX(1); }

  .nav-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  .burger {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(0,0,0,.42);
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
  }

  .burger span {
    width: 20px;
    height: 2px;
    background: #fff;
    transition: transform .2s ease, opacity .2s ease;
  }

  .nav-menu {
    display: flex;
    align-items: center;
    gap: clamp(22px, 3vw, 48px);
  }

  .tag {
    background: linear-gradient(90deg, #4a075a, #250130);
    box-shadow: 0 0 25px rgba(226,27,189,.18);
  }

  .mini-icon {
    width: 28px;
    height: 28px;
    color: var(--gold);
    stroke: currentColor;
    flex: 0 0 auto;
  }

  .pink-rule {
    width: 34px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--magenta), #8b28ff);
    box-shadow: 0 0 12px rgba(226,27,189,.85);
  }

  .brand-logo {
    width: max-content;
    margin-left: clamp(-40px, -2.2vw, -18px);
    text-align: center;
  }

  .brand-main {
    display: block;
    font-size: clamp(22px, 1.85vw, 30px);
    font-weight: 900;
    line-height: .9;
    letter-spacing: .24em;
    text-indent: .24em;
  }

  .brand-sub {
    display: block;
    margin-top: 5px;
    font-size: clamp(11px, .82vw, 14px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: .55em;
    text-indent: .55em;
    color: var(--gold);
  }

  .feature-band {
    background:
      linear-gradient(90deg, rgba(41,2,51,.98), rgba(15,2,20,.98) 46%, rgba(57,9,76,.98)),
      radial-gradient(circle at 100% 0, rgba(226,27,189,.18), transparent 36%);
    border-top: 1px solid rgba(228,170,54,.2);
    border-bottom: 1px solid rgba(228,170,54,.25);
  }

  .feature-icon {
    width: 54px;
    height: 54px;
    color: var(--gold);
    stroke: currentColor;
  }

  .car-card {
    overflow: hidden;
    border-radius: 6px;
    background: #0b0a0d;
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 0 0 1px rgba(228,170,54,.06), 0 18px 34px rgba(0,0,0,.38);
  }

  .car-card img {
    width: 100%;
    aspect-ratio: 1.18 / 1;
    object-fit: cover;
    filter: saturate(1.2) contrast(1.08);
  }

  .specs {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255,255,255,.68);
    font-weight: 700;
  }

  .specs span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
  }

  .specs svg {
    width: 15px;
    height: 15px;
    color: rgba(255,255,255,.56);
    stroke: currentColor;
    flex: 0 0 auto;
  }

  .promo {
    background:
      linear-gradient(90deg, rgba(76,7,90,.96) 0%, rgba(58,8,78,.78) 42%, rgba(18,3,28,.9) 100%),
      url("https://images.unsplash.com/photo-1581351721010-8cf859cb14a4?auto=format&fit=crop&w=2200&q=85");
    background-size: cover;
    background-position: center;
    border-top: 1px solid rgba(228,170,54,.24);
    border-bottom: 1px solid rgba(228,170,54,.24);
  }

  .promo-shell {
    min-height: 178px;
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.65fr);
    align-items: center;
    gap: clamp(34px, 5vw, 86px);
    padding-block: 28px;
  }

  .promo-copy {
    max-width: 470px;
  }

  .promo-stats {
    width: 100%;
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(18px, 3vw, 46px);
    text-align: center;
    align-items: center;
  }

  .promo-stat svg {
    width: 52px;
    height: 52px;
    margin-inline: auto;
  }

  .script-word {
    display: inline-block;
    transform: skew(-11deg) rotate(-2deg);
    font-family: "Bebas Neue", Impact, sans-serif;
    color: var(--gold-light);
    font-style: italic;
    font-weight: 900;
    letter-spacing: .035em;
    text-shadow: 0 0 16px rgba(228,170,54,.36);
  }

  .cta-box {
    border: 1px solid rgba(228,170,54,.42);
    background: rgba(8,7,10,.68);
    box-shadow: 0 0 28px rgba(228,170,54,.08);
  }

  .social-icons {
    display: flex;
    align-items: center;
    gap: 18px;
    color: rgba(255,255,255,.78);
  }

  .social-icons svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    stroke: currentColor;
    flex: 0 0 auto;
  }

  .contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.76);
    white-space: nowrap;
  }

  .contact-link svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
    stroke: currentColor;
    flex: 0 0 auto;
  }

  @media (max-width: 980px) {
    .hero { min-height: auto; padding-bottom: 58px; }

    .burger { display: flex; }

    .nav-menu {
      display: none;
      order: 5;
      width: 100%;
      margin-top: 8px;
      padding: 18px;
      border: 1px solid rgba(228,170,54,.24);
      background: rgba(3,3,4,.9);
      box-shadow: 0 18px 36px rgba(0,0,0,.32);
      flex-direction: column;
      align-items: stretch;
      gap: 0;
    }

    .nav-menu .nav-link {
      padding: 13px 4px;
      border-bottom: 1px solid rgba(255,255,255,.08);
      font-size: 12px;
    }

    .nav-menu .nav-link:last-child { border-bottom: 0; }

    .nav-toggle:checked ~ .nav-menu { display: flex; }

    .nav-toggle:checked + .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
      .nav-toggle:checked + .burger span:nth-child(2) { opacity: 0; }
      .nav-toggle:checked + .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

      .promo-shell {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 30px;
        padding-block: 36px;
      }

      .promo-copy { max-width: 100%; }
    }

  @media (min-width: 981px) {
    .nav-link { font-size: 14px; }
    .collection-label { font-size: 23px; }
    .collection-heading { font-size: calc(clamp(32px,3.6vw,54px) - 4px); }
    .how-label { font-size: 13px; }
  }

  @media (max-width: 640px) {
    .shell { padding-inline: 18px; }
    .brand-logo { margin-left: 0; }
    .hero { background-position: 58% center; }
    .promo-stats {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 26px 18px;
    }
  }
