/* ============================================
   Om Automobile — global.css
   Variables · Reset · Shared utility classes
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* ── Variables ── */
:root {
  --red:      #E63012;
  --red-h:    #c72a0e;
  --dark:     #0d0d0d;
  --dark2:    #111111;
  --dark3:    #1a1a1a;
  --white:    #ffffff;
  --muted:    #888888;
  --border:   rgba(255, 255, 255, 0.07);
  --nav-h:    68px;
  --max-w:    1200px;
  --ease:     0.22s ease;
  --radius:   8px;
  --radius-lg: 14px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: #09090f;
  color: var(--white);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; padding: 0; margin: 0; }
img  { display: block; max-width: 100%; }
button, input, textarea, select { font-family: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ── Focus ── */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Page offset for fixed nav ── */
.page-body { padding-top: var(--nav-h); }

/* ── Container ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem;
}
@media (max-width: 600px) { .container { padding: 0 1.2rem; } }

/* ── Section label / title / sub ── */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.78;
  max-width: 560px;
}

/* ── Buttons ── */
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--ease), transform 0.12s;
}
.btn-red:hover  { background: var(--red-h); }
.btn-red:active { transform: scale(0.97); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 11px 26px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.2);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color var(--ease), background var(--ease);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.05);
}

/* ── Scroll reveal base ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.story-img {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 15px;
}

.story-img img {
    width: 100%;
    height: 100%;
    object-fit: fit;
    display: block;
}