:root {
      --carbon: #0b0b0b;
      --carbon-soft: #111111;
      --concrete: #1a1a1a;
      --bronze: #b37a3a;
      --bronze-deep: #8c6735;
      --bronze-light: #c79a57;
      --aluminium: #5f6368;
      --quartz: #f5f5f3;
      --fire: #b11226;
      --line: rgba(179, 122, 58, 0.28);
      --glass: rgba(5, 5, 5, 0.78);
      --shadow: 0 26px 90px rgba(0, 0, 0, 0.58);
      --serif: "Cormorant Garamond", Georgia, serif;
      --sans: "Montserrat", Helvetica, Arial, sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      background: var(--carbon);
    }

    body {
      margin: 0;
      min-width: 320px;
      color: var(--quartz);
      font-family: var(--sans);
      background:
        radial-gradient(circle at 18% 10%, rgba(179, 122, 58, 0.2), transparent 30rem),
        radial-gradient(circle at 84% 6%, rgba(199, 154, 87, 0.11), transparent 28rem),
        repeating-linear-gradient(135deg, rgba(245, 245, 243, 0.018) 0 1px, transparent 1px 9px),
        linear-gradient(180deg, #030303 0%, var(--carbon) 46%, #070707 100%);
      letter-spacing: 0;
    }

    body.nav-open {
      overflow: hidden;
    }

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

    img {
      display: block;
      max-width: 100%;
    }

    button {
      font: inherit;
    }

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      border-bottom: 1px solid rgba(179, 122, 58, 0.28);
      background: rgba(3, 3, 3, 0.82);
      backdrop-filter: blur(20px) saturate(120%);
      transition: background 220ms ease, border-color 220ms ease;
    }

    .site-header.is-scrolled {
      background: rgba(3, 3, 3, 0.94);
      border-bottom-color: rgba(199, 154, 87, 0.42);
    }

    .nav-wrap {
      height: 82px;
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 34px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 154px;
      height: 100%;
    }

    .brand-mark {
      width: 150px;
      height: 150px;
      border-radius: 0;
      object-fit: contain;
      transform: translateY(34px);
      box-shadow: none;
      filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.62));
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2px;
      flex: 1;
    }

    .nav-item {
      position: relative;
    }

    .nav-home {
      display: inline-flex;
      align-items: center;
      min-height: 82px;
      padding: 0 12px;
      color: rgba(245, 245, 243, 0.76);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.02em;
      transition: color 180ms ease;
    }

    .nav-home:hover,
    .nav-home:focus-visible {
      color: var(--bronze-light);
      outline: none;
    }

    .nav-link {
      border: 0;
      border-radius: 0;
      background: transparent;
      color: rgba(245, 245, 243, 0.76);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 82px;
      padding: 0 12px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.02em;
      transition: color 180ms ease;
    }

    .nav-link::after {
      content: "";
      width: 5px;
      height: 5px;
      border-right: 1px solid currentColor;
      border-bottom: 1px solid currentColor;
      transform: rotate(45deg) translateY(-2px);
      opacity: 0.7;
    }

    .nav-link:hover,
    .nav-link:focus-visible,
    .nav-item.is-active .nav-link {
      color: var(--bronze-light);
      outline: none;
    }

    .nav-link.ticket {
      color: var(--bronze-light);
    }

    .dropdown {
      position: absolute;
      top: 76px;
      left: 50%;
      width: min(760px, calc(100vw - 48px));
      padding: 22px;
      transform: translate(-50%, 12px);
      border: 1px solid rgba(215, 178, 109, 0.22);
      background: rgba(8, 8, 8, 0.96);
      box-shadow: var(--shadow);
      opacity: 0;
      pointer-events: none;
      transition: opacity 180ms ease, transform 180ms ease;
    }

    .nav-item:hover .dropdown,
    .nav-item:focus-within .dropdown,
    .nav-item.is-active .dropdown {
      opacity: 1;
      pointer-events: auto;
      transform: translate(-50%, 0);
    }

    .dropdown-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
      gap: 18px;
    }

    .dropdown h3 {
      margin: 0 0 12px;
      color: var(--bronze-light);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .dropdown a {
      display: block;
      padding: 10px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      color: rgba(245, 245, 243, 0.82);
      font-size: 13px;
      line-height: 1.35;
      transition: color 160ms ease, transform 160ms ease;
    }

    .dropdown a span {
      display: block;
      margin-top: 3px;
      color: rgba(183, 188, 195, 0.58);
      font-size: 11px;
      font-weight: 400;
    }

    .dropdown a:hover,
    .dropdown a:focus-visible {
      color: var(--bronze-light);
      outline: none;
      transform: translateX(3px);
    }

    .nav-ctas {
      display: flex;
      gap: 10px;
      align-items: center;
      justify-content: flex-end;
      min-width: 300px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 44px;
      padding: 0 18px;
      border: 1px solid transparent;
      border-radius: 2px;
      cursor: pointer;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.02em;
      transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
      white-space: nowrap;
    }

    .btn:hover,
    .btn:focus-visible {
      transform: translateY(-2px);
      outline: none;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--bronze-light), var(--bronze) 52%, var(--bronze-deep));
      color: #050505;
      border-color: rgba(199, 154, 87, 0.74);
      box-shadow: 0 12px 30px rgba(179, 122, 58, 0.18);
    }

    .btn-secondary {
      color: var(--quartz);
      border-color: rgba(215, 178, 109, 0.5);
      background: rgba(156, 123, 82, 0.08);
    }

    .btn-secondary:hover,
    .btn-secondary:focus-visible {
      background: rgba(156, 123, 82, 0.2);
    }

    .btn-ghost {
      color: var(--quartz);
      border-color: rgba(245, 245, 243, 0.34);
      background: rgba(245, 245, 243, 0.04);
    }

    .btn-dark {
      color: var(--quartz);
      background: rgba(11, 11, 11, 0.72);
      border-color: rgba(215, 178, 109, 0.36);
    }

    .icon {
      width: 18px;
      height: 18px;
      flex: 0 0 auto;
      stroke: currentColor;
      stroke-width: 1.7;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
    }

    .menu-toggle {
      display: none;
      width: 46px;
      height: 46px;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(215, 178, 109, 0.34);
      background: rgba(8, 8, 8, 0.5);
      color: var(--quartz);
      cursor: pointer;
    }

    .menu-toggle span,
    .menu-toggle span::before,
    .menu-toggle span::after {
      display: block;
      width: 20px;
      height: 2px;
      background: currentColor;
      content: "";
      transition: transform 180ms ease, opacity 180ms ease;
    }

    .menu-toggle span::before {
      transform: translateY(-7px);
    }

    .menu-toggle span::after {
      transform: translateY(5px);
    }

    .menu-toggle[aria-expanded="true"] span {
      transform: rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span::before {
      transform: translateY(0) rotate(90deg);
    }

    .menu-toggle[aria-expanded="true"] span::after {
      opacity: 0;
    }

    .mobile-panel {
      display: none;
    }


    .hero {
      height: clamp(380px, 32vh, 300px);
      display: grid;
      align-items: end;
      padding: 104px 34px 26px;
      background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5) 46%, rgba(0, 0, 0, 0.16)),
        linear-gradient(0deg, #0b0b0b 0%, rgba(11, 11, 11, 0.12) 36%),
        url("../cars-real/cam-collection-lineup.webp") center 54% / cover,
        #050505;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
      background-size: 92px 92px;
      mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.78), transparent 74%);
      pointer-events: none;
    }

    .section-inner {
      width: min(1180px, 100%);
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 22px;
      color: var(--bronze-light);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.22em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 42px;
      height: 1px;
      background: var(--bronze-light);
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      max-width: 860px;
      margin-bottom: 18px;
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: clamp(2.35rem, 4.2vw, 4.15rem);
      font-weight: 700;
      line-height: 0.95;
      letter-spacing: 0;
    }

    .hero-copy {
      max-width: 780px;
      color: rgba(245, 245, 243, 0.82);
      font-size: clamp(0.96rem, 1.2vw, 1.08rem);
      line-height: 1.55;
      margin-bottom: 0;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 0;
    }

    .hero-quickbar {
      padding: 20px 34px;
      border-top: 1px solid rgba(215, 178, 109, 0.18);
      border-bottom: 1px solid rgba(215, 178, 109, 0.18);
      background: rgba(5, 5, 5, 0.88);
    }

    .hero-quickbar .section-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      width: min(580px, 100%);
      border: 1px solid rgba(215, 178, 109, 0.2);
      background: rgba(8, 8, 8, 0.62);
      backdrop-filter: blur(16px);
    }

    .stat {
      padding: 14px 16px;
      border-right: 1px solid rgba(215, 178, 109, 0.16);
    }

    .stat:last-child {
      border-right: 0;
    }

    .stat strong {
      display: block;
      color: var(--bronze-light);
      font-family: var(--serif);
      font-size: 30px;
      line-height: 0.9;
    }

    .stat span {
      display: block;
      margin-top: 8px;
      color: rgba(245, 245, 243, 0.76);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .section {
      padding: 96px 34px;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.55fr);
      gap: 52px;
      align-items: end;
      margin-bottom: 42px;
    }

    .section-title {
      margin-bottom: 0;
      font-family: var(--serif);
      font-size: clamp(2.2rem, 3.8vw, 3.8rem);
      font-weight: 700;
      line-height: 0.96;
      letter-spacing: 0;
    }

    .section-copy {
      color: rgba(183, 188, 195, 0.84);
      font-size: 15px;
      line-height: 1.8;
    }

    .filter-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 30px;
      padding: 18px;
      border: 1px solid rgba(215, 178, 109, 0.18);
      background:
        linear-gradient(135deg, rgba(215, 178, 109, 0.1), transparent 34%),
        rgba(10, 10, 10, 0.82);
      box-shadow: 0 22px 64px rgba(0, 0, 0, 0.24);
    }

    .filter-btn {
      min-height: 38px;
      padding: 0 14px;
      border: 1px solid rgba(215, 178, 109, 0.22);
      border-radius: 999px;
      background: rgba(245, 245, 243, 0.045);
      color: rgba(245, 245, 243, 0.78);
      cursor: pointer;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
    }

    .filter-btn:hover,
    .filter-btn:focus-visible,
    .filter-btn[aria-pressed="true"] {
      background: var(--bronze-light);
      color: #090909;
      border-color: var(--bronze-light);
      transform: translateY(-2px);
      outline: none;
    }

    .collection-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .vehicle-card {
      min-height: 510px;
      display: flex;
      flex-direction: column;
      border: 1px solid rgba(215, 178, 109, 0.18);
      background: rgba(17, 17, 17, 0.82);
      overflow: hidden;
      box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
      transition: transform 200ms ease, border-color 200ms ease;
    }

    .vehicle-card:hover {
      transform: translateY(-4px);
      border-color: rgba(215, 178, 109, 0.44);
    }

    .vehicle-card.is-hidden {
      display: none;
    }

    .collection-pagination {
      margin-top: 30px;
      padding: 16px;
      border: 1px solid rgba(215, 178, 109, 0.2);
      background:
        linear-gradient(135deg, rgba(215, 178, 109, 0.08), transparent 38%),
        rgba(8, 8, 8, 0.72);
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      align-items: center;
      gap: 14px;
    }

    .pagination-pages {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
    }

    .pagination-btn,
    .pagination-page {
      min-width: 44px;
      min-height: 42px;
      padding: 0 14px;
      border: 1px solid rgba(215, 178, 109, 0.26);
      background: rgba(245, 245, 243, 0.03);
      color: rgba(245, 245, 243, 0.78);
      cursor: pointer;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
    }

    .pagination-btn:hover:not(:disabled),
    .pagination-page:hover,
    .pagination-page:focus-visible,
    .pagination-page[aria-current="page"] {
      background: var(--bronze-light);
      color: #090909;
      border-color: var(--bronze-light);
      outline: none;
      transform: translateY(-2px);
    }

    .pagination-btn:disabled {
      opacity: 0.38;
      cursor: not-allowed;
    }

    .pagination-status {
      grid-column: 1 / -1;
      margin: 0;
      color: rgba(245, 245, 243, 0.62);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-align: center;
      text-transform: uppercase;
    }

    .vehicle-link {
      color: inherit;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      min-height: 100%;
    }

    .vehicle-media {
      height: 275px;
      overflow: hidden;
      background: var(--concrete);
    }

    .vehicle-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.01);
      transition: transform 420ms ease;
    }

    .vehicle-card:hover img {
      transform: scale(1.055);
    }

    .vehicle-body {
      flex: 1;
      display: flex;
      flex-direction: column;
      padding: 24px;
    }

    .vehicle-year {
      color: var(--bronze-light);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .vehicle-body h3 {
      margin: 12px 0 10px;
      font-family: var(--serif);
      font-size: 33px;
      line-height: 1;
      letter-spacing: 0;
    }

    .vehicle-body p {
      color: rgba(245, 245, 243, 0.72);
      font-size: 14px;
      line-height: 1.65;
    }

    .vehicle-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: auto;
      padding-top: 22px;
    }

    .vehicle-discover {
      width: fit-content;
      margin-top: 22px;
      padding: 12px 16px;
      border: 1px solid rgba(215, 178, 109, 0.4);
      background: rgba(215, 178, 109, 0.08);
      color: var(--bronze-light);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
    }

    .vehicle-card:hover .vehicle-discover,
    .vehicle-link:focus-visible .vehicle-discover {
      background: var(--bronze-light);
      border-color: var(--bronze-light);
      color: #090909;
      transform: translateY(-2px);
    }

    .vehicle-meta span {
      padding: 6px 9px;
      border: 1px solid rgba(215, 178, 109, 0.18);
      color: rgba(183, 188, 195, 0.82);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .feature-band {
      border-top: 1px solid rgba(215, 178, 109, 0.16);
      border-bottom: 1px solid rgba(215, 178, 109, 0.16);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent),
        var(--carbon-soft);
    }

    .feature-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.7fr);
      gap: 34px;
      align-items: stretch;
    }

    .feature-image {
      min-height: 560px;
      border: 1px solid rgba(215, 178, 109, 0.18);
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.44)),
        url("../park-auto/benz-patent-motorwagen-2026.webp") center / cover,
        var(--concrete);
    }

    .feature-panel {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 46px;
      border: 1px solid rgba(215, 178, 109, 0.22);
      background: rgba(8, 8, 8, 0.7);
    }

    .feature-panel h2 {
      margin: 20px 0 18px;
      font-family: var(--serif);
      font-size: clamp(2.2rem, 3.8vw, 3.8rem);
      line-height: 0.96;
      letter-spacing: 0;
    }

    .feature-panel p {
      color: rgba(245, 245, 243, 0.76);
      font-size: 16px;
      line-height: 1.8;
    }

    .specs {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      margin: 28px 0 32px;
      border: 1px solid rgba(215, 178, 109, 0.16);
    }

    .spec {
      padding: 16px 14px;
      border-right: 1px solid rgba(215, 178, 109, 0.14);
    }

    .spec:last-child {
      border-right: 0;
    }

    .spec strong {
      display: block;
      color: var(--quartz);
      font-size: 17px;
      line-height: 1.2;
    }

    .spec span {
      display: block;
      margin-top: 6px;
      color: rgba(183, 188, 195, 0.72);
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .timeline {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      border: 1px solid rgba(215, 178, 109, 0.18);
      background: rgba(8, 8, 8, 0.56);
    }

    .time-item {
      min-height: 190px;
      padding: 24px;
      border-right: 1px solid rgba(215, 178, 109, 0.14);
    }

    .time-item:last-child {
      border-right: 0;
    }

    .time-item strong {
      display: block;
      color: var(--bronze-light);
      font-family: var(--serif);
      font-size: 42px;
      line-height: 0.9;
    }

    .time-item span {
      display: block;
      margin-top: 18px;
      color: rgba(245, 245, 243, 0.82);
      font-size: 14px;
      line-height: 1.55;
    }

    .visit-strip {
      padding: 86px 34px;
      background:
        linear-gradient(90deg, rgba(8, 8, 8, 0.9), rgba(8, 8, 8, 0.66)),
        url("../cars-real/cam-mercedes-pagoda.webp") center / cover,
        #111;
    }

    .visit-content {
      max-width: 720px;
    }

    .visit-content h2 {
      margin-bottom: 18px;
      font-family: var(--serif);
      font-size: clamp(2.2rem, 3.8vw, 3.8rem);
      line-height: 0.96;
      letter-spacing: 0;
    }

    .visit-content p {
      color: rgba(245, 245, 243, 0.78);
      font-size: 16px;
      line-height: 1.8;
    }

    .footer {
      padding: 64px 34px 28px;
      border-top: 1px solid rgba(215, 178, 109, 0.2);
      background: #050505;
    }

    .footer-grid {
      width: min(1180px, 100%);
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(150px, 0.6fr));
      gap: 42px;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 18px;
      margin-bottom: 22px;
    }

    .footer-logo {
      width: 132px;
      height: 132px;
      border-radius: 0;
      object-fit: contain;
      box-shadow: none;
      filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.58));
    }

    .footer h2 {
      margin: 0;
      color: var(--quartz);
      font-family: var(--serif);
      font-size: 34px;
      line-height: 1;
      letter-spacing: 0;
    }

    .footer p {
      max-width: 430px;
      color: rgba(183, 188, 195, 0.78);
      font-size: 14px;
      line-height: 1.8;
    }

    .footer h3 {
      margin-bottom: 16px;
      color: var(--bronze-light);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }

    .footer a,
    .footer li {
      color: rgba(245, 245, 243, 0.72);
      font-size: 14px;
      line-height: 1.9;
    }

    .footer a:hover,
    .footer a:focus-visible {
      color: var(--bronze-light);
      outline: none;
    }

    .footer ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .footer-bottom {
      width: min(1180px, 100%);
      margin: 42px auto 0;
      padding-top: 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      border-top: 1px solid rgba(215, 178, 109, 0.16);
      color: rgba(183, 188, 195, 0.64);
      font-size: 12px;
    }

    .languages {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .languages a {
      width: 38px;
      height: 28px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(215, 178, 109, 0.3);
      background: rgba(255, 255, 255, 0.04);
      font-size: 20px;
      line-height: 1;
      transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
    }

    .languages a:hover,
    .languages a:focus-visible {
      background: rgba(215, 178, 109, 0.08);
      border-color: var(--bronze-light);
      transform: translateY(-2px);
    }

    .language-flag {
      display: block;
      transform: translateY(1px);
    }

    .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;
    }


    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 620ms ease, transform 620ms ease;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    :focus-visible {
      outline: 2px solid var(--bronze-light);
      outline-offset: 3px;
    }

    @media (max-width: 1180px) {
      .nav-wrap {
        padding: 0 22px;
      }

      .brand {
        min-width: auto;
      }

      .desktop-nav,
      .nav-ctas {
        display: none;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .mobile-panel {
        position: fixed;
        inset: 82px 0 0;
        z-index: 49;
        display: block;
        overflow-y: auto;
        padding: 18px 22px 34px;
        background: rgba(5, 5, 5, 0.98);
        transform: translateX(100%);
        transition: transform 220ms ease;
      }

      .mobile-home {
        display: block;
        padding: 0 0 18px;
        margin-bottom: 2px;
        border-bottom: 1px solid rgba(215, 178, 109, 0.16);
        color: var(--bronze-light);
        font-size: 18px;
        font-weight: 800;
      }

      body.nav-open .mobile-panel {
        transform: translateX(0);
      }

      .mobile-group {
        border-bottom: 1px solid rgba(215, 178, 109, 0.16);
      }

      .mobile-trigger {
        width: 100%;
        min-height: 58px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border: 0;
        background: transparent;
        color: var(--quartz);
        cursor: pointer;
        font-size: 18px;
        font-weight: 700;
        text-align: left;
      }

      .mobile-trigger::after {
        content: "+";
        color: var(--bronze-light);
        font-size: 24px;
        font-weight: 400;
      }

      .mobile-trigger[aria-expanded="true"]::after {
        content: "-";
      }

      .mobile-links {
        display: none;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px 18px;
        padding: 0 0 18px;
      }

      .mobile-links.is-open {
        display: grid;
      }

      .mobile-links a {
        color: rgba(245, 245, 243, 0.74);
        font-size: 14px;
        line-height: 1.55;
      }

      .mobile-ctas {
        display: grid;
        gap: 10px;
        margin-top: 22px;
      }
    }


    @media (max-width: 940px) {
      .hero {
        height: clamp(380px, 32vh, 300px);
        padding: 112px 22px 30px;
      }

      .section,
      .visit-strip,
      .hero-quickbar {
        padding: 76px 22px;
      }

      .hero-quickbar {
        padding-top: 22px;
        padding-bottom: 22px;
      }

      .section-head,
      .feature-layout,
      .footer-grid,
      .hero-quickbar .section-inner {
        grid-template-columns: 1fr;
      }

      .hero-quickbar .section-inner {
        display: grid;
      }

      .collection-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .collection-pagination {
        grid-template-columns: 1fr;
      }

      .pagination-btn {
        width: 100%;
      }

      .hero-stats,
      .timeline {
        grid-template-columns: 1fr;
      }

      .stat,
      .time-item {
        border-right: 0;
        border-bottom: 1px solid rgba(215, 178, 109, 0.14);
      }

      .stat:last-child,
      .time-item:last-child {
        border-bottom: 0;
      }

      .feature-image {
        min-height: 420px;
      }
    }

    @media (max-width: 640px) {
      .nav-wrap {
        height: 72px;
      }

      .brand {
        min-width: 74px;
      }

      .brand-mark {
        width: 64px;
        height: 64px;
        transform: none;
      }

      .mobile-panel {
        inset: 72px 0 0;
      }

      .hero {
        height: clamp(380px, 32vh, 300px);
        padding: 106px 18px 28px;
      }

      h1 {
        font-size: clamp(2.15rem, 8.8vw, 3rem);
      }

      .hero-actions,
      .visit-content .hero-actions {
        display: grid;
      }

      .btn {
        width: 100%;
      }

      .collection-grid,
      .specs {
        grid-template-columns: 1fr;
      }

      .vehicle-card {
        min-height: auto;
      }

      .feature-panel {
        padding: 28px;
      }

      .feature-image {
        min-height: 320px;
      }

      .spec {
        border-right: 0;
        border-bottom: 1px solid rgba(215, 178, 109, 0.14);
      }

      .spec:last-child {
        border-bottom: 0;
      }

      .footer {
        padding: 54px 20px 24px;
      }

      .footer-brand {
        align-items: flex-start;
        flex-direction: column;
      }

      .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
      }
    }
    /* mobile-panel final guard */
    .mobile-panel {
      display: none;
      transform: translateX(100%);
    }
    @media (max-width: 1180px) {
      .mobile-panel {
        display: block;
      }
    }
    @media (min-width: 1181px) {
      body.nav-open {
        overflow: auto;
      }
    }
