/* =============================================
   CABINET PARAMÉDICAL CROZATIER
   Palette : Rose Sable · Design premium FR
   ============================================= */

:root {
  /* Rose Sable palette */
  --rose:        #B8836A;
  --rose-dark:   #A07060;
  --rose-deep:   #8C5E4E;
  --rose-light:  #F0DDD6;
  --rose-pale:   #FAF2EE;

  /* Sable / Neutrals */
  --sable:       #D4B89A;
  --cream:       #FBF7F4;
  --white:       #FFFFFF;

  /* Texte */
  --text:        #2C2320;
  --text-mid:    #6B5B54;
  --text-muted:  #9C8880;

  /* Borders */
  --border:      #EDE0D9;
  --border-mid:  #D9C9C0;

  /* Shadows */
  --shadow-sm:   0 2px 12px rgba(138, 80, 60, .08);
  --shadow-md:   0 6px 32px rgba(138, 80, 60, .12);
  --shadow-lg:   0 16px 64px rgba(138, 80, 60, .16);

  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   24px;
  --radius-xl:   32px;
}

/* =====================
   RESET & BASE
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* =====================
   LAYOUT
   ===================== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 96px 0; }
.section--cream { background: var(--cream); }

.section__header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.section__header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section__header p {
  color: var(--text-mid);
  font-size: 1rem;
  font-weight: 300;
}

/* =====================
   EYEBROW
   ===================== */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
}
.eyebrow--dark { color: var(--rose-deep); }
.section__header .eyebrow { margin-bottom: 10px; }

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 99px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .25s ease;
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: #FBF0EB;
  color: #7A4E3E;
  border-color: #FBF0EB;
}
.btn--primary:hover {
  background: #F5E5DC;
  border-color: #F5E5DC;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 145, 123, .25);
}

.btn--outline {
  background: transparent;
  color: var(--rose);
  border-color: var(--rose);
}
.btn--outline:hover {
  background: var(--rose-pale);
  transform: translateY(-1px);
}

.btn--ghost {
  background: rgba(255,255,255,.15);
  color: white;
  border-color: rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.7);
}

.btn--lg { padding: 16px 32px; font-size: 0.95rem; }
.btn--sm { padding: 9px 20px; font-size: 0.82rem; }

/* =====================
   NAV
   ===================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-mark {
  width: 40px;
  height: 40px;
  color: var(--rose);
  flex-shrink: 0;
}
.logo-mark--sm { width: 34px; height: 34px; }

.nav__logo-img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.footer__logo-img {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  opacity: 0.75;
  filter: brightness(1.8);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}
.logo-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: .5px;
}

.nav__links {
  display: flex;
  gap: 32px;
  margin: 0 auto;
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-mid);
  transition: color .2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--rose);
  transition: width .25s;
}
.nav__links a:hover { color: var(--rose); }
.nav__links a:hover::after { width: 100%; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: .3s;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 20px 28px;
  gap: 2px;
}
.nav__mobile a {
  padding: 13px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.nav__mobile a.btn {
  margin-top: 12px;
  border: none;
  text-align: center;
}
.nav__mobile.open { display: flex; }

/* =====================
   HERO
   ===================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero--olive {
  background: #6B7A52;
}

.hero__logo-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__logo-right img {
  width: 380px;
  height: 380px;
  opacity: 0.85;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 120px 28px 100px;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hero__text {
  max-width: 600px;
}
.hero__text .eyebrow {
  color: #C4B89A;
  margin-bottom: 18px;
}
.hero__text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 500;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero__text p {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,.8);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero__logo-right { display: none; }
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}
.hero__scroll svg {
  width: 18px;
  height: 18px;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* =====================
   BAND
   ===================== */
.band {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.band__inner {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.band__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 36px;
  flex: 1;
  min-width: 200px;
}
.band__item svg {
  width: 20px;
  height: 20px;
  color: var(--rose);
  flex-shrink: 0;
}
.band__item strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}
.band__item span {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.band__sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}
.band__item--cta {
  justify-content: center;
  flex: 0 0 auto;
}

/* =====================
   SOINS
   ===================== */
.soins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.soin-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s, transform .3s;
}
.soin-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.soin-card__img {
  height: 220px;
  overflow: hidden;
}
.soin-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.soin-card:hover .soin-card__img img {
  transform: scale(1.04);
}

.soin-card__body {
  padding: 32px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.soin-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--rose-light);
  margin-bottom: 10px;
  display: block;
}
.soin-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--text);
}
.soin-card > .soin-card__body > p {
  font-size: 0.875rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 20px;
}
.soin-list {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.soin-list li {
  font-size: 0.82rem;
  color: var(--text-mid);
  padding-left: 16px;
  position: relative;
}
.soin-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--rose-light);
  border-radius: 50%;
}
.soin-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rose);
  letter-spacing: .3px;
  transition: color .2s, gap .2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.soin-link:hover { color: var(--rose-dark); gap: 8px; }

/* =====================
   ÉQUIPE
   ===================== */
.equipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.equipe-grid--5 {
  grid-template-columns: repeat(3, 1fr);
}
.equipe-grid--5 .praticien-card:nth-child(4),
.equipe-grid--5 .praticien-card:nth-child(5) {
  grid-column: auto;
}
@media (min-width: 960px) {
  .equipe-grid--5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

.praticien-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s, transform .3s;
}
.praticien-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.praticien-card__photo {
  height: 280px;
  overflow: hidden;
}
.praticien-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform .5s ease;
}
.praticien-card:hover .praticien-card__photo img { transform: scale(1.04); }

.praticien-card__body {
  padding: 28px 26px 30px;
}
.praticien-spec {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 8px;
}
.praticien-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}
.praticien-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* =====================
   PHOTO SPLIT
   ===================== */
.photo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.photo-split__image {
  overflow: hidden;
}
.photo-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-split__content {
  background: var(--cream);
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.photo-split__content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text);
}
.photo-split__content > p {
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 12px;
  max-width: 440px;
}
.photo-split__content > p:last-of-type { margin-bottom: 36px; }

.values-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.value-icon {
  width: 40px;
  height: 40px;
  background: var(--rose-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.value-icon svg {
  width: 18px;
  height: 18px;
  color: var(--rose-deep);
}
.value-item strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}
.value-item span {
  font-size: 0.82rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.6;
}

/* =====================
   CTA
   ===================== */
.section-cta {
  background: linear-gradient(135deg, var(--rose-deep) 0%, var(--rose) 60%, var(--sable) 100%);
  padding: 88px 0;
}
.section-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.section-cta__text .eyebrow { color: var(--rose-light); }
.section-cta__text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  color: white;
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-cta__text p {
  color: rgba(255,255,255,.8);
  font-size: 0.92rem;
  font-weight: 300;
  max-width: 460px;
}
.section-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.section-cta__actions .btn--primary {
  background: #FBF0EB;
  color: #7A4E3E;
  border-color: #FBF0EB;
}
.section-cta__actions .btn--primary:hover {
  background: #F5E5DC;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.cta-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,.7);
}
.cta-note a {
  color: white;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =====================
   CONTACT
   ===================== */
.contact-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: start;
}

.contact-infos {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-block h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 10px;
}
.contact-block p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.horaires { display: flex; flex-direction: column; gap: 6px; }
.horaire-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--text-mid);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.horaire-row:last-child { border-bottom: none; }
.horaire-row--closed { color: var(--text-muted); }
.horaire-row span:last-child { font-weight: 500; }

.transport-list { display: flex; flex-direction: column; gap: 10px; }
.transport-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-mid);
}

.metro-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.m8 { background: #CEADD2; color: #333; }
.m1 { background: #F2C200; color: #333; }

.rer-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  background: #E2231A;
}
.rer-d { background: #00814F; }

.band__item--transport {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: opacity 0.2s;
}
.band__item--transport:hover { opacity: 0.75; }

.band__transport-badges {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  align-items: center;
}
.band__transport-badges .metro-badge,
.band__transport-badges .rer-badge,
.band__transport-badges .bus-badge {
  color: white;
}
.band__transport-badges .m8,
.band__transport-badges .m1 {
  color: #333;
}

.bus-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  background: #5B8DD9;
  color: white;
  flex-shrink: 0;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--rose);
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.contact-link:last-child { border-bottom: none; }
.contact-link svg { width: 16px; height: 16px; flex-shrink: 0; }
.contact-link:hover { color: var(--rose-dark); }

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 480px;
  height: 480px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

/* =====================
   FOOTER
   ===================== */
.footer {
  background: var(--text);
  color: rgba(255,255,255,.55);
  padding: 48px 0 32px;
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 28px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: white;
}
.footer__brand .logo-mark { color: var(--rose-light); }
.footer__brand strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.footer__brand span {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,.5);
}

.footer__nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__nav a {
  font-size: 0.85rem;
  transition: color .2s;
}
.footer__nav a:hover { color: white; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.78rem;
}
.footer__bottom strong { color: rgba(255,255,255,.8); }

/* =====================
   ANIMATIONS
   ===================== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1040px) {
  .soins-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .equipe-grid { grid-template-columns: 1fr 1fr; }
  .photo-split { grid-template-columns: 1fr; }
  .photo-split__image { height: 360px; }
  .photo-split__content { padding: 52px 40px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-map { min-height: 320px; }
  .band__inner { flex-wrap: wrap; }
  .band__sep { display: none; }
  .band__item { flex: 1 1 200px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .equipe-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .praticien-card__photo { height: 320px; }
  .praticien-card__body { text-align: center; }
  .praticien-card__body .btn { margin: 0 auto; }
  .soins-grid { max-width: 100%; }
  .hero { min-height: 80vh; }
  .hero__text h1 { font-size: 2.6rem; }
  .section-cta__inner { flex-direction: column; text-align: center; }
  .section-cta__text p { margin: 0 auto; }
  .footer__top { flex-direction: column; align-items: flex-start; }
  .footer__bottom { flex-direction: column; }
  .contact-layout { grid-template-columns: 1fr; }
  .photo-split__content { padding: 40px 28px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero__text h1 { font-size: 2rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }
  .band__item { padding: 18px 20px; }
  .section-cta { padding: 60px 0; }
}
