/* ============================================================
   NINETIES — Style
   ============================================================ */

@font-face {
  font-family: 'AsgardTrial';
  src: url('../fonts/AsgardTrial-WideRegular.woff2') format('woff2'),
       url('../fonts/AsgardTrial-WideRegular.woff') format('woff');
  font-weight: normal; font-style: normal;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Regular.woff2') format('woff2'),
       url('../fonts/Gilroy-Regular.woff') format('woff');
  font-weight: 400; font-style: normal;
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: #0d0d0d;
  color: #fff;
  font-family: 'Gilroy', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.75;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
::selection { background: #FF3800; color: #0d0d0d; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: #0d0d0d;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav__logo img { height: 22px; width: auto; }

.nav__contact {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888;
  margin-left: auto;
}
.nav__contact:hover { color: #fff; }

/* Invisible placeholder for left side to keep logo truly centred */
.nav__spacer { width: 60px; }

/* ============================================================
   HERO  — 2×2 grid + orange logo overlay
   ============================================================ */
.hero {
  margin-top: 60px;
  position: relative;
  height: calc(100vh - 60px);
  min-height: 480px;
  max-height: 860px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  width: 100%;
  height: 100%;
  gap: 3px;
}

.hero__cell {
  overflow: hidden;
  background: #111;
}
.hero__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0.45);
  pointer-events: none;
}

.hero__logo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}
.hero__logo img {
  width: clamp(240px, 44vw, 600px);
  height: auto;
}

/* ============================================================
   ABOUT NINETIES  — intro section
   ============================================================ */
.about-nineties {
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Tags row */
.about-nineties__tags {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 14px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #666;
}
.about-nineties__tags span { padding: 0 16px; }
.about-nineties__tags span:first-child { padding-left: 0; }
.about-nineties__tags .sep {
  color: #333;
  padding: 0;
}

/* Two-column body */
.about-nineties__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* LEFT: title + text */
.about-nineties__left {
  padding: 56px 48px 56px 40px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.about-nineties__title {
  font-family: 'AsgardTrial', 'Arial Narrow', Arial, sans-serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.about-nineties__text {
  font-size: 13px;
  line-height: 1.85;
  color: #888;
  max-width: 520px;
}
.about-nineties__text em { color: #aaa; font-style: italic; }

/* RIGHT: numbered vehicle list */
.about-nineties__right {
  padding: 56px 40px 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vehicle-index { border-top: 1px solid rgba(255,255,255,0.08); }
.vehicle-index__item {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.vehicle-index__num {
  font-size: 11px;
  color: #FF3800;
  font-variant-numeric: tabular-nums;
}
.vehicle-index__name {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.vehicle-index__year {
  font-size: 12px;
  color: #555;
  letter-spacing: 0.06em;
}

/* ============================================================
   VEHICLE SECTIONS
   ============================================================ */
.vehicle {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Metadata bar: year / transmission */
.vehicle__meta {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #555;
}
.vehicle__meta .sep { color: #333; }

/* Header: title left + // 0X right */
.vehicle__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 40px 32px;
  gap: 20px;
}

.vehicle__title {
  font-family: 'AsgardTrial', 'Arial Narrow', Arial, sans-serif;
  font-size: clamp(48px, 6.5vw, 92px);
  font-weight: normal;
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: 0.02em;
}
.vehicle__title span { display: block; }
.vehicle__title .w { color: #fff; }
.vehicle__title .o { color: #FF3800; }

.vehicle__index {
  font-family: 'AsgardTrial', 'Arial Narrow', Arial, sans-serif;
  font-size: clamp(80px, 12vw, 160px);
  color: #fff;
  opacity: 0.05;
  line-height: 0.85;
  letter-spacing: -0.04em;
  user-select: none;
  flex-shrink: 0;
  align-self: flex-start;
}

/* Gallery: big image on right, 3 small on left column */
.vehicle__gallery {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 3px;
  padding: 0 40px;
}

.vehicle__thumbs {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.vehicle__thumb {
  overflow: hidden;
  background: #111;
  flex: 1;
}
.vehicle__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vehicle__main-img {
  overflow: hidden;
  background: #111;
}
.vehicle__main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Description */
.vehicle__desc {
  padding: 32px 40px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.vehicle__desc-text {
  font-size: 13px;
  line-height: 1.85;
  color: #777;
}

/* Big full-width bottom image */
.vehicle__full-img {
  width: 100%;
  overflow: hidden;
  background: #111;
  border-top: 3px solid rgba(255,255,255,0.08);
}
.vehicle__full-img img {
  width: 100%;
  height: 70vh;
  min-height: 360px;
  max-height: 700px;
  object-fit: cover;
  display: block;
}

/* ============================================================
   ABOUT ME
   ============================================================ */
.about-me {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 64px 40px;
}

.about-me__title {
  font-family: 'AsgardTrial', 'Arial Narrow', Arial, sans-serif;
  font-size: clamp(44px, 6vw, 88px);
  font-weight: normal;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin-bottom: 40px;
}

.about-me__content {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}

.about-me__portrait {
  overflow: hidden;
  background: #111;
  aspect-ratio: 3/4;
}
.about-me__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.about-me__text {
  font-size: 14px;
  line-height: 1.9;
  color: #888;
  max-width: 600px;
}
.about-me__text em { font-style: italic; color: #aaa; }

/* ============================================================
   LET'S TALK
   ============================================================ */
.letstalk {
  background: #FF3800;
  padding: 72px 40px 64px;
}

.letstalk__title {
  font-family: 'AsgardTrial', 'Arial Narrow', Arial, sans-serif;
  font-size: clamp(56px, 10vw, 140px);
  font-weight: normal;
  text-transform: lowercase;
  line-height: 0.88;
  letter-spacing: 0.01em;
  margin-bottom: 48px;
  color: #fff;
}

.letstalk__form {
  display: flex;
  flex-direction: column;
  gap: 3px;
  max-width: 520px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  margin-bottom: 4px;
}

.form-field input,
.form-field textarea {
  background: #fff;
  border: none;
  outline: none;
  padding: 13px 14px;
  font-family: 'Gilroy', sans-serif;
  font-size: 13px;
  color: #222;
  width: 100%;
  resize: none;
  appearance: none;
}
.form-field textarea { height: 100px; }

.letstalk__submit {
  margin-top: 12px;
  align-self: flex-start;
  background: #0d0d0d;
  color: #fff;
  font-family: 'Gilroy', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
}
.letstalk__submit:hover { background: #222; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  background: #0d0d0d;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* Large nineties cursive image as footer bg */
.footer__bg {
  width: 100%;
  display: block;
  opacity: 0.18;
}

.footer__bottom {
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer__links {
  display: flex;
  gap: 28px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #444;
}
.footer__links a:hover { color: #888; }

.footer__credit {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #333;
}

/* ============================================================
   RESPONSIVE — Tablet ≤ 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .nav { padding: 0 24px; }

  .about-nineties__tags { padding: 12px 24px; }
  .about-nineties__left { padding: 44px 32px 44px 24px; }
  .about-nineties__right { padding: 44px 24px 44px 32px; }

  .vehicle__meta { padding: 14px 24px; }
  .vehicle__header { padding: 32px 24px 24px; }
  .vehicle__gallery { padding: 0 24px; }
  .vehicle__desc { padding: 28px 24px 40px; }

  .about-me { padding: 52px 24px; }
  .letstalk { padding: 56px 24px 52px; }
  .footer__bottom { padding: 18px 24px; }

  .vehicle__title { font-size: clamp(40px, 5.5vw, 72px); }
}

/* ============================================================
   RESPONSIVE — Mobile ≤ 768px
   ============================================================ */
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav__logo img { height: 18px; }

  /* Hero: keep 2×2 but shorter */
  .hero {
    height: 60vw;
    min-height: 280px;
    max-height: 480px;
  }
  .hero__logo img { width: 72vw; }

  /* About Nineties: stack */
  .about-nineties__tags {
    padding: 12px 20px;
    flex-wrap: wrap;
    gap: 4px;
  }
  .about-nineties__tags span { padding: 0 8px; }

  .about-nineties__body { grid-template-columns: 1fr; }
  .about-nineties__left {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 36px 20px;
  }
  .about-nineties__right { padding: 32px 20px; }

  /* Vehicles */
  .vehicle__meta { padding: 12px 20px; gap: 16px; }
  .vehicle__header { padding: 28px 20px 20px; flex-wrap: wrap; }
  .vehicle__index { font-size: 70px; opacity: 0.06; }
  .vehicle__gallery {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 8px;
  }
  .vehicle__thumbs { flex-direction: row; }
  .vehicle__thumb { aspect-ratio: 4/3; min-height: 100px; }
  .vehicle__main-img { aspect-ratio: 16/9; }
  .vehicle__main-img img { height: 100%; }
  .vehicle__desc {
    grid-template-columns: 1fr;
    padding: 24px 20px 36px;
    gap: 0;
  }
  .vehicle__full-img img { height: 55vw; min-height: 220px; }

  /* About me */
  .about-me { padding: 44px 20px; }
  .about-me__content { grid-template-columns: 1fr; gap: 28px; }
  .about-me__portrait { max-width: 180px; aspect-ratio: 3/4; }

  /* Let's talk */
  .letstalk { padding: 48px 20px 44px; }

  /* Footer */
  .footer__bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
    padding: 18px 20px;
  }
  .footer__links { flex-wrap: wrap; justify-content: center; gap: 16px; }
}

/* ============================================================
   RESPONSIVE — Small mobile ≤ 480px
   ============================================================ */
@media (max-width: 480px) {
  .about-nineties__title { font-size: 28px; }
  .vehicle__title { font-size: 38px; }
  .vehicle__thumb { min-height: 80px; }
  .about-me__title { font-size: 40px; }
  .letstalk__title { font-size: 52px; }

  .vehicle__thumbs {
    flex-wrap: wrap;
  }
  .vehicle__thumb { flex: 1 1 30%; }
}
