.about-hero {
    background: var(--light3);
  padding: 4rem 1rem;
  text-align: center;
}
.about-hero h1 {
  font-size: 2.5rem;
  color: #a0351d;
}
.about-hero p {
  font-size: 1.2rem;
  color: #555;
}

/* Story */
.story-section {
  padding: 3rem 1rem;
  background: var(--light3);
}
.story-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.story-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.story-text h2 {
  font-size: 2rem;
  color: #b03e2f;
  margin-bottom: 1rem;
}
.story-text p {
  color: #444;
  line-height: 1.6;
}

/* Values */
.values-section {
  background: var(--light3);
  padding: 3rem 1rem;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.value-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  text-align: center;
}
.value-card h3 {
  font-size: 1.4rem;
  color: #a0351d;
  margin-bottom: 0.5rem;
}
.value-card p {
  color: #555;
}

/* CTA */
.visit-cta {
  background: var(--light2);
  padding: 3rem 1rem;
  text-align: center;
}
.visit-cta h2 {
  font-size: 2rem;
  color: #b03e2f;
}
.visit-cta p {
  margin: 1rem 0;
  color: #444;
}
.cta-btn {
  color: #fff;

  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}
.cta-btn:hover {
  background: var(--accent2);
}

@media (min-width: 768px) {
  .story-wrapper {
    flex-direction: row;
    align-items: center;
  }
  .story-text {
    padding-left: 2rem;
  }
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
