/* ════════════════════════════════════════════
   Beauvoir Clinic — Pages praticiens
   ════════════════════════════════════════════ */

/* ─── HERO ─── */
.prac-hero {
  background: linear-gradient(135deg, #F5F0E8 0%, #FAF8F4 60%, #F5F0E8 100%);
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.prac-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(165, 136, 71, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(212, 165, 116, 0.05) 0%, transparent 50%);
  z-index: 0;
}

.prac-hero__container {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: center;
}

.prac-hero__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(44, 44, 44, 0.15);
}

.prac-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%; /* Défaut : biais haut. Override via inline style si photoPosition */
  display: block;
}

.prac-hero__photo--placeholder {
  background: linear-gradient(135deg, #CDC3BC 0%, #F5F0E8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.prac-hero__photo--placeholder svg {
  width: 100px;
  height: 100px;
  color: rgba(44, 44, 44, 0.25);
}

.prac-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #A58847;
  background: rgba(165, 136, 71, 0.08);
  border: 1px solid rgba(165, 136, 71, 0.2);
  padding: 10px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.prac-hero__name {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 500;
  color: #2C2C2C;
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.prac-hero__role {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-style: italic;
  color: #A58847;
  margin-bottom: 16px;
}

.prac-hero__subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: #423B35;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 520px;
}

.prac-hero__meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  color: #757862;
  margin-bottom: 32px;
}

.prac-hero__meta span strong {
  color: #2C2C2C;
  font-weight: 600;
  margin-right: 4px;
}

.prac-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 100px;
  background: #2C2C2C;
  color: #F5F0E8;
  transition: all 0.25s ease;
}

.prac-hero__cta:hover {
  background: #A58847;
  transform: translateY(-1px);
}

/* ─── SECTION BIO ─── */
.prac-bio {
  padding: 80px 24px;
  background: #FFFFFF;
}

.prac-bio__container {
  max-width: 760px;
  margin: 0 auto;
}

.prac-bio__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #2C2C2C;
  margin-bottom: 28px;
  text-align: center;
  position: relative;
  padding-bottom: 18px;
}

.prac-bio__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: #A58847;
}

.prac-bio__text p {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  color: #2C2C2C;
  line-height: 1.85;
  margin-bottom: 18px;
}

.prac-bio__text p:last-child { margin-bottom: 0; }

/* ─── SECTION VIDÉO ─── */
.prac-video {
  padding: 60px 24px 80px;
  background: #F5F0E8;
}

.prac-video__container {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.prac-video__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #2C2C2C;
  margin-bottom: 32px;
}

.prac-video__title small {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #A58847;
  font-style: normal;
  margin-bottom: 8px;
}

.prac-video__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(44, 44, 44, 0.18);
  background: #2C2C2C;
}

.prac-video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.prac-video__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, #423B35 0%, #2C2C2C 100%);
  color: #F5F0E8;
  padding: 24px;
}

.prac-video__placeholder svg {
  width: 64px;
  height: 64px;
  opacity: 0.6;
}

.prac-video__placeholder span {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.15rem;
  font-style: italic;
  opacity: 0.85;
}

.prac-video__placeholder small {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* ─── SECTION EXPERTISE & TRAITEMENTS ─── */
.prac-expertise {
  padding: 80px 24px;
  background: #FFFFFF;
}

.prac-expertise__container {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.prac-expertise__block h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #2C2C2C;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(165, 136, 71, 0.2);
}

.prac-expertise__block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.prac-expertise__block li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.98rem;
  color: #2C2C2C;
  line-height: 1.55;
  border-bottom: 1px solid rgba(165, 136, 71, 0.08);
}

.prac-expertise__block li:last-child { border-bottom: none; }

.prac-expertise__block li::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #A58847;
}

.prac-expertise__block li a {
  color: #2C2C2C;
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
}

.prac-expertise__block li a:hover {
  color: #A58847;
}

.prac-expertise__block li a::after {
  content: ' →';
  color: #A58847;
  opacity: 0;
  margin-left: 4px;
  transition: opacity 0.2s ease;
}

.prac-expertise__block li a:hover::after { opacity: 1; }

/* ─── SECTION AUTRES PRATICIENS ─── */
.prac-others {
  padding: 80px 24px;
  background: #F5F0E8;
}

.prac-others__container {
  max-width: 1180px;
  margin: 0 auto;
}

.prac-others__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #2C2C2C;
  text-align: center;
  margin-bottom: 48px;
}

.prac-others__title small {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #A58847;
  font-style: normal;
  margin-bottom: 8px;
}

.prac-others__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.prac-others__card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid rgba(165, 136, 71, 0.15);
}

.prac-others__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(44, 44, 44, 0.08);
  border-color: #A58847;
}

.prac-others__photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 12px;
  overflow: hidden;
  background: #CDC3BC;
}

.prac-others__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%; /* Défaut : biais haut. Override via inline style si photoPosition */
}

.prac-others__photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.prac-others__photo--placeholder svg {
  width: 50px;
  height: 50px;
  color: rgba(44, 44, 44, 0.3);
}

.prac-others__card strong {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  font-weight: 500;
  color: #2C2C2C;
  margin-bottom: 4px;
}

.prac-others__card span {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  color: #423B35;
}

/* ─── CTA BOTTOM ─── */
.prac-cta {
  padding: 80px 24px;
  background: linear-gradient(135deg, #2C2C2C 0%, #423B35 100%);
  text-align: center;
}

.prac-cta__container {
  max-width: 720px;
  margin: 0 auto;
  color: #F5F0E8;
}

.prac-cta__title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 400;
  margin-bottom: 16px;
  color: #FFFFFF;
}

.prac-cta__text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.85);
  margin-bottom: 32px;
}

.prac-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 100px;
  background: #A58847;
  color: #FFFFFF;
  transition: all 0.25s ease;
}

.prac-cta__btn:hover {
  background: #CDA875;
  transform: translateY(-1px);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .prac-hero__container {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 520px;
    text-align: center;
  }
  .prac-hero__photo { max-width: 320px; margin: 0 auto; }
  .prac-hero__subtitle, .prac-hero__meta { margin-left: auto; margin-right: auto; }
  .prac-hero__meta { justify-content: center; }
  .prac-expertise__container { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 600px) {
  .prac-hero { padding: 96px 20px 60px; }
  .prac-bio, .prac-video, .prac-expertise, .prac-others, .prac-cta { padding-left: 20px; padding-right: 20px; }
  .prac-bio { padding-top: 56px; padding-bottom: 56px; }
}
