:root {
  --bg: #0f1720;
  --panel: #16212c;
  --panel-2: #111925;
  --text: #ecf2f8;
  --muted: #a5b4c3;
  --line: #263342;
  --primary: #d8a24d;
  --primary-dark: #ba8430;
  --light-bg: #f4f7fa;
  --light-text: #18222d;
  --light-muted: #536171;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(15, 23, 32, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.topbar {
  background: rgba(216, 162, 77, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.topbar-wrap {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar p {
  margin: 0;
  color: #f4d7a3;
  font-size: 0.92rem;
  font-weight: 600;
}
.lang-switcher select {
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  padding: 0.55rem 0.9rem;
  background: rgba(255,255,255,.05);
  color: var(--text);
  font: inherit;
}
.lang-switcher option {
  color: #111;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
}
.logo-mark {
  background: linear-gradient(135deg, var(--primary), #f0c57d);
  color: #111;
  padding: 0.65rem 0.8rem;
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: .05em;
}
.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-text { letter-spacing: .02em; }
.logo-subtext {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}
.site-nav { display: flex; flex-wrap: wrap; gap: 1rem; }
.site-nav a { color: var(--muted); font-weight: 600; }
.site-nav a:hover { color: var(--text); }
.nav-toggle {
  display: none;
  font-size: 1.4rem;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  padding: 0.45rem 0.7rem;
  border-radius: 12px;
}

.hero {
  padding: 5rem 0 4rem;
  background:
    radial-gradient(circle at top right, rgba(216, 162, 77, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent 20%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
h1, h2, h3 { line-height: 1.15; margin: 0 0 1rem; }
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); max-width: 13ch; }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }
.hero-text { color: var(--muted); max-width: 62ch; font-size: 1.06rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin: 1.5rem 0 2rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.3rem;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--primary); color: #111; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary { border-color: var(--line); color: var(--text); background: rgba(255,255,255,0.02); }
.full { width: 100%; }

.stats, .card-grid {
  display: grid;
  gap: 1rem;
}
.stats { grid-template-columns: repeat(3, 1fr); }
.stat-card,
.panel-card,
.info-card,
.truck-card,
.sidebar-card,
.part-card,
.contact-card,
.hero-callout {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.stat-card { padding: 1rem; }
.stat-card strong,
.sidebar-card h3 { display: block; margin-bottom: 0.35rem; }
.stat-card span { color: var(--muted); font-size: 0.95rem; }
.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.panel-card,
.hero-callout { padding: 1.5rem; }
.panel-card ul { margin: 0; padding-left: 1.2rem; color: var(--muted); }
.callout-label {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  font-weight: 700;
}
.callout-phone {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: .45rem;
}
.callout-note {
  color: var(--muted);
  margin-bottom: 0;
}

.section { padding: 5rem 0; }
.section-light {
  background: var(--light-bg);
  color: var(--light-text);
}
.section-light .info-card,
.section-light .sidebar-card,
.section-light .part-card,
.section-light .contact-card,
.section-light .booking-form,
.section-light .truck-card {
  background: var(--white);
  border-color: rgba(20,30,40,0.08);
  box-shadow: 0 15px 35px rgba(11, 23, 36, 0.08);
}
.section-light .eyebrow { color: #a26a17; }
.section-light p,
.section-light li,
.section-light span,
.section-light .form-note,
.section-light .logo-subtext { color: var(--light-muted); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 2rem; }
.section-head.left { text-align: left; margin-left: 0; }
.three-up { grid-template-columns: repeat(3, 1fr); }
.info-card, .truck-card, .part-card, .contact-card, .sidebar-card { padding: 1.4rem; }

.truck-card ul { margin: 0 0 1rem; padding-left: 1.2rem; color: var(--muted); }
.section-light .truck-card ul { color: var(--light-muted); }
.truck-tag {
  display: inline-block;
  background: rgba(216,162,77,0.15);
  color: var(--primary);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
}
.truck-tag.alt { background: rgba(40, 120, 255, 0.12); color: #5a88ff; }
.price { font-size: 1.25rem; font-weight: 800; margin-top: 0.6rem; }

.booking-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
}
.booking-form {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
label, legend { font-weight: 600; font-size: 0.95rem; }
input, select, textarea {
  width: 100%;
  margin-top: 0.4rem;
  background: rgba(255,255,255,0.03);
  color: inherit;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  font: inherit;
}
.section-light input,
.section-light select,
.section-light textarea {
  background: #fff;
  color: var(--light-text);
  border-color: #d6dde5;
}
textarea { resize: vertical; }
.checkbox-group {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  margin: 1rem 0;
}
.section-light .checkbox-group { border-color: #d6dde5; }
.checkbox-group label {
  display: block;
  font-weight: 500;
  margin: 0.45rem 0;
}
.checkbox-group input { width: auto; margin-right: 0.55rem; }
.form-note { margin-top: 0.8rem; color: var(--muted); font-size: 0.92rem; }
.success-message { margin-top: 0.75rem; font-weight: 700; color: var(--primary); }

.parts-tools { margin-bottom: 1.2rem; }
.parts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.part-card p { margin-bottom: 0.3rem; font-weight: 600; }
.part-card span { color: var(--muted); }
.section-light .part-card span { color: var(--light-muted); }
.hidden { display: none !important; }
.language-section { background: var(--panel-2); }
.language-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}
.language-pills span {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  padding: .8rem 1rem;
  border-radius: 999px;
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
}
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-grid,
  .booking-layout,
  .contact-grid,
  .three-up,
  .parts-grid,
  .stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .topbar-wrap,
  .nav-wrap,
  .hero-grid,
  .booking-layout,
  .contact-grid,
  .three-up,
  .parts-grid,
  .stats,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .topbar-wrap {
    display: grid;
    padding: .7rem 0;
  }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% - 1px);
    left: 1rem;
    right: 1rem;
    background: var(--panel);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: var(--shadow);
    flex-direction: column;
  }
  .site-nav.open { display: flex; }
  h1 { max-width: none; }
  .footer-wrap { flex-direction: column; }
}


.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-mark { display:none; }

.logo-image {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
  flex-shrink: 0;
}

.hero-brand {
  margin-bottom: 18px;
}

.hero-logo {
  width: 220px;
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,0.25));
}

@media (max-width: 700px) {
  .logo-image {
    width: 58px;
    height: 58px;
  }

  .hero-logo {
    width: 170px;
    margin: 0 auto;
  }

  .hero-brand {
    text-align: center;
  }

  .logo {
    gap: 10px;
  }
}




.hero-brand{
  display:flex;
  align-items:center;
  gap:1.4rem;
  margin-bottom:1.5rem;
  flex-wrap:nowrap;
  width:100%;
}

.hero-logo{
  width:138px;
  height:138px;
  object-fit:contain;
  flex:0 0 auto;
  background:transparent;
  filter:drop-shadow(0 14px 26px rgba(0,0,0,.32));
}

.hero-brand-text{
  min-width:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.hero-brand-name{
  display:block;
  font-size:clamp(2.8rem, 6vw, 5.6rem);
  line-height:.94;
  font-weight:800;
  letter-spacing:-0.03em;
  color:var(--white);
  white-space:nowrap;
}

.hero-brand-sub{
  display:block;
  margin-top:.6rem;
  font-size:clamp(.85rem, 1.35vw, 1.4rem);
  letter-spacing:.18em;
  color:#d9dde5;
  font-weight:700;
  white-space:nowrap;
}

@media (max-width: 980px){
  .hero-brand-name{font-size:clamp(2.3rem, 7vw, 4rem);}
  .hero-logo{width:118px;height:118px;}
  .hero-brand-sub{letter-spacing:.12em;}
}

@media (max-width: 720px){
  .hero-brand{
    gap:1rem;
    align-items:center;
  }
  .hero-logo{
    width:88px;
    height:88px;
  }
  .hero-brand-name{
    font-size:clamp(1.8rem, 8vw, 2.8rem);
    white-space:normal;
  }
  .hero-brand-sub{
    font-size:.75rem;
    letter-spacing:.08em;
    white-space:normal;
  }
}

.inventory-grid{align-items:stretch}.inventory-truck-card{overflow:hidden;display:flex;flex-direction:column}.truck-card-photo{width:100%;height:220px;object-fit:cover;border-radius:18px;margin-bottom:1rem;border:1px solid rgba(255,255,255,.12);background:#111}.truck-unit{color:var(--gold);font-weight:800;letter-spacing:.04em;margin:.25rem 0 .5rem}.inventory-price{font-size:1.35rem;font-weight:900;color:#fff;margin:.35rem 0 .9rem}.detail-price{font-size:1.8rem}.truck-card-actions{margin-top:auto;display:flex;gap:.7rem;flex-wrap:wrap}.btn-small{padding:.7rem 1rem;font-size:.9rem}.truck-details-wrap{margin-top:3rem;display:grid;gap:2rem}.truck-detail{padding:1.25rem;border:1px solid rgba(255,255,255,.12);border-radius:26px;background:rgba(14,24,36,.68);box-shadow:0 24px 60px rgba(0,0,0,.22)}.truck-detail-head{display:flex;justify-content:space-between;gap:1.25rem;align-items:flex-start;border-bottom:1px solid rgba(255,255,255,.12);padding-bottom:1rem;margin-bottom:1rem}.truck-detail-head h3{font-size:clamp(1.5rem,3vw,2.5rem);margin:.2rem 0}.detail-actions{display:flex;gap:.8rem;flex-wrap:wrap}.detail-grid{display:grid;grid-template-columns:280px 1fr;gap:1rem;align-items:start}.truck-specs{background:rgba(255,255,255,.055);border:1px solid rgba(255,255,255,.1);border-radius:20px;padding:1rem}.truck-specs h4{margin-top:0}.truck-specs ul{padding-left:1.1rem;color:var(--muted);line-height:1.65}.truck-gallery{display:grid;grid-template-columns:repeat(auto-fill,minmax(170px,1fr));gap:.75rem}.gallery-tile{display:block;border-radius:16px;overflow:hidden;border:1px solid rgba(255,255,255,.12);background:#0d1118;aspect-ratio:4/3}.gallery-tile img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .2s ease}.gallery-tile:hover img{transform:scale(1.04)}@media(max-width:800px){.truck-detail-head{flex-direction:column}.detail-grid{grid-template-columns:1fr}.truck-card-photo{height:200px}}
