.page-hero {
  position: relative;
  height: 480px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-xl);
  margin-top: 60px;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.48);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-content .section-label {
  color: rgba(255,255,255,0.7);
}

.page-hero-content h1 {
  color: var(--color-white);
  font-size: var(--font-size-page-title);
}

.about-story {
  background: var(--color-bg);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-xl);
  align-items: start;
}

.about-story-image {
  position: sticky;
  top: 100px;
}

.about-story-image img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  object-position: top center;
}

.about-story-content h2 {
  margin-bottom: var(--space-md);
}

.about-story-content p {
  margin-bottom: var(--space-md);
  font-size: 16px;
  line-height: 1.85;
}

.about-story-content p:last-of-type {
  margin-bottom: 0;
}

.credentials-strip {
  background: var(--color-bg-dark);
  padding: 22px 0;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.credential-item {
  text-align: center;
  padding: 10px 18px;
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.credential-item:last-child {
  border-right: none;
}

.credential-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 5px;
}

.credential-desc {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.11em;
  line-height: 1.45;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.about-approach {
  background: var(--color-bg-alt);
}

.about-approach h2 {
  margin-bottom: var(--space-xl);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.approach-item {
  border-top: 2px solid var(--color-accent);
  padding-top: var(--space-md);
}

.approach-item h3 {
  font-size: 20px;
  margin-bottom: var(--space-sm);
}

.approach-item p {
  font-size: 15px;
  line-height: 1.8;
}

.about-neighborhoods {
  background: var(--color-bg);
}

.about-neighborhoods-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-neighborhoods-content h2 {
  margin-bottom: var(--space-md);
}

.about-neighborhoods-content p {
  margin-bottom: var(--space-md);
}

.areas-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px var(--space-md);
  margin-top: var(--space-md);
}

.areas-list li {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  padding-left: 12px;
  border-left: 2px solid var(--color-accent);
}

.about-neighborhoods-image {
  background-size: cover;
  background-position: center;
  min-height: 420px;
  background-color: #C8C4BC;
}

.about-cta {
  background: #332C24;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  text-align: center;
}

.about-cta h2 {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.about-cta p {
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  margin-bottom: var(--space-lg);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.about-cta-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .about-story-image {
    position: static;
  }

  .about-story-image img {
    max-height: 400px;
  }

  .credentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .credential-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .about-neighborhoods-inner {
    grid-template-columns: 1fr;
  }

  .about-neighborhoods-image {
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .page-hero {
    height: 340px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

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

  .credential-item {
    min-height: 84px;
    padding: 14px 12px;
  }

  .areas-list {
    grid-template-columns: 1fr;
  }
}
