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

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

    .page-shell {
      overflow: hidden;
    }

    .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 {
      position: relative;
      min-height: 100vh;
      display: grid;
      align-items: end;
      padding: 158px 34px 72px;
      background: #050505;
      overflow: hidden;
      isolation: isolate;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      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.75), transparent 72%);
      pointer-events: none;
    }

    .hero-slider {
      position: absolute;
      inset: 0;
      z-index: 0;
      background: #050505;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transform: scale(1.03);
      background-image:
        linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.57) 42%, rgba(0, 0, 0, 0.18) 100%),
        linear-gradient(0deg, #0b0b0b 0%, rgba(11, 11, 11, 0.08) 38%),
        var(--hero-image);
      background-size: cover, cover, cover;
      background-position: center, center, var(--hero-position, center);
      transition: opacity 900ms ease, transform 6200ms ease;
    }

    .hero-slide.is-active {
      opacity: 1;
      transform: scale(1);
    }

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

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

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

    .hero-copy {
      max-width: 660px;
      color: rgba(245, 245, 243, 0.82);
      font-size: clamp(1.06rem, 1.6vw, 1.32rem);
      line-height: 1.65;
    }

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

    .hero-slider-controls {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 24px;
    }

    .hero-dot {
      width: 44px;
      height: 4px;
      padding: 0;
      border: 0;
      border-radius: 999px;
      background: rgba(245, 245, 243, 0.34);
      cursor: pointer;
      transition: width 180ms ease, background 180ms ease;
    }

    .hero-dot.is-active,
    .hero-dot:hover,
    .hero-dot:focus-visible {
      width: 58px;
      background: var(--bronze-light);
    }

    .hero-meta {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      max-width: 780px;
      margin-top: 34px;
      border: 1px solid rgba(215, 178, 109, 0.2);
      background: rgba(8, 8, 8, 0.56);
      backdrop-filter: blur(16px);
    }

    .meta-item {
      padding: 18px 20px;
      border-right: 1px solid rgba(215, 178, 109, 0.16);
    }

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

    .meta-kicker {
      color: var(--bronze-light);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .meta-text {
      margin-top: 7px;
      color: rgba(245, 245, 243, 0.82);
      font-size: 13px;
      line-height: 1.4;
    }

    .section {
      position: relative;
      padding: 110px 34px;
    }

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

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) 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.7rem, 4.2vw, 4.15rem);
      font-weight: 700;
      line-height: 0.98;
      letter-spacing: 0;
    }

    .title-two-lines {
      max-width: 760px;
      font-size: clamp(2.55rem, 4vw, 3.85rem);
    }

    .title-single-line {
      font-size: clamp(2.05rem, 2.6vw, 3rem);
      line-height: 1;
      white-space: nowrap;
    }

    .section-head-single {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .section-head-single .section-copy {
      max-width: 680px;
    }

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

    .univers-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .universe-card,
    .event-card,
    .news-card {
      position: relative;
      overflow: hidden;
      min-height: 430px;
      border: 1px solid rgba(215, 178, 109, 0.18);
      background: var(--concrete);
      box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
    }

    .universe-card::before,
    .event-card::before,
    .news-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: var(--card-image) center / cover;
      transform: scale(1.01);
      transition: transform 420ms ease;
    }

    .universe-card::after,
    .event-card::after,
    .news-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.86) 76%);
    }

    .universe-card:hover::before,
    .event-card:hover::before,
    .news-card:hover::before {
      transform: scale(1.055);
    }

    .card-content {
      position: absolute;
      inset: auto 0 0;
      z-index: 1;
      padding: 26px;
    }

    .card-icon {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      margin-bottom: 72px;
      color: var(--bronze-light);
      border: 1px solid rgba(215, 178, 109, 0.44);
      background: rgba(8, 8, 8, 0.58);
    }

    .card-content h3 {
      margin-bottom: 10px;
      font-family: var(--serif);
      font-size: 31px;
      font-weight: 700;
      line-height: 1;
    }

    .card-content p {
      min-height: 68px;
      margin-bottom: 20px;
      color: rgba(245, 245, 243, 0.72);
      font-size: 14px;
      line-height: 1.6;
    }

    .text-link {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: var(--bronze-light);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .text-link::after {
      content: "";
      width: 28px;
      height: 1px;
      background: currentColor;
      transition: width 180ms ease;
    }

    .text-link:hover::after,
    .text-link:focus-visible::after {
      width: 42px;
    }

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

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

    .feature-media {
      min-height: 560px;
      border: 1px solid rgba(215, 178, 109, 0.18);
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.42)),
        var(--feature-image, url("../cars-real/cam-roadster-1962-front.webp")) center / cover,
        var(--concrete);
    }

    .collection-slider {
      position: relative;
      min-height: clamp(560px, 66vh, 720px);
      overflow: hidden;
      border: 1px solid rgba(215, 178, 109, 0.22);
      background:
        linear-gradient(135deg, rgba(215, 178, 109, 0.08), transparent 34%),
        rgba(8, 8, 8, 0.74);
      box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
      isolation: isolate;
    }

    .collection-slide {
      position: absolute;
      inset: 0;
      display: grid;
      grid-template-columns: 1fr;
      gap: 0;
      align-items: stretch;
      opacity: 0;
      transform: translateX(4%) scale(0.985);
      pointer-events: none;
      transition: opacity 520ms ease, transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    .collection-slide.is-active {
      display: grid;
      opacity: 1;
      transform: translateX(0) scale(1);
      pointer-events: auto;
    }

    .collection-slide .feature-media {
      grid-area: 1 / 1;
      position: relative;
      min-height: 100%;
      border: 0;
      transform: scale(1.04);
      transition: transform 5200ms ease;
    }

    .collection-slide.is-active .feature-media {
      transform: scale(1);
    }

    .collection-slide .feature-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.2) 45%, rgba(5, 5, 5, 0.7)),
        linear-gradient(0deg, rgba(5, 5, 5, 0.86), transparent 54%);
      pointer-events: none;
    }

    .collection-slide .feature-panel {
      grid-area: 1 / 1;
      align-self: end;
      justify-self: end;
      width: min(520px, calc(100% - 48px));
      margin: 0 32px 32px 0;
      padding: 32px;
      border-color: rgba(215, 178, 109, 0.28);
      background: rgba(6, 6, 6, 0.58);
      backdrop-filter: blur(18px);
      box-shadow: 0 24px 72px rgba(0, 0, 0, 0.38);
    }

    .collection-slider-controls {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin-top: 14px;
      padding: 14px;
      border: 1px solid rgba(215, 178, 109, 0.18);
      background: rgba(8, 8, 8, 0.62);
      backdrop-filter: blur(16px);
    }

    .collection-arrow,
    .collection-dot {
      border: 1px solid rgba(215, 178, 109, 0.36);
      background: rgba(8, 8, 8, 0.72);
      color: var(--quartz);
      cursor: pointer;
      transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
    }

    .collection-arrow {
      width: 46px;
      height: 46px;
      display: inline-grid;
      place-items: center;
      border-radius: 50%;
      font-size: 24px;
      line-height: 1;
    }

    .collection-dot {
      width: min(12vw, 86px);
      height: 3px;
      padding: 0;
      border-radius: 999px;
      background: rgba(245, 245, 243, 0.32);
    }

    .collection-arrow:hover,
    .collection-arrow:focus-visible,
    .collection-dot:hover,
    .collection-dot:focus-visible {
      transform: translateY(-2px);
      border-color: rgba(215, 178, 109, 0.72);
    }

    .collection-dot.is-active {
      background: var(--bronze);
      border-color: var(--bronze-light);
    }

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

    .counter {
      color: var(--bronze-light);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

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

    .president-quote {
      font-size: 15px;
      line-height: 1.82;
    }

    #mot-president-home .feature-panel > h2 {
      font-size: clamp(1.5rem, 2.7vw, 2.5rem);
      line-height: 1.05;
      text-wrap: balance;
    }

    .president-photo-panel {
      align-items: center;
      justify-content: center;
      gap: 18px;
      padding: 30px;
      min-height: 420px;
    }

    .president-photo {
      width: min(100%, 430px);
      height: clamp(280px, 30vw, 360px);
      object-fit: cover;
      object-position: 30% center;
      border: 1px solid rgba(215, 178, 109, 0.32);
      box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
    }

    .president-photo-caption {
      width: min(100%, 430px);
    }

    .president-photo-caption h3 {
      margin: 8px 0 0;
      font-family: var(--serif);
      font-size: clamp(2.2rem, 4vw, 3.4rem);
      line-height: 0.96;
      letter-spacing: 0;
    }

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

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

    .event-card {
      min-height: 390px;
    }

    .event-date {
      position: absolute;
      top: 18px;
      left: 18px;
      z-index: 2;
      min-width: 76px;
      padding: 11px 12px;
      color: var(--quartz);
      border: 1px solid rgba(215, 178, 109, 0.34);
      background: rgba(8, 8, 8, 0.72);
      text-align: center;
    }

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

    .event-date span {
      display: block;
      margin-top: 4px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .event-card .card-content h3,
    .news-card .card-content h3 {
      font-size: 29px;
    }

    .garage {
      min-height: 360px;
      padding-top: 58px;
      padding-bottom: 58px;
      display: grid;
      align-items: center;
      background:
        linear-gradient(90deg, rgba(8, 8, 8, 0.86), rgba(8, 8, 8, 0.56) 46%, rgba(8, 8, 8, 0.2)),
        linear-gradient(0deg, rgba(8, 8, 8, 0.62), rgba(8, 8, 8, 0.08) 58%),
        url("../garage/cuisine-ouverte.webp") center 50% / cover,
        #181818;
    }

    .garage-content {
      max-width: 560px;
    }

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

    .garage p {
      color: rgba(245, 245, 243, 0.8);
      font-size: 15px;
      line-height: 1.65;
    }

    .garage-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 20px;
    }

    .news {
      background:
        linear-gradient(180deg, rgba(177, 18, 38, 0.06), transparent 28rem),
        var(--carbon);
    }

    .news-card {
      min-height: 360px;
    }

    .footer {
      padding: 84px 34px 30px;
      border-top: 1px solid rgba(215, 178, 109, 0.2);
      background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.82)),
        radial-gradient(circle at 16% 12%, rgba(215, 178, 109, 0.16), transparent 30rem),
        #050505;
    }

    .footer-grid {
      width: min(1180px, 100%);
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(320px, 1.25fr) minmax(180px, 0.55fr) minmax(220px, 0.7fr) minmax(220px, 0.72fr);
      gap: 34px;
      align-items: start;
    }

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

    .footer-panel {
      min-height: 100%;
      padding: 24px;
      border: 1px solid rgba(215, 178, 109, 0.16);
      background: rgba(255, 255, 255, 0.025);
    }

    .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-tagline {
      margin-top: 22px;
      padding-top: 18px;
      border-top: 1px solid rgba(215, 178, 109, 0.14);
      color: var(--bronze-light);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .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;
      overflow-wrap: anywhere;
    }

    .footer-social {
      display: grid;
      gap: 10px;
    }

    .footer-social a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 42px;
      padding: 0 14px;
      border: 1px solid rgba(215, 178, 109, 0.18);
      background: rgba(255, 255, 255, 0.035);
    }

    .footer-social a::after {
      content: "↗";
      color: var(--bronze-light);
      font-size: 12px;
    }

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

    #tickets {
      overflow: hidden;
      border-top: 1px solid rgba(215, 178, 109, 0.2);
      border-bottom: 1px solid rgba(215, 178, 109, 0.2);
      background:
        linear-gradient(90deg, rgba(8, 8, 8, 0.9), rgba(8, 8, 8, 0.68) 48%, rgba(8, 8, 8, 0.44)),
        linear-gradient(0deg, rgba(8, 8, 8, 0.74), rgba(8, 8, 8, 0.08)),
        url("../cars-real/cam-museum-exterior.webp") center / cover;
    }

    #tickets .section-inner {
      padding: 34px;
      border: 1px solid rgba(215, 178, 109, 0.2);
      background: rgba(5, 5, 5, 0.42);
      backdrop-filter: blur(4px);
    }

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

    .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 {
        min-height: 860px;
        padding: 132px 22px 46px;
        background-position: 58% center;
      }

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

      .hero-meta {
        max-width: 100%;
      }

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

      .meta-item:last-child {
        border-bottom: 0;
      }

      .section {
        padding: 78px 22px;
      }

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

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

      .collection-slider {
        min-height: 680px;
      }

      .collection-slide .feature-panel {
        width: calc(100% - 36px);
        margin: 0 18px 18px;
        justify-self: center;
      }

      .garage {
        min-height: 680px;
        padding-top: 96px;
        padding-bottom: 96px;
      }
    }

    @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 {
        min-height: 820px;
        padding: 110px 18px 34px;
      }

      .hero h1 {
        font-size: clamp(2.65rem, 11vw, 4rem);
      }

      .hero-actions,
      .garage-actions {
        display: grid;
      }

      .btn {
        width: 100%;
      }

      .mobile-links,
      .univers-grid,
      .events-grid,
      .news-grid,
      .vehicle-specs {
        grid-template-columns: 1fr;
      }

      .universe-card,
      .event-card,
      .news-card {
        min-height: 350px;
      }

      .card-icon {
        margin-bottom: 54px;
      }

      .feature-panel {
        padding: 28px;
      }

      .feature-media {
        min-height: 330px;
      }

      .collection-slider-controls {
        gap: 8px;
        padding: 11px;
      }

      .collection-arrow {
        width: 40px;
        height: 40px;
      }

      .collection-dot {
        width: 26px;
      }

      .collection-slide .feature-panel {
        padding: 22px;
      }

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

      .title-single-line,
      .title-two-lines {
        white-space: normal;
      }

      #tickets .section-inner {
        padding: 24px;
      }
    }

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