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

:root {
  --red:      #c0282a;
  --red-dark: #9b1f21;
  --dark:     #1a1e26;
  --charcoal: #2c3140;
  --gray:     #555e6e;
  --light:    #f4f5f7;
  --white:    #ffffff;
  --border:   #dde0e6;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

/* ── NAV ────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
  box-shadow: 0 2px 12px rgba(0,0,0,.4);
}

.nav-logo {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-decoration: none;
  line-height: 1.2;
}

.nav-logo span {
  display: block;
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #aab0be;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: #c8cdd8;
  text-decoration: none;
  font-size: .875rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .2s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: .45rem 1.1rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background .2s !important;
}

.nav-cta:hover { background: var(--red-dark) !important; }

/* ── HERO ───────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('images/car-at-pump.jpg') center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15, 18, 26, .82) 0%,
    rgba(15, 18, 26, .55) 60%,
    rgba(15, 18, 26, .25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 8rem 2rem 4rem;
  margin-left: max(4vw, 2rem);
}

.hero-eyebrow {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -.01em;
}

.hero-sub {
  font-size: 1.1rem;
  color: #c8cdd8;
  max-width: 480px;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: var(--red);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  padding: .85rem 1.8rem;
  border-radius: 5px;
  text-decoration: none;
  letter-spacing: .02em;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 18px rgba(192, 40, 42, .45);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.btn-primary svg { flex-shrink: 0; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: transparent;
  color: var(--white);
  font-size: .95rem;
  font-weight: 600;
  padding: .75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,.45);
  transition: border-color .2s, background .2s;
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
}

.hero-hours-badge {
  position: relative;
  z-index: 1;
  align-self: flex-end;
  margin: 0 max(4vw, 2rem) 3rem auto;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  color: var(--white);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  text-align: center;
  min-width: 200px;
}

.hero-hours-badge .badge-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #aab0be;
  margin-bottom: .5rem;
}

.hero-hours-badge .badge-time {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .35rem;
}

.hero-hours-badge .badge-days {
  font-size: .82rem;
  color: #c8cdd8;
}

.hero-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

/* ── TRUST BAR ──────────────────────────── */
.trust-bar {
  background: var(--charcoal);
  padding: 1rem 2rem;
}

.trust-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: #c8cdd8;
  font-size: .9rem;
  font-weight: 500;
}

.trust-item svg { color: var(--red); flex-shrink: 0; }

/* ── SECTION SHARED ─────────────────────── */
section { padding: 5rem 2rem; }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  color: var(--red);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -.01em;
}

.section-body {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.75;
}

/* ── SERVICES ───────────────────────────── */
#services { background: var(--light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: box-shadow .2s, transform .2s;
}

.service-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.1);
  transform: translateY(-2px);
}

.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: #fee2e2;
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .3rem;
}

.service-card p {
  font-size: .875rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ── ABOUT ──────────────────────────────── */
#about .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 1rem;
}

.about-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
}

.about-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.about-text { padding-right: 1rem; }

.about-text .section-body { max-width: 100%; margin-bottom: 1.5rem; }

.value-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1.5rem;
}

.value-list li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .95rem;
  color: var(--dark);
  font-weight: 500;
}

.value-list li::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ── SHOP PHOTO BANNER ──────────────────── */
.shop-banner {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.shop-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.shop-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,18,26,.1) 0%,
    rgba(15,18,26,.6) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 3rem 4rem;
}

.shop-banner-text {
  color: var(--white);
  max-width: 600px;
}

.shop-banner-text h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: .5rem;
}

.shop-banner-text p {
  font-size: 1.05rem;
  color: #c8cdd8;
}

/* ── WHY US ─────────────────────────────── */
#why { background: var(--dark); color: var(--white); }

#why .section-title { color: var(--white); }
#why .section-body  { color: #8d95a8; max-width: 100%; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.why-card {
  border-top: 3px solid var(--red);
  padding-top: 1.5rem;
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .6rem;
  color: var(--white);
}

.why-card p {
  font-size: .9rem;
  color: #8d95a8;
  line-height: 1.65;
}

/* ── HOURS & LOCATION ───────────────────── */
#contact { background: var(--light); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.25rem;
}

.contact-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.contact-card h3 svg { color: var(--red); }

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }

.hours-table td {
  padding: .65rem 0;
  font-size: .9rem;
}

.hours-table td:first-child {
  color: var(--gray);
  font-weight: 500;
  width: 45%;
}

.hours-table td:last-child {
  font-weight: 600;
  color: var(--dark);
  text-align: right;
}

.hours-closed { color: #9ca3af !important; font-style: italic; }

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-item {
  display: flex;
  gap: 1rem;
}

.info-item svg {
  color: var(--red);
  flex-shrink: 0;
  margin-top: .1rem;
}

.info-item-text { font-size: .95rem; line-height: 1.6; }
.info-item-text strong { display: block; font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gray); margin-bottom: .2rem; }

.cta-block {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.cta-block a {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: var(--red);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  padding: .75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background .2s;
}

.cta-block a:hover { background: var(--red-dark); }

/* ── FOOTER ─────────────────────────────── */
footer {
  background: var(--dark);
  color: #8d95a8;
  padding: 2.5rem 2rem;
  text-align: center;
  font-size: .875rem;
  line-height: 1.7;
}

footer strong { color: var(--white); }

footer a { color: #c8cdd8; text-decoration: none; }
footer a:hover { color: var(--white); }

footer .footer-divider { margin: .5rem 0; }

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 900px) {
  #about .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-text { padding-right: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-hours-badge { display: none; }
  .hero-row { display: block; }

  .shop-banner-overlay { padding: 2rem; }
  .shop-banner-text h2 { font-size: 1.5rem; }
}

@media (max-width: 680px) {
  nav { padding: 0 1.25rem; }
  .nav-links { gap: 1rem; }
  .nav-links li:not(:last-child) { display: none; }
  .hero-content { margin-left: 0; padding: 6rem 1.25rem 3rem; }
  section { padding: 3.5rem 1.25rem; }
  .shop-banner { height: 340px; }
}
