/* About page */

.about-hero {
  padding: 200px 0 60px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.85) 100%),
    url('/img/brewery-history.jpg') center/cover no-repeat;
  border-bottom: 1px solid var(--border);
}
.about-hero .section-label {
  font-size: 13px; letter-spacing: 4px; color: var(--gold);
  text-transform: uppercase; margin-bottom: 16px;
}
.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 7.5vw, 88px);
  letter-spacing: 4px; line-height: 1;
  text-transform: uppercase;
}

.about-intro { padding: 80px 0; background: var(--black); }
.about-intro-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 56px; align-items: center;
  max-width: 1080px; margin: 0 auto;
}
.about-intro-img img {
  width: 100%; height: 480px;
  object-fit: cover;
  border-radius: 12px;
}
.about-intro p {
  color: rgba(255,255,255,0.85);
  font-size: 17px; line-height: 1.75;
  margin-bottom: 18px;
}
.about-intro p:last-child { margin-bottom: 0; }

.about-history { padding: 80px 0; }
.about-prose {
  max-width: 720px; margin: 0 auto;
}
.about-prose p {
  color: rgba(255,255,255,0.82);
  font-size: 16px; line-height: 1.8;
  margin-bottom: 20px;
}
.about-prose p:last-child { margin-bottom: 0; }

.about-cta { padding: 80px 0 100px; background: var(--black); }

@media (max-width: 768px) {
  .about-hero { padding: 160px 0 40px; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-intro-img img { height: 280px; }
}
