/* About page — unique styles not covered by shared styles.css */

/* Hero with full-bleed background image */
.about-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

.about-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero .hero-bg picture,
.about-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}

.about-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 760px;
  animation: fadeUp 800ms ease-out both;
}

.about-hero .hero-logo {
  width: 100%;
  max-width: 400px;
  margin: 0 auto -0.5rem;
  font-size: inherit;
  background: none;
  -webkit-text-fill-color: inherit;
}

.about-hero .hero-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.about-hero .hero-headline {
  margin-bottom: 0.75rem;
}

.about-hero .hero-headline-img {
  max-width: 500px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.about-hero .hero-tagline {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #cacc79;
  margin-bottom: 0;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Narrow container for prose sections */
.container-narrow {
  max-width: 800px;
  margin: 0 auto;
}

/* About values cards — override shared card styles */
.about-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.about-cards-grid .card {
  background: var(--background-alt);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: none;
}

.about-cards-grid .card:hover {
  transform: none;
  box-shadow: none;
}

.about-cards-grid .card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.about-cards-grid .card p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 50vh;
  }

  .about-hero .hero-logo {
    max-width: 280px;
  }

  .about-cards-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 2rem auto 0;
  }
}

@media (max-width: 480px) {
  .about-hero .hero-content {
    padding: 1.5rem 1rem;
  }
}
