/* ── ABOUT PAGE STYLES ── */

.about-hero {
  position: relative;
  width: 100%;
}

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

.about-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(46,37,32,0.35) 0%,
    rgba(46,37,32,0.15) 40%,
    rgba(46,37,32,0.70) 100%
  );
}

.about-hero .hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  padding: 72px 24px 32px;
}

/* ── MISSION SECTION ── */
#mission {
  background: var(--cream-panel);
}

.mission-quote {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--text-mid);
  line-height: 1.5;
  margin: 28px auto 0;
  max-width: 560px;
}

/* ── CREATOR SECTION ── */
#creator {
  background: var(--taupe-light);
}

.creator-card {
  margin-top: 40px;
  background: var(--cream-panel);
  box-shadow: 0 4px 28px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 48px 40px;
  text-align: left;
}

.creator-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--taupe-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  flex-shrink: 0;
  overflow: hidden;
}

.creator-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creator-body { max-width: 540px; }

.creator-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.creator-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-family: 'Lato', sans-serif;
}

.creator-body p {
  font-size: 1.08rem;
  line-height: 1.78;
}

@media (min-width: 600px) {
  .creator-card {
    flex-direction: row;
    align-items: flex-start;
  }
}

/* ── STAFF SECTION ── */
#staff {
  background: var(--cream);
}

.staff-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  text-align: left;
}

.staff-card {
  background: var(--cream-panel);
  border-top: 2px solid var(--taupe-mid);
  padding: 22px 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: border-color 0.2s, transform 0.2s;
}

.staff-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.staff-icon {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.staff-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.staff-role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Lato', sans-serif;
  margin-bottom: 10px;
}

.staff-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-light);
}

.staff-note {
  margin-top: 36px;
  padding: 24px 28px;
  border-left: 3px solid var(--gold);
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  text-align: left;
}

.staff-note p {
  font-size: 1.05rem;
}
