/* =============================================
   EuroCustomAutos — About page
   ============================================= */

/* --- Intro split --- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.about-intro-content .eyebrow { margin-bottom: 16px; }

.about-intro-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--asphalt);
  line-height: 1.05;
  margin-bottom: 24px;
}

.about-intro-content h2 .volt-underline {
  display: inline-block;
  border-bottom: 3px solid var(--volt);
  padding-bottom: 2px;
  line-height: 1;
}

.about-intro-content p {
  font-size: 16px;
  color: var(--dust);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-intro-content p:last-of-type { margin-bottom: 32px; }

.about-intro-aside {
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-stat-block {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.about-stat-block:first-child { padding-top: 0; }
.about-stat-block:last-child { border-bottom: none; }

.about-stat-block .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 48px;
  color: var(--asphalt);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.about-stat-block .label {
  font-size: 14px;
  color: var(--dust);
}

/* --- What we do --- */
.what-we-do {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
  background: var(--offwhite);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-card {
  padding: 36px 32px;
  border-right: 1px solid var(--border);
  background: var(--offwhite);
  transition: background var(--transition);
}
.service-card:last-child { border-right: none; }
.service-card:hover { background: var(--concrete); }

.service-card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  opacity: 0.5;
}
.service-card-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--asphalt);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--dust);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-card ul li {
  font-size: 13px;
  color: var(--dust);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-card ul li::before {
  content: '';
  display: block;
  width: 14px;
  height: 1px;
  background: var(--asphalt);
  flex-shrink: 0;
  opacity: 0.4;
}

/* --- Location & Hours --- */
.location-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.location-details .eyebrow { margin-bottom: 16px; }

.location-details h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--asphalt);
  margin-bottom: 32px;
}

.info-block {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
}
.info-block:last-of-type { border-bottom: 1px solid var(--border); }

.info-block .info-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dust);
  padding-top: 2px;
}

.info-block .info-value {
  font-size: 15px;
  color: var(--asphalt);
  line-height: 1.6;
}
.info-block .info-value a {
  color: var(--asphalt);
  border-bottom: 1px solid var(--border);
  transition: border-color var(--transition);
}
.info-block .info-value a:hover { border-color: var(--asphalt); }

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.hours-row:first-child { border-top: 1px solid var(--border); }
.hours-row .day { color: var(--dust); }
.hours-row .time { color: var(--asphalt); font-weight: 500; }
.hours-row.closed .time { color: var(--dust); }

.location-actions { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

/* Map container */
.map-container {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--offwhite);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}
.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--dust);
  font-size: 14px;
}
.map-placeholder svg { opacity: 0.3; }

/* --- Brand values --- */
.values-section {
  padding: 80px 0;
  background: var(--asphalt);
}

.values-section .eyebrow { color: rgba(122,118,112,0.8); }

.values-section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--concrete);
  margin-bottom: 48px;
}

/* Volt used once — on the section heading underline word */
.values-section h2 .volt-underline {
  display: inline-block;
  border-bottom: 3px solid var(--volt);
  padding-bottom: 2px;
  line-height: 1;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.value-card {
  padding: 40px 36px;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background var(--transition);
}
.value-card:nth-child(even) { border-right: none; }
.value-card:nth-child(n+3) { border-bottom: none; }
.value-card:hover { background: rgba(255,255,255,0.03); }

.value-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 48px;
  color: rgba(232,228,220,0.1);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}

.value-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--concrete);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  color: rgba(232,228,220,0.55);
  line-height: 1.75;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .about-intro { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 1px solid var(--border); }
  .service-card:last-child { border-bottom: none; }
  .location-inner { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card { border-right: none; }
}

@media (max-width: 600px) {
  .info-block { grid-template-columns: 1fr; gap: 4px; }
}
