/* ============================================================
   ABOUT.CSS — Old Town Renovations, LLC
   Styles specific to about.html: values grid and team/owner
   section. (The story section reuses the shared about-grid
   component from components.css.)
   ============================================================ */

/* ─── VALUES ----------------------------------------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--clr-white);
  border-radius: var(--radius);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
}

.value-icon {
  width: 60px; height: 60px;
  background: var(--clr-cream-dk);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--clr-amber);
}

.value-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.88rem; color: var(--clr-text-lt); }

/* ─── TEAM ----------------------------------------- */
.team-section { background: var(--clr-cream-dk); }

.owner-card {
  display: flex;
  gap: 3rem;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.owner-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3D2210, #8B5E3C, #C8973A);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  border: 5px solid var(--clr-white);
  box-shadow: var(--shadow-md);
}

.owner-info h3 { font-size: 1.4rem; margin-bottom: 0.25rem; }

.owner-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-amber);
  margin-bottom: 1rem;
}

/* --- RESPONSIVE ----------------------------------------- */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr; }
  .owner-card { flex-direction: column; gap: 1.5rem; text-align: center; }
}
