/* ABOUT PAGE HERO — FIXED SMALLER SIZE */
.about-hero {
  height: 40vh;        
  max-height: 420px;
  position: relative;
  overflow: hidden;
}

.about-hero .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Dark gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.35),
    rgba(0,0,0,.50)
  );
}

/* HERO TEXT */
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 5;
  color: white;
  padding: 1rem;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
}

.hero-content p {
  font-size: 1.1rem;
  opacity: .9;
}
/* Dark gradient overlay for readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.45),
    rgba(0,0,0,.55)
  );
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 5;
  color: white;
  padding: 1rem;
}

.hero-content h1 {
  font-size: clamp(2.3rem, 6vw, 3.3rem);
  font-weight: 700;
}

.hero-content p {
  font-size: 1.2rem;
  opacity: .9;
}

.about-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-brown);
}

.about-intro {
  max-width: 65ch;
  margin: 0 auto;
  opacity: .95;
}

.text-primary-brown {
  color: var(--primary-brown) !important;
}

img.rounded.shadow {
  border-radius: .75rem !important;
}


.about-values-card {
  background: #fff;
  border-radius: .75rem;
  padding: 1.5rem;
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}

.about-values-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

.about-values-card h5 {
  color: var(--primary-brown);
  font-weight: 700;
  margin-bottom: .5rem;
}


.about-section p {
  max-width: 65ch;
  margin-left: auto;
  margin-right: auto;
}


section {
  scroll-margin-top: 90px;
}

