/* ── About page background ─────────────── */
body {
  background: #d9cfc0;
}

/* ── About hero ─────────────────────────── */
.about-hero {
  position: relative;
  width: 100%;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

/* Background */
.about-bg {
  display: none;
}

/* Olive band — centered, doesn't touch edges */
.about-hero::before {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  height: 58%;
  background: #4a6672;
  z-index: 1;
}

/* ── Content row ───────────────────────── */
.about-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

/* ── Hygienist photo ───────────────────── */
.about-photo-wrap {
  flex: 0 0 auto;
  width: 360px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.28);
}

.about-photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── Sparkle ───────────────────────────── */
.about-sparkle {
  flex-shrink: 0;
  color: #6b6b58;
  opacity: 0.7;
  align-self: flex-start;
  margin-top: 3rem;
}

/* ── Text box ──────────────────────────── */
.about-text-box {
  flex: 0 1 620px;
  background: rgba(243, 237, 224, 1);
  padding: 3rem 3rem;
  margin-left: -2rem;
  position: relative;
  z-index: 1;
}

.about-text-box p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.85;
  color: var(--text);
  text-align: center;
}

.about-text-box p + p {
  margin-top: 1.1rem;
}

.about-text-box em {
  font-style: italic;
}

/* ── Responsive ────────────────────────── */
@media (max-width: 900px) {
  .about-content {
    flex-direction: column;
    padding: 3rem 1.5rem;
    gap: 1.5rem;
  }

  .about-photo-wrap { width: 100%; max-width: 480px; }
  .about-photo { height: 360px; }
  .about-sparkle { display: none; }
  .about-text-box { flex: none; width: 100%; max-width: 480px; padding: 2rem 1.5rem; margin-left: 0; }
}

/* ── EPDH section ───────────────────────── */
.about-epdh {
  background: var(--cream);
  padding: 5rem 2rem;
  text-align: center;
}

.about-epdh-inner {
  max-width: 680px;
  margin: 0 auto;
}

.about-epdh h2 {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 1.2rem;
}

.about-epdh-divider {
  width: 48px;
  height: 1px;
  background: var(--border);
  margin: 0 auto 1.75rem;
}

.about-epdh p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.85;
}

@media (max-width: 580px) {
  .about-epdh { padding: 3.5rem 1.25rem; }
  .about-epdh h2 { font-size: 1.5rem; }
}

/* ── Meet the Team ──────────────────────── */
.about-team {
  background: var(--bg);
  padding: 2.5rem 2rem 4rem;
  text-align: center;
}

.about-team-inner {
  max-width: 860px;
  margin: 0 auto;
}

.team-heading {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1.2rem;
}

.team-divider {
  width: 48px;
  height: 1px;
  background: var(--border);
  margin: 0 auto 3.5rem;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.bio-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bio-photo-wrap {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 3px solid rgba(196, 170, 122, 0.4);
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

.bio-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.bio-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.bio-rule {
  width: 36px;
  height: 1px;
  background: rgba(196, 170, 122, 0.6);
  margin: 0 auto 1rem;
}

.bio-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 340px;
}

@media (max-width: 640px) {
  .about-team { padding: 3.5rem 1.25rem; }
  .team-grid { grid-template-columns: 1fr; gap: 3rem; display: flex; flex-direction: column; }
  .bio-photo-wrap { width: 240px; height: 240px; }
  .bio-card--courtney { order: -1; }
}
