/* =============================================
   MERIDZ MOTORS — THEMED CSS
   Deep navy + warm amber + editorial serif
   ============================================= */

:root {
  --bg-primary: #0d1b2a;
  --bg-secondary: #112233;
  --bg-card: #0f1e2e;
  --accent: #e8a838;
  --accent-dim: rgba(232, 168, 56, 0.15);
  --accent-border: rgba(232, 168, 56, 0.25);
  --text-primary: #f0ece4;
  --text-secondary: #9aafbf;
  --text-muted: #5a7a8a;
  --border: rgba(255,255,255,0.06);
  --border-accent: rgba(232,168,56,0.2);
}

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

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(13,27,42,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--text-primary);
}
.navbar-tagline {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 40px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-diagonal {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse at 60% 40%, rgba(232,168,56,0.06) 0%, transparent 60%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 80% 50%, black 20%, transparent 70%);
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-kicker {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 500;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 28px;
}
.hero-lede {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat { flex: 1; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── VEHICLE SHOWCASE ── */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.vehicle-showcase {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.vehicle-silhouette {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 32px 16px;
  position: relative;
  overflow: hidden;
}
.vehicle-silhouette::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
}
.vehicle-silhouette svg {
  width: 100%;
  height: auto;
  display: block;
}
.vehicle-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
  text-align: center;
}

/* ── LINEUP SECTION ── */
.lineup {
  padding: 100px 40px;
  background: var(--bg-secondary);
  position: relative;
}
.lineup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
}
.lineup-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.lineup-header {
  margin-bottom: 64px;
}
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 500;
}
.section-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.section-body {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.7;
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.brand-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: border-color 0.2s;
}
.brand-card:hover {
  border-color: var(--border-accent);
}
.brand-card-plus {
  border-style: dashed;
  border-color: var(--border-accent);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.brand-icon {
  margin-bottom: 20px;
  opacity: 0.9;
}
.brand-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.brand-models {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}
.brand-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--accent);
  border: 1px solid var(--border-accent);
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--accent-dim);
}
.plus-ring {
  width: 56px;
  height: 56px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 20px;
}
.lineup-disclaimer {
  margin-top: 40px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

/* ── SERVICES SECTION ── */
.services {
  padding: 100px 40px;
  background: var(--bg-primary);
}
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
}
.service-card {
  padding: 48px 40px;
  background: var(--bg-card);
  position: relative;
}
.service-left { border-radius: 12px 0 0 12px; }
.service-right { border-radius: 0 12px 12px 0; }
.service-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-dim);
  line-height: 1;
  margin-bottom: 24px;
}
.service-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.service-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-list li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}
.service-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 10px;
}

/* ── WHY SECTION ── */
.why {
  padding: 100px 40px;
  background: var(--bg-secondary);
}
.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
}
.why-text p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}
.why-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.why-tag {
  font-size: 12px;
  color: var(--accent);
  border: 1px solid var(--border-accent);
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--accent-dim);
}
.quote-block {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  padding: 36px;
  margin-bottom: 40px;
}
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  line-height: 0.5;
  color: var(--accent);
  margin-bottom: 16px;
  opacity: 0.6;
}
.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}
.quote-source {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.data-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.data-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.data-value {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  min-width: 100px;
  line-height: 1;
}
.data-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── CLOSING SECTION ── */
.closing {
  padding: 120px 40px;
  background: var(--bg-primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(232,168,56,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 28px;
}
.closing-body {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 48px;
}
.closing-divider {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 32px;
}
.closing-statement {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--accent);
  letter-spacing: 0.04em;
}

/* ── FOOTER ── */
.footer {
  padding: 48px 40px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo-text {
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--text-secondary);
}
.footer-meta { text-align: right; }
.footer-address {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 400px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-right { display: none; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .service-left, .service-right { border-radius: 0; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-meta { text-align: center; }
}
@media (max-width: 600px) {
  .navbar { padding: 16px 20px; }
  .hero { padding: 100px 20px 60px; }
  .hero-headline { font-size: 36px; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .stat-divider { display: none; }
  .brand-grid { grid-template-columns: 1fr; }
  .lineup, .services, .why { padding: 60px 20px; }
  .closing { padding: 80px 20px; }
  .footer { padding: 32px 20px; }
}