:root {
  --bg: #141416;
  --panel: #1e1f22;
  --panel-alt: #2a2b2f;
  --accent: #2438c7;
  --accent-light: #4257e0;
  --text: #f2f2f2;
  --text-dim: #b8b9bd;
  --radius: 4px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', Arial, sans-serif;
  scroll-behavior: smooth;
}

h1, h2, h3, .brand {
  font-family: 'Oswald', 'Segoe UI', Arial, sans-serif;
  letter-spacing: 0.02em;
  margin: 0;
}

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

/* Header */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: var(--panel);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand { font-size: 1.3rem; font-weight: 700; }
.brand span { color: var(--accent-light); }

nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

nav a { font-weight: 600; opacity: 0.85; }
nav a:hover, nav a.active { opacity: 1; color: var(--accent-light); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px 8px;
}

.header-icons { display: flex; gap: 14px; }
.header-icons a {
  width: 34px; height: 34px;
  border: 1px solid var(--text-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}

/* Hero */
.hero {
  width: 100%;
  height: 45vh;
  min-height: 260px;
  max-height: 480px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Sections */
section { padding: 60px 40px; max-width: 1100px; margin: 0 auto; }
section h2 { font-size: 1.6rem; text-align: center; margin-bottom: 36px; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.tile { text-align: center; }
.tile .photo {
  width: 180px; height: 180px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin: 0 auto 16px;
  border: 3px solid var(--panel-alt);
}
.tile h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.05em; }
.tile p { color: var(--text-dim); font-size: 0.9rem; }

.list-columns {
  columns: 2;
  gap: 40px;
  color: var(--text-dim);
  line-height: 1.9;
}

.dealers {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.dealers span {
  background: var(--panel-alt);
  padding: 8px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
}

.callout {
  background: var(--panel);
  border-left: 4px solid var(--accent-light);
  padding: 24px 28px;
  border-radius: var(--radius);
  color: var(--text-dim);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
}
.contact-details p { margin: 10px 0; color: var(--text-dim); }
form { display: grid; gap: 16px; }
label { font-size: 0.85rem; color: var(--text-dim); margin-bottom: 4px; display: block; }
input, textarea {
  width: 100%;
  background: var(--panel);
  border: 1px solid var(--panel-alt);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--text);
  font-family: inherit;
}
button {
  justify-self: start;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  cursor: pointer;
}
button:hover { background: var(--accent-light); }

/* Footer */
footer {
  padding: 30px 40px;
  background: var(--panel);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dim);
  font-size: 0.85rem;
}
.social-icons { display: flex; gap: 14px; }

@media (max-width: 800px) {
  .hero { background-position: 78% center; }
  .grid-3 { grid-template-columns: 1fr; }
  .list-columns { columns: 1; }
  .contact-grid { grid-template-columns: 1fr; }

  header { flex-wrap: wrap; }
  .nav-toggle { display: block; }
  nav { position: relative; width: 100%; order: 3; }
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--panel);
    border-top: 1px solid var(--panel-alt);
    z-index: 20;
  }
  nav ul.open { display: flex; }
  nav ul li { width: 100%; }
  nav ul a { display: block; padding: 14px 24px; }
}
