
:root {
  --black: #050505;
  --dark: #0b0b0b;
  --panel: #151515;
  --red: #d60000;
  --dark-red: #760000;
  --yellow: #ffd400;
  --white: #f7f7f7;
  --muted: #cfcfcf;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}

a { color: inherit; }

.topbar {
  background: linear-gradient(90deg, var(--dark-red), var(--red), var(--dark-red));
  padding: 8px 14px;
  text-align: center;
  font-weight: 900;
  font-size: 14px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(0,0,0,.96);
  border-bottom: 3px solid var(--red);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 26px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--yellow);
  text-decoration: none;
  font-weight: 1000;
  text-transform: uppercase;
  text-shadow: 2px 2px 0 var(--red);
}

.nav-brand img {
  width: 78px;
  height: 56px;
  object-fit: contain;
  background: white;
  border-radius: 7px;
  padding: 3px;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 14px;
}

.nav-links a:hover { color: var(--yellow); }

.menu-btn {
  display: none;
  background: var(--red);
  color: white;
  border: 0;
  border-radius: 6px;
  padding: 10px 14px;
  font-weight: 900;
}

.hero {
  min-height: 88vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 55px 20px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.58), rgba(0,0,0,.92)),
    url("images/todds-1966-lt4-nova.jpg");
  background-size: cover;
  background-position: center;
  border-bottom: 3px solid var(--red);
}

.hero-content { max-width: 1050px; }

.hero-logo {
  width: min(520px, 92vw);
  background: white;
  padding: 12px;
  border-radius: 16px;
  box-shadow: 0 0 45px rgba(214,0,0,.9);
}

h1 {
  color: var(--yellow);
  text-transform: uppercase;
  font-size: clamp(42px, 7vw, 78px);
  margin: 24px 0 12px;
  line-height: .95;
  text-shadow: 5px 5px 0 var(--red);
}

.hero p {
  font-size: clamp(18px, 2.3vw, 25px);
  font-weight: 900;
  max-width: 880px;
  margin: 18px auto;
}

.tagline {
  color: var(--red);
  font-size: clamp(19px, 2.4vw, 27px);
  font-weight: 1000;
  text-transform: uppercase;
}

.btn {
  display: inline-block;
  background: var(--red);
  color: white;
  text-decoration: none;
  padding: 15px 25px;
  margin: 10px 6px;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  font-weight: 1000;
  text-transform: uppercase;
}

.btn.yellow {
  background: var(--yellow);
  color: #000;
}

.btn:hover { opacity: .9; }

.page-header {
  text-align: center;
  padding: 75px 20px;
  background:
    linear-gradient(rgba(0,0,0,.74), rgba(0,0,0,.94)),
    radial-gradient(circle, rgba(214,0,0,.38), rgba(0,0,0,.95));
  border-bottom: 2px solid var(--red);
}

.page-header p {
  font-size: 20px;
  max-width: 850px;
  margin: 18px auto 0;
  line-height: 1.5;
}

section {
  max-width: 1200px;
  margin: auto;
  padding: 58px 20px;
}

h2 {
  color: var(--yellow);
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(31px, 4vw, 43px);
  text-shadow: 3px 3px 0 var(--red);
  margin: 0 0 30px;
}

h3 {
  color: var(--yellow);
  margin-top: 0;
  text-transform: uppercase;
}

p { line-height: 1.58; }

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

.card {
  background: linear-gradient(180deg, var(--panel), #101010);
  border: 1px solid var(--red);
  border-radius: 13px;
  padding: 24px;
  box-shadow: 0 0 14px rgba(214,0,0,.22);
}

.feature {
  background: linear-gradient(135deg, var(--dark-red), #090909 55%, #000);
  border: 2px solid var(--red);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 0 25px rgba(214,0,0,.25);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  border-top: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  background: #090909;
  padding: 28px 20px;
  max-width: none;
}

.stat {
  text-align: center;
  font-weight: 1000;
  text-transform: uppercase;
}

.stat strong {
  color: var(--yellow);
  font-size: 30px;
  display: block;
  text-shadow: 2px 2px 0 var(--red);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
}

.featured-image {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 15px;
  border: 2px solid var(--red);
  box-shadow: 0 0 25px rgba(214,0,0,.4);
}

.build-card {
  padding: 0;
  overflow: hidden;
}

.build-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  display: block;
  border-bottom: 2px solid var(--red);
}

.build-title {
  padding: 18px;
  text-align: center;
  color: var(--yellow);
  font-size: 20px;
  font-weight: 1000;
  text-transform: uppercase;
  text-shadow: 2px 2px 0 var(--red);
}

.price {
  color: var(--red);
  font-size: 36px;
  font-weight: 1000;
  margin: 12px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--panel);
  border-radius: 12px;
  overflow: hidden;
}

th {
  background: var(--red);
  color: white;
  padding: 14px;
  text-transform: uppercase;
}

td {
  padding: 13px;
  border: 1px solid #444;
}

form {
  background: linear-gradient(135deg, var(--dark-red), #130000);
  padding: 30px;
  border-radius: 14px;
  border: 2px solid var(--red);
}

label {
  display: block;
  color: var(--yellow);
  font-weight: 1000;
  margin-top: 13px;
}

input, textarea, select {
  width: 100%;
  padding: 13px;
  margin-top: 7px;
  border: 0;
  border-radius: 6px;
  font-size: 16px;
}

textarea { min-height: 125px; }

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 15px;
}

.notice {
  background: #111;
  border-left: 5px solid var(--yellow);
  border-radius: 8px;
  padding: 18px;
  margin: 0 0 22px;
}

.contact-box a {
  color: var(--yellow);
  text-decoration: none;
}

.map-frame {
  width: 100%;
  height: 420px;
  border: 2px solid var(--red);
  border-radius: 14px;
}

footer {
  background: linear-gradient(90deg, var(--dark-red), var(--red), var(--dark-red));
  color: white;
  text-align: center;
  padding: 25px;
  font-weight: 900;
}

@media (max-width: 900px) {
  .menu-btn { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: #000;
    flex-direction: column;
    padding: 18px;
    border-bottom: 3px solid var(--red);
  }

  .nav-links.show { display: flex; }

  .nav-brand span { font-size: 13px; }

  .split { grid-template-columns: 1fr; }

  .featured-image, .build-card img { height: 280px; }
}


/* Homepage hero background override: no car photo on home screen */
.hero {
  background:
    radial-gradient(circle at center, rgba(214, 0, 0, 0.28), rgba(0, 0, 0, 0.96)),
    linear-gradient(135deg, #140000 0%, #050505 45%, #000000 100%) !important;
  background-size: cover !important;
  background-position: center !important;
}
