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

/* About Hero */
.about-hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--foreground, hsl(30, 10%, 15%));
}

.about-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.about-hero__overlay {
  position: relative;
  z-index: 2;
  padding: 3rem 0;
  width: 100%;
}

.about-hero__tagline {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent, hsl(38, 50%, 55%));
  margin-bottom: 0.75rem;
}

.about-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 500;
  color: hsl(0, 0%, 100%);
  margin: 0;
  line-height: 1.15;
  max-width: 600px;
}

/* Story Section */
.about-story {
  padding: 5rem 0;
}

.about-story__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-story__label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent, hsl(38, 50%, 55%));
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.about-story__heading {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--foreground, hsl(30, 10%, 15%));
  margin: 0 0 1.5rem;
  line-height: 1.3;
}

.about-story__text {
  font-size: 0.95rem;
  color: var(--muted-foreground, hsl(30, 8%, 45%));
  line-height: 1.9;
  margin-bottom: 1rem;
}

.about-story__divider {
  width: 50px;
  height: 1px;
  background: var(--accent, hsl(38, 50%, 55%));
  margin: 2rem auto;
}

/* Values Grid */
.about-values {
  padding: 4rem 0 5rem;
  background: var(--secondary, hsl(35, 20%, 92%));
}

.about-values__label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent, hsl(38, 50%, 55%));
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

.about-values__heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--foreground, hsl(30, 10%, 15%));
  margin: 0 0 2.5rem;
  text-align: center;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.about-value-card {
  padding: 2rem 1.5rem;
  background: hsl(0, 0%, 100%);
  border: 1px solid var(--border, hsl(35, 20%, 88%));
  border-radius: 0.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.about-value-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.about-value-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--foreground, hsl(30, 10%, 15%));
  margin: 0 0 0.6rem;
}

.about-value-card__text {
  font-size: 0.84rem;
  color: var(--muted-foreground, hsl(30, 8%, 45%));
  line-height: 1.7;
}

/* Local Expertise */
.about-expertise {
  padding: 5rem 0;
}

.about-expertise__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-expertise__label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent, hsl(38, 50%, 55%));
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-expertise__heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--foreground, hsl(30, 10%, 15%));
  margin: 0 0 1.25rem;
  line-height: 1.3;
}

.about-expertise__text {
  font-size: 0.9rem;
  color: var(--muted-foreground, hsl(30, 8%, 45%));
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.about-expertise__image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero {
    height: 40vh;
    min-height: 280px;
  }

  .about-hero__title {
    font-size: 1.8rem;
  }

  .about-values__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .about-expertise__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-expertise__image {
    height: 250px;
  }

  .about-story__heading {
    font-size: 1.5rem;
  }
}
