/* ========================================
   About Us Page Styles
   ======================================== */

/* Our Story */
.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.story-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.story-text h2 {
  margin-bottom: 16px;
}

.story-text p {
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.7;
}

/* Meet the Owner */
.owner-section {
  background: var(--color-off-white);
}

.owner-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.owner-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.owner-photo img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.owner-bio h2 {
  margin-bottom: 6px;
}

.owner-title {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.owner-bio p {
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.7;
}

/* Values Cards */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.value-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.value-card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--color-primary-light), #d4e6f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.4rem;
}

.value-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* Service Area (reused from home) */
.about-area-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.about-area-county {
  text-align: center;
  padding: 28px 20px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.about-area-county h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--color-navy);
}

.about-area-county p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.about-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-map iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

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

  .about-area-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .story-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .story-image img {
    height: 280px;
  }

  .owner-content {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .owner-photo {
    max-width: 280px;
    margin: 0 auto;
  }

  .owner-photo img {
    height: 300px;
  }

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