:root {
  --bg: #0a0a0c;
  --bg-alt: #141416;
  --bg-card: #1b1b1e;
  --gold: #d9a441;
  --gold-light: #f0c572;
  --text: #f5f1e8;
  --text-muted: #b8b3a8;
  --border: #2a2a2e;
  --max-width: 900px;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--gold-light);
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 24px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.brand img {
  height: 36px;
  width: auto;
}

.brand span {
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-peterbilt.jpg");
  background-size: cover;
  background-position: center 58%;
  filter: brightness(0.5);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,12,0.65) 0%, rgba(10,10,12,0.55) 45%, rgba(10,10,12,0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 24px;
}

.eyebrow {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 24px;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 36px;
}

.btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.98rem;
  transition: transform 0.15s ease, background 0.15s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gold);
  color: #14100a;
}

.btn-primary:hover {
  background: var(--gold-light);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(245,241,232,0.35);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

/* About */
section {
  padding: 90px 0;
}

.section-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 14px;
  text-align: center;
}

.about h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 20px;
  text-align: center;
}

.about p {
  font-size: 1.08rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 16px;
}

.status-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  text-align: center;
  padding: 28px 0;
  margin-top: 50px;
}

.status-strip .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 10px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.status-strip p {
  color: var(--text-muted);
  font-size: 0.95rem;
  display: inline-block;
}

/* Contact */
.contact {
  background: var(--bg-alt);
  text-align: center;
}

.contact h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.contact > .wrap > p.lead {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 36px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  max-width: 480px;
  margin: 0 auto;
}

.contact-card .email-link {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-light);
  text-decoration: none;
  margin-bottom: 24px;
  word-break: break-word;
}

.contact-card .email-link:hover {
  color: var(--gold);
}

.contact-form {
  text-align: left;
  margin-top: 28px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  margin-top: 16px;
}

.contact-form label:first-child {
  margin-top: 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 11px 12px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
}

.contact-form textarea {
  min-height: 100px;
  resize: vertical;
}

.contact-form button {
  margin-top: 20px;
  width: 100%;
}

.form-status {
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

footer {
  text-align: center;
  padding: 32px 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}
