 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --black:  #080808;
      --dark:   #111111;
      --dark2:  #1a1a1a;
      --gold:   #c9a46e;
      --gold2:  #e8c98a;
      --white:  #fafaf8;
      --gray:   #888880;
      --light:  #f0ede6;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--black);
      color: var(--white);
      font-family: 'Inter', sans-serif;
      font-weight: 300;
      overflow-x: hidden;
      cursor: none;
    }

    /* CURSOR */
    .cursor {
      position: fixed;
      width: 10px; height: 10px;
      background: var(--gold);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: width 0.3s, height 0.3s;
      mix-blend-mode: difference;
    }
    .cursor-ring {
      position: fixed;
      width: 36px; height: 36px;
      border: 1px solid rgba(201,164,110,0.6);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition: width 0.3s, height 0.3s, opacity 0.3s;
    }
    .cursor.hovering { width: 6px; height: 6px; }
    .cursor-ring.hovering { width: 56px; height: 56px; opacity: 0.4; }

    /* NAV */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 20px 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(8,8,8,0.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(201,164,110,0.1);
      transition: padding 0.4s, border-color 0.4s;
    }
    nav.scrolled {
      padding: 14px 48px;
      border-bottom-color: rgba(201,164,110,0.2);
    }
    .nav-logo img {
      height: 46px;
      width: auto;
      transition: height 0.4s;
    }
    nav.scrolled .nav-logo img { height: 36px; }
    .nav-links {
      display: flex;
      gap: 36px;
      align-items: center;
      list-style: none;
    }
    .nav-links a {
      color: rgba(250,250,248,0.8);
      text-decoration: none;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      position: relative;
      transition: color 0.3s;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 1px;
      background: var(--gold);
      transition: width 0.3s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta {
      border: 1px solid var(--gold) !important;
      color: var(--gold) !important;
      padding: 9px 22px;
      font-size: 10px !important;
      letter-spacing: 0.2em !important;
      transition: background 0.3s, color 0.3s !important;
    }
    .nav-cta::after { display: none !important; }
    .nav-cta:hover { background: var(--gold) !important; color: var(--black) !important; }

    /* HERO */
    #hero {
      position: relative;
      height: 100vh;
      min-height: 700px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      overflow: hidden;
    }
    @keyframes kenBurns {
      from { transform: scale(1.18); }
      to   { transform: scale(1.0); }
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center 40%;
      transform-origin: 30% 50%;
      animation: kenBurns 18s ease-out forwards;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(8,8,8,0.25) 0%,
        rgba(8,8,8,0.1) 40%,
        rgba(8,8,8,0.7) 75%,
        rgba(8,8,8,0.98) 100%
      );
    }
    .hero-content {
      position: relative;
      z-index: 2;
      padding: 0 48px 80px;
      max-width: 900px;
    }
    .hero-content::before {
      content: '';
      position: absolute;
      left: 0; right: 0; bottom: 0; top: -60px;
      background: radial-gradient(130% 105% at 22% 88%,
        rgba(8,8,8,0.55) 0%, rgba(8,8,8,0.28) 42%, rgba(8,8,8,0) 72%);
      z-index: -1;
      pointer-events: none;
    }
    .hero-eyebrow {
      font-size: 12.5px;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold2);
      font-weight: 600;
      margin-bottom: 20px;
      text-shadow: 0 0 2px rgba(0,0,0,0.95), 0 1px 3px rgba(0,0,0,0.9), 0 2px 16px rgba(0,0,0,0.85);
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.9s 0.4s forwards;
    }
    .hero-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(72px, 10vw, 148px);
      line-height: 0.9;
      letter-spacing: 0.02em;
      color: var(--white);
      text-shadow: 0 2px 6px rgba(0,0,0,0.45), 0 6px 34px rgba(0,0,0,0.55);
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 1s 0.7s forwards;
      margin-left: -5px;
    }
    .hero-title span { color: var(--gold); }
    .hero-sub {
      margin-top: 28px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-style: italic;
      color: rgba(250,250,248,0.92);
      text-shadow: 0 1px 3px rgba(0,0,0,0.85), 0 2px 16px rgba(0,0,0,0.6);
      max-width: 520px;
      line-height: 1.6;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.9s 1s forwards;
    }
    .hero-actions {
      margin-top: 40px;
      display: flex;
      gap: 18px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.9s 1.3s forwards;
    }
    .btn-primary {
      background: var(--gold);
      color: var(--black);
      padding: 15px 36px;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      text-decoration: none;
      display: inline-block;
      transition: background 0.3s, transform 0.2s;
    }
    .btn-primary:hover { background: var(--gold2); transform: translateY(-2px); }
    .btn-ghost {
      border: 1px solid rgba(250,250,248,0.4);
      color: var(--white);
      padding: 15px 36px;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      text-decoration: none;
      display: inline-block;
      transition: border-color 0.3s, color 0.3s, transform 0.2s;
    }
    .btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
    .hero-scroll {
      position: absolute;
      bottom: 30px; right: 48px;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      opacity: 0;
      animation: fadeIn 1s 2s forwards;
    }
    .hero-scroll span {
      font-size: 9px;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gray);
      writing-mode: vertical-rl;
    }
    .scroll-line {
      width: 1px; height: 60px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      animation: scrollPulse 2s infinite;
    }

    /* MARQUEE */
    .marquee-strip {
      background: var(--gold);
      padding: 14px 0;
      overflow: hidden;
      white-space: nowrap;
    }
    .marquee-inner {
      display: inline-flex;
      animation: marquee 22s linear infinite;
    }
    .marquee-inner span {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--black);
      padding: 0 32px;
    }
    .marquee-dot { color: rgba(8,8,8,0.4); font-size: 18px; line-height: 1; vertical-align: middle; }

    /* SECTION HEADERS */
    .section-label {
      font-size: 10px;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(48px, 6vw, 88px);
      line-height: 0.95;
      letter-spacing: 0.02em;
    }
    .section-divider {
      width: 60px; height: 1px;
      background: var(--gold);
      margin: 28px 0;
    }

    /* COLLECTION */
    #collection { padding: 100px 48px; background: var(--black); }
    .collection-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 56px;
    }
    .collection-header .view-all {
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      text-decoration: none;
      border-bottom: 1px solid rgba(201,164,110,0.3);
      padding-bottom: 4px;
      transition: border-color 0.3s;
    }
    .collection-header .view-all:hover { border-color: var(--gold); }
    .collection-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-template-rows: 340px 340px;
      gap: 4px;
    }
    .car-card { position: relative; overflow: hidden; cursor: none; }
    .car-card:nth-child(1) { grid-column: 1 / 6;  grid-row: 1; }
    .car-card:nth-child(2) { grid-column: 6 / 9;  grid-row: 1; }
    .car-card:nth-child(3) { grid-column: 9 / 13; grid-row: 1; }
    .car-card:nth-child(4) { grid-column: 1 / 5;  grid-row: 2; }
    .car-card:nth-child(5) { grid-column: 5 / 13; grid-row: 2; }
    .car-card-bg {
      position: absolute; inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform 0.7s cubic-bezier(.25,.46,.45,.94), filter 0.5s;
      filter: brightness(0.55) saturate(0.8);
    }
    .car-card:hover .car-card-bg { transform: scale(1.06); filter: brightness(0.75) saturate(1); }
    .car-card-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(8,8,8,0.9) 0%, rgba(8,8,8,0.2) 60%, transparent 100%);
    }
    .car-card-content {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 28px;
      transform: translateY(8px);
      transition: transform 0.4s;
    }
    .car-card:hover .car-card-content { transform: translateY(0); }
    .car-card-decade { font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
    .car-card-title { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 0.04em; color: var(--white); line-height: 1; }
    .car-card-arrow {
      position: absolute;
      top: 24px; right: 24px;
      width: 36px; height: 36px;
      border: 1px solid rgba(201,164,110,0.4);
      display: flex; align-items: center; justify-content: center;
      opacity: 0;
      transform: translate(4px, -4px);
      transition: opacity 0.3s, transform 0.3s;
    }
    .car-card:hover .car-card-arrow { opacity: 1; transform: translate(0, 0); }
    .car-card-arrow svg { width: 14px; height: 14px; fill: none; stroke: var(--gold); stroke-width: 1.5; }
    .car-card a { text-decoration: none; display: block; width: 100%; height: 100%; }

    /* PHILOSOPHY */
    #philosophy {
      position: relative;
      min-height: 600px;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .philosophy-bg {
      position: absolute; inset: 0;
      background-image: url('_media/Interior.jpeg');
      background-size: cover;
      background-position: center;
      filter: brightness(0.2) saturate(0.4);
    }
    .philosophy-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.6) 100%);
    }
    .philosophy-content {
      position: relative;
      z-index: 2;
      max-width: 860px;
      margin: 0 auto;
      padding: 100px 48px;
      text-align: center;
    }
    .philosophy-quote-mark {
      font-family: 'Cormorant Garamond', serif;
      font-size: 120px;
      line-height: 0.5;
      color: var(--gold);
      opacity: 0.4;
      margin-bottom: 20px;
    }
    .philosophy-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(22px, 3vw, 32px);
      font-style: italic;
      font-weight: 300;
      line-height: 1.65;
      color: var(--light);
    }
    .philosophy-text strong { font-style: normal; font-weight: 600; color: var(--gold); }
    .philosophy-attribution {
      margin-top: 40px;
      font-size: 11px;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gray);
    }

    /* ABOUT */
    #about { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
    .about-image-panel {
      position: relative;
      overflow: hidden;
      background: var(--dark2);
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 480px;
    }
    .about-image-panel img {
      max-width: 80%;
      max-height: 520px;
      width: auto; height: auto;
      object-fit: contain;
      filter: grayscale(20%) brightness(0.88);
      transition: filter 0.5s, transform 0.5s;
      position: relative;
      z-index: 0;
    }
    .about-image-panel:hover img { filter: grayscale(0%) brightness(0.95); transform: scale(1.02); }
    .about-image-frame {
      position: absolute; inset: 24px;
      border: 1px solid rgba(201,164,110,0.25);
      pointer-events: none;
      z-index: 1;
    }
    .about-gold-bar {
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 4px;
      background: var(--gold);
      z-index: 2;
    }
    .about-text-panel {
      background: var(--dark);
      padding: 80px 64px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .about-body {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      line-height: 1.8;
      color: rgba(250,250,248,0.75);
      margin-top: 16px;
    }
    .about-body p + p { margin-top: 20px; }
    .about-sig { margin-top: 40px; }
    .about-sig img { height: 52px; filter: brightness(0) invert(1) opacity(0.6); }
    .about-sig-name { margin-top: 8px; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gray); }

    /* GALLERY */
    #gallery { background: var(--black); padding: 80px 0; overflow: hidden; }
    .gallery-header { padding: 0 48px; margin-bottom: 40px; }
    .gallery-track {
      display: flex;
      gap: 4px;
      animation: galleryScroll 30s linear infinite;
      width: max-content;
    }
    .gallery-item { width: 380px; height: 260px; flex-shrink: 0; overflow: hidden; }
    .gallery-media {
      width: 100%; height: 100%;
      background-size: cover;
      background-position: center;
      filter: brightness(0.72) saturate(0.85);
      -webkit-user-select: none; user-select: none;
      -webkit-user-drag: none; -webkit-touch-callout: none;
    }

    /* STATS */
    #stats {
      background: var(--dark2);
      border-top: 1px solid rgba(201,164,110,0.1);
      border-bottom: 1px solid rgba(201,164,110,0.1);
      padding: 72px 48px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 48px;
    }
    .stat-item { text-align: center; padding: 24px; position: relative; }
    .stat-item::after {
      content: '';
      position: absolute;
      right: 0; top: 20%; bottom: 20%;
      width: 1px;
      background: rgba(201,164,110,0.15);
    }
    .stat-item:last-child::after { display: none; }
    .stat-number { font-family: 'Bebas Neue', sans-serif; font-size: 72px; line-height: 1; color: var(--gold); letter-spacing: 0.02em; }
    .stat-label { margin-top: 8px; font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gray); }

    /* CONTACT */
    #contact { position: relative; padding: 120px 48px; background: var(--dark); overflow: hidden; }
    .contact-bg-text {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      font-family: 'Bebas Neue', sans-serif;
      font-size: 22vw;
      color: rgba(255,255,255,0.018);
      white-space: nowrap;
      pointer-events: none;
      letter-spacing: 0.05em;
    }
    .contact-inner {
      position: relative;
      z-index: 2;
      max-width: 680px;
      margin: 0 auto;
      text-align: center;
    }
    .contact-phone {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(52px, 7vw, 96px);
      letter-spacing: 0.05em;
      color: var(--white);
      margin-top: 24px;
      text-decoration: none;
      display: block;
      transition: color 0.3s;
    }
    .contact-phone:hover { color: var(--gold); }
    .contact-body {
      margin-top: 20px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-style: italic;
      color: var(--gray);
      line-height: 1.6;
    }
    .contact-cta { margin-top: 48px; }

    /* FOOTER */
    footer {
      background: var(--black);
      border-top: 1px solid rgba(255,255,255,0.06);
      padding: 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .footer-bird {
      height: 40px; width: auto;
      display: block;
      filter: brightness(0) invert(1);
      opacity: 0.5;
    }
    .footer-links { display: flex; gap: 28px; list-style: none; }
    .footer-links a {
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gray);
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-links a:hover { color: var(--gold); }
    .footer-copy { font-size: 10px; color: rgba(136,136,128,0.5); letter-spacing: 0.1em; }

    /* ANIMATIONS */
    @keyframes fadeUp  { to { opacity: 1; transform: translateY(0); } }
    @keyframes fadeIn  { to { opacity: 1; } }
    @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    @keyframes scrollPulse {
      0%, 100% { opacity: 1; transform: scaleY(1); }
      50%       { opacity: 0.3; transform: scaleY(0.6); }
    }
    @keyframes galleryScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* SCROLL REVEAL */
    .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s ease, transform 0.9s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.35s; }

    /* MOBILE */
    @media (max-width: 900px) {
      nav { padding: 16px 24px; }
      nav.scrolled { padding: 12px 24px; }
      .nav-links { display: none; }
      .hero-content { padding: 0 24px 72px; }
      .hero-scroll { right: 24px; }
      #collection { padding: 64px 16px; }
      .collection-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 240px);
      }
      .car-card:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
      .car-card:nth-child(2) { grid-column: 1 / 2; grid-row: 2; }
      .car-card:nth-child(3) { grid-column: 2 / 3; grid-row: 2; }
      .car-card:nth-child(4) { grid-column: 1 / 2; grid-row: 3; }
      .car-card:nth-child(5) { grid-column: 2 / 3; grid-row: 3; }
      .collection-header { flex-direction: column; align-items: flex-start; gap: 16px; }
      #about { grid-template-columns: 1fr; }
      .about-image-panel { min-height: 340px; }
      .about-image-panel img { max-width: 70%; max-height: 320px; }
      .about-text-panel { padding: 48px 24px; }
      #stats { grid-template-columns: repeat(2, 1fr); }
      .stat-item:nth-child(2)::after { display: none; }
      #contact { padding: 80px 24px; }
      .philosophy-content { padding: 80px 24px; }
      footer { flex-direction: column; gap: 24px; text-align: center; padding: 32px 24px; }
    }