/* ─── ABOUT HERO ─── */
.about-hero {
  background: linear-gradient(180deg, var(--warm) 0%, var(--cream) 100%);
  padding: 160px 0 80px;
  text-align: center;
}
.about-hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 20px;
}
.about-hero-h1 em {
  font-style: italic;
  color: var(--red);
}

/* ─── FOUNDER STORY ─── */
.founder-sec {
  background: var(--off-white);
  padding: 100px 0;
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
@media(max-width:991px) {
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }
}
.founder-img-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  aspect-ratio: 4/5;
}
.founder-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-experience-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--red);
  color: white;
  padding: 12px 20px;
  border-radius: 4px;
  box-shadow: var(--red-glow);
  text-align: center;
}
.founder-exp-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.founder-exp-lbl {
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.founder-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.5;
  margin-bottom: 24px;
  position: relative;
  padding-left: 24px;
  border-left: 3px solid var(--red);
}
.founder-bio {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.85;
  margin-bottom: 30px;
}
.founder-signature {
  font-family: 'Great Vibes', cursive;
  font-size: 2.2rem;
  color: var(--gold);
}

/* ─── PHILOSOPHY VALUES ─── */
.values-sec {
  background: var(--rose-pale);
  padding: 100px 0;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media(max-width:767px) {
  .values-grid { grid-template-columns: 1fr; gap: 24px; }
}
.value-card {
  background: var(--off-white);
  padding: 48px 36px;
  border-radius: 6px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all 0.35s var(--ease);
}
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--rose-soft);
}
.value-icon-box {
  width: 48px;
  height: 48px;
  background: var(--red-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--red);
  margin-bottom: 24px;
}
.value-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.value-desc {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.7;
}

/* ─── MEET THE TEAM ─── */
.team-sec {
  background: var(--cream);
  padding: 100px 0;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
@media(max-width:991px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media(max-width:575px) {
  .team-grid { grid-template-columns: 1fr; gap: 24px; }
}
.team-card {
  position: relative;
  background: var(--off-white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  aspect-ratio: 3/4;
}
.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.team-card:hover img {
  transform: scale(1.06);
}
.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.5) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: white;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.team-card:hover .team-overlay {
  opacity: 1;
}
.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: white;
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose-mid);
  margin-bottom: 16px;
}
.team-socials {
  display: flex;
  gap: 12px;
}
.team-soc-btn {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s;
}
.team-soc-btn:hover {
  color: var(--red);
}
