.about-page {
  padding: 1.4rem 0 4.5rem;
}

.about-hero {
  display: grid;
  gap: 1rem;
  align-items: center;
}

.about-hero-copy h1,
.about-story h2,
.about-founder-text h2,
.about-values h2,
.about-location h2,
.about-final h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.about-hero-copy h1 {
  font-size: clamp(1.95rem, 5.2vw, 3.4rem);
  max-width: 16ch;
}

.about-hero-copy p {
  color: var(--muted);
  font-weight: 600;
  max-width: 64ch;
}

.about-hero-actions {
  margin-top: 0.9rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.about-hero-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #fff;
}

.about-hero-media img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.about-story {
  margin-top: 1.2rem;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(75, 45, 35, 0.08);
}

.about-story p {
  margin: 0.6rem 0 0;
  color: var(--muted);
  font-weight: 600;
  max-width: 78ch;
}

.about-founder {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
  align-items: center;
}

.about-founder-media {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
}

.about-founder-media img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
}

.about-founder-text {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem;
}

.about-founder-text p {
  margin: 0.6rem 0 0;
  color: var(--muted);
  font-weight: 600;
}

.founder-quote {
  margin-top: 0.85rem;
  color: var(--chocolate);
  font-weight: 800;
}

.about-values {
  margin-top: 1.2rem;
}

.values-grid {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.8rem;
}

.value-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0.95rem;
  background: rgba(255, 255, 255, 0.92);
}

.value-card h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 1.2rem;
}

.value-card p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-weight: 600;
}

.about-gallery {
  margin-top: 1.2rem;
}

.gallery-grid {
  display: grid;
  gap: 0.8rem;
}

.gallery-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 22px rgba(75, 45, 35, 0.08);
}

.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.gallery-card p {
  margin: 0;
  padding: 0.7rem 0.85rem;
  color: var(--chocolate-soft);
  font-weight: 700;
  font-size: 0.9rem;
}

.about-location {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.9rem;
}

.location-copy,
.location-map {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  padding: 1rem;
}

.location-copy p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-weight: 600;
}

.social-links {
  margin-top: 0.8rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.social-links a {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  background: #fff;
  color: var(--chocolate);
  font-weight: 800;
  font-size: 0.86rem;
}

.location-map a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
}

.location-map img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
}

.about-final {
  margin-top: 1.2rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.1rem;
  background: linear-gradient(130deg, #ffe2ea, #fff2da 45%, #e9faef);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.about-final h2 {
  font-size: clamp(1.45rem, 4vw, 2.3rem);
  max-width: 20ch;
}

@media (min-width: 850px) {
  .about-hero,
  .about-founder,
  .about-location {
    grid-template-columns: 1.03fr 0.97fr;
  }

  .values-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
