/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all 0.5s ease;
  padding: 18px 48px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 12px 48px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border-bottom-color: transparent;
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  margin-right: 2.5rem;
  flex-shrink: 0;
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.5px;
}

.nav-logo em {
  font-style: italic;
  color: var(--coral);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: color 0.3s;
  letter-spacing: 0.3px;
}

.nav-links a:hover { color: var(--charcoal); }

.nav-cta-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white) !important;
  background: var(--coral);
  border: 1.5px solid var(--coral);
  padding: 10px 28px;
  border-radius: 100px;
  transition: all 0.3s;
}

.nav-cta-link:hover {
  background: var(--coral-light);
  border-color: var(--coral-light);
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212, 131, 107, 0.3);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-burger span {
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s;
}

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--charcoal);
  transition: color 0.3s;
}

.mobile-nav a:hover { color: var(--coral); }

.mobile-nav-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none; border: none;
  font-size: 1.8rem;
  color: var(--charcoal);
  cursor: pointer;
}

/* ===== DROPDOWN DESKTOP ===== */
.nav-item {
  position: relative;
}

.nav-link-parent {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-chevron {
  width: 10px;
  height: 6px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.nav-item.dropdown-open .nav-chevron {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 110;
}

.nav-item.dropdown-open .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
}

.dropdown-arrow {
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--white);
  border-radius: 2px;
  transform: translateX(-50%) rotate(45deg);
  box-shadow: -2px -2px 4px rgba(0,0,0,0.04);
  z-index: 1;
}

.dropdown-body {
  background: var(--white);
  border-radius: 16px;
  padding: 12px 8px;
  min-width: 240px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.10), 0 0 0 1px rgba(0,0,0,0.04);
  position: relative;
  z-index: 2;
}

.dropdown-link {
  display: block;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-link:hover {
  background: var(--coral-soft);
  color: var(--coral);
}

.dropdown-link-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  margin-bottom: 2px;
  transition: color 0.2s;
}

.dropdown-link:hover .dropdown-link-label {
  color: var(--coral);
}

.dropdown-link-desc {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-faint);
  line-height: 1.3;
}

/* Mega dropdown (Traitements) */
.dropdown-mega .dropdown-body {
  min-width: auto;
  padding: 20px 8px 12px;
}

.dropdown-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-width: 540px;
}

.dropdown-col {
  padding: 0 12px;
  border-right: 1px solid rgba(0,0,0,0.05);
}

.dropdown-col:last-child {
  border-right: none;
}

.dropdown-col-title {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--coral);
  padding: 0 16px 10px;
  margin-bottom: 4px;
}

.dropdown-col .dropdown-link {
  font-size: 0.85rem;
  padding: 9px 16px;
}

.dropdown-footer-link {
  display: block;
  text-align: center;
  padding: 14px 16px 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--coral);
  border-top: 1px solid rgba(0,0,0,0.05);
  margin: 4px 8px 0;
  transition: color 0.2s;
}

.dropdown-footer-link:hover {
  color: var(--charcoal);
}

/* ===== MOBILE ACCORDION ===== */
.mob-accordion {
  width: 100%;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.mob-accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--charcoal);
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: color 0.3s;
}

.mob-accordion-trigger:hover {
  color: var(--coral);
}

.mob-chevron {
  width: 14px;
  height: 8px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.mob-accordion.open .mob-chevron {
  transform: rotate(180deg);
}

.mob-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mob-accordion.open .mob-accordion-panel {
  max-height: 800px;
  padding-bottom: 12px;
}

.mob-accordion-panel a {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  padding: 10px 0;
  transition: color 0.3s;
}

.mob-accordion-panel a:hover {
  color: var(--coral);
}

.mob-cat-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--coral);
  padding: 14px 0 4px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 80px 80px 80px;
  max-width: 720px;
  margin-left: auto;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 32px;
  letter-spacing: -2px;
}

.hero h1 em {
  font-style: italic;
  color: var(--coral);
}

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 460px;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-right::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 120px;
  background: linear-gradient(90deg, var(--cream), transparent);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 80px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-faint);
}

.scroll-line {
  width: 48px;
  height: 1px;
  background: var(--text-faint);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--coral);
  animation: scrollSlide 2s infinite;
}

/* ===== PAGE HEADER (sous-pages) ===== */
.page-header {
  padding: 130px 0 48px;
  background: var(--warm-white);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.page-header-inner {
  max-width: 760px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-faint);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--text-light);
  transition: color 0.3s;
}

.breadcrumb a:hover { color: var(--coral); }

.breadcrumb-sep { color: var(--text-faint); }

.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--charcoal);
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.page-header h1 em {
  font-style: italic;
  color: var(--coral);
}

.page-header-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 600px;
}

/* ===== SECTION COMMONS ===== */
.pad { padding: 0 80px; max-width: 1480px; margin: 0 auto; }

.section-tag {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
  display: block;
}

.section-heading {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  letter-spacing: -1.5px;
  max-width: 680px;
}

.section-heading em { font-style: italic; color: var(--coral); }

/* ===== CONTENT SECTIONS (sous-pages) ===== */
.content-section {
  padding: 64px 0;
}

.page-header + .content-section {
  padding-top: 48px;
}

.content-section:nth-child(even) {
  background: var(--warm-white);
}

.content-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.content-two-col.reversed {
  direction: rtl;
}

.content-two-col.reversed > * {
  direction: ltr;
}

.content-two-col .content-text {
  padding-left: 40px;
}

.pad > .section-header {
  padding-left: 40px;
}

.content-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.content-text h2 em { font-style: italic; color: var(--coral); }

.content-text p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 20px;
}

.content-text ul {
  list-style: none;
  margin-bottom: 24px;
  display: grid;
  gap: 10px;
}

.content-text ul li {
  padding: 16px 20px;
  background: var(--warm-white);
  border-radius: 12px;
  border-left: 3px solid var(--coral);
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

.content-text ul li strong:first-child {
  display: block;
  color: var(--charcoal);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.content-img {
  border-radius: 24px;
  overflow: hidden;
  height: 460px;
}

.content-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ===== ABOUT / DOCTOR ===== */
.about {
  padding: 160px 0;
  background: var(--warm-white);
}

.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-main {
  border-radius: 300px 300px 24px 24px;
  overflow: hidden;
  height: 640px;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-float-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--white);
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-float-number {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--coral);
  line-height: 1;
}

.about-float-text {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.4;
}

.about-float-text strong {
  display: block;
  color: var(--charcoal);
  font-weight: 600;
}

.about-text h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  letter-spacing: -1px;
  margin-bottom: 28px;
}

.about-text h2 em { font-style: italic; color: var(--coral); }

.about-quote {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 36px;
  padding-left: 24px;
  border-left: 2px solid var(--coral-light);
}

.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.credential {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--cream-dark);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.credential:hover {
  border-color: var(--coral);
  color: var(--coral);
  background: var(--coral-soft);
}

.about-stats {
  display: flex;
  gap: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--cream-dark);
}

.stat-num {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ===== CTA ===== */
.cta {
  padding: 140px 80px;
  text-align: center;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
}

.cta-blob-1 {
  width: 600px; height: 600px;
  background: var(--coral);
  top: -200px; right: -100px;
}

.cta-blob-2 {
  width: 400px; height: 400px;
  background: var(--gold);
  bottom: -150px; left: -50px;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.cta h2 em { color: var(--coral-light); }

.cta p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 48px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  padding: 80px 80px 40px;
  background: var(--cream);
  border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.footer-brand em { font-style: italic; color: var(--coral); }

.footer-desc {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }

.footer-col a {
  font-size: 0.92rem;
  color: var(--text-light);
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--coral); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.06);
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-faint);
}
