/* ─── Tokens ─── */
:root {
  --red:        #DC2626;
  --red-dark:   #B91C1C;
  --red-dim:    rgba(220, 38, 38, 0.15);
  --dark:       #0f172a;
  --dark-2:     #1e293b;
  --dark-3:     #334155;
  --text:       #0f172a;
  --muted:      #64748b;
  --bg:         #ffffff;
  --off-white:  #f8fafc;
  --border:     #e2e8f0;
  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:     0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.07);
  --shadow-lg:  0 10px 40px rgba(0,0,0,.15), 0 4px 12px rgba(0,0,0,.08);
  --transition: 0.22s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ─── HERO ─── */
.hero {
  background: var(--dark);
  background-image:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(220,38,38,.18) 0%, transparent 70%);
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 32px;
  position: relative;
  overflow: hidden;
}

/* subtle texture lines */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,.018) 0px,
    rgba(255,255,255,.018) 1px,
    transparent 1px,
    transparent 28px
  );
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  position: relative;
  z-index: 1;
}

/* Logo badge */
.hero-badge {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 20px 32px 16px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-logo {
  width: 300px;
  height: auto;
}

.hero-company-name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Heading */
.hero-heading {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.02em;
}

.hero-heading span {
  color: var(--red);
  font-weight: 700;
}

/* CTA button */
.hero-cta {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 100px;
  letter-spacing: 0.01em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 18px rgba(220,38,38,.45);
}

.hero-cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(220,38,38,.5);
}

/* Wrench trio */
.hero-wrenches {
  display: flex;
  gap: 12px;
  align-items: center;
}

.hero-wrenches img {
  border-radius: 50%;
  opacity: 0.85;
  transition: opacity var(--transition), transform var(--transition);
}

.hero-wrenches img:hover {
  opacity: 1;
  transform: scale(1.12);
}

/* ─── SERVICES ─── */
.services {
  padding: 88px 0;
  background: var(--bg);
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-header h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 10px;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin: 12px auto 0;
}

.section-header p {
  font-size: 16px;
  color: var(--muted);
  margin-top: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-img-wrap {
  background: var(--dark-2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.service-img-wrap img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
}

.service-body {
  padding: 24px 22px 28px;
}

.service-body h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.service-body p {
  font-size: 14px;
  line-height: 1.75;
  color: #475569;
}

.service-body strong {
  color: var(--red);
  font-weight: 700;
}

/* ─── REVIEWS ─── */
.reviews {
  padding: 88px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.reviews-score {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.04em;
}

.reviews-summary-right {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stars {
  display: flex;
  gap: 3px;
  color: #FBBF24;
}

.stars svg {
  width: 22px;
  height: 22px;
}

.reviews-count {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow);
}

.review-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark-2);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reviewer-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reviewer-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.review-stars {
  display: flex;
  gap: 2px;
  color: #FBBF24;
}

.review-stars svg {
  width: 14px;
  height: 14px;
}

.review-date {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  margin-left: auto;
  padding-top: 2px;
}

.review-text {
  font-size: 14px;
  line-height: 1.75;
  color: #475569;
}

.reviews-footer {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--border);
  background: var(--bg);
  padding: 11px 22px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.reviews-link:hover {
  box-shadow: var(--shadow);
  border-color: #94a3b8;
}

/* ─── CONTACT + MAP ─── */
.contact {
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.contact-split {
  display: grid;
  grid-template-columns: 380px 1fr;
  min-height: 480px;
}

.contact-info {
  background: var(--dark);
  padding: 56px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h2 {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}

.contact-info h2::after {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin-top: 10px;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--red-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-top: 1px;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
}

.contact-list li div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-list li strong {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
}

.contact-list li span {
  font-size: 15px;
  color: #e2e8f0;
  line-height: 1.6;
}

.contact-list a {
  color: #e2e8f0;
  transition: color var(--transition);
}

.contact-list a:hover {
  color: var(--red);
}

.contact-map {
  position: relative;
}

.contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--dark-2);
  border-top: 1px solid var(--dark-3);
  padding: 20px 32px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-wrenches {
  display: flex;
  gap: 6px;
  align-items: center;
}

.footer-wrenches img {
  border-radius: 50%;
  opacity: 0.7;
}

.site-footer p {
  font-size: 13px;
  color: #64748b;
}

/* ─── Responsive ─── */
@media (max-width: 860px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .contact-split {
    grid-template-columns: 1fr;
  }

  .contact-map {
    min-height: 340px;
    position: relative;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 52px 20px;
    min-height: auto;
  }

  .hero-badge {
    padding: 16px 20px 12px;
  }

  .hero-logo {
    width: 220px;
  }

  .container {
    padding: 0 20px;
  }

  .services {
    padding: 60px 0;
  }

  .contact-info {
    padding: 40px 24px;
  }
}
