/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-dark: #2B3530;
  --bg-darker: #232B27;
  --bg-hero: #CED1BF;
  --text-light: #CED1BF;
  --text-cream: #CCCFBF;
  --text-dark: #2B3530;
  --btn-dark: #3A4540;
  --border-subtle: rgba(206, 209, 191, 0.1);
  --font-main: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  font-size: 16px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--text-light);
  color: var(--bg-dark);
  padding: 8px 16px;
  z-index: 1000;
}

.skip-link:focus {
  top: 0;
}

/* ===== HEADER / NAV ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--bg-dark);
}

.header__social {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 12px 0;
}

.header__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.header__social svg {
  width: 18px;
  height: 18px;
  fill: var(--text-light);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
}

.nav__links {
  display: flex;
  gap: 8px;
}

.nav__links a {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  transition: background 0.3s, color 0.3s;
}

.nav__links a.active,
.nav__links a:hover {
  background: rgba(206, 209, 191, 0.15);
}

.nav__contact {
  padding: 8px 20px;
  border: 1px solid var(--text-light);
  border-radius: 24px;
  font-size: 14px;
  transition: background 0.3s, color 0.3s;
}

.nav__contact:hover {
  background: var(--text-light);
  color: var(--bg-dark);
}

/* ===== HERO HOME ===== */
.hero-home {
  background-color: var(--bg-hero);
  border-radius: 16px;
  padding: 80px 60px;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
}

.hero-home__content {
  flex: 1;
}

.hero-home__title {
  font-size: 96px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 20px;
}

.hero-home__subtitle {
  font-size: 16px;
  color: var(--text-dark);
  opacity: 0.8;
  max-width: 400px;
  margin-bottom: 32px;
}

.hero-home__buttons {
  display: flex;
  gap: 12px;
}

.hero-home__image {
  flex: 0 0 45%;
  border-radius: 12px;
  overflow: hidden;
}

.hero-home__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

/* ===== HERO PAGES (À propos, Prestations, Contact) ===== */
.hero-page {
  position: relative;
  height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero-page__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-page__overlay {
  position: absolute;
  inset: 0;
  background: rgba(43, 53, 48, 0.6);
  z-index: 1;
}

.hero-page__content {
  position: relative;
  z-index: 2;
}

.hero-page__title {
  font-size: 64px;
  font-weight: 400;
  margin-bottom: 16px;
}

.hero-page__subtitle {
  font-size: 16px;
  opacity: 0.85;
  max-width: 500px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn--dark {
  background: var(--btn-dark);
  color: var(--text-light);
}

.btn--dark:hover {
  background: #4a5a52;
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--text-light);
  color: var(--text-light);
}

.btn--outline:hover {
  background: var(--text-light);
  color: var(--bg-dark);
}

.btn--full {
  width: 100%;
  justify-content: center;
  padding: 16px;
  background: var(--bg-hero);
  color: var(--text-dark);
  font-size: 16px;
  border-radius: 8px;
}

.btn--full:hover {
  opacity: 0.9;
}

/* ===== OFFRE SOLIDAIRE ===== */
.offre {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 96px;
}

.offre__image {
  flex: 0 0 50%;
  border-radius: 12px;
  overflow: hidden;
}

.offre__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.offre__content {
  flex: 1;
}

.offre__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--bg-hero);
  margin-bottom: 12px;
}

.offre__title {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 16px;
}

.offre__text {
  font-size: 15px;
  opacity: 0.8;
  margin-bottom: 8px;
}

.offre__more {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--bg-hero);
  margin-bottom: 24px;
  cursor: pointer;
}

/* ===== NOS SOINS ===== */
.soins {
  margin-bottom: 96px;
}

.soins__header {
  text-align: center;
  margin-bottom: 40px;
}

.soins__title {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 20px;
}

.soins__tabs {
  display: inline-flex;
  background: rgba(206, 209, 191, 0.1);
  border-radius: 24px;
  overflow: hidden;
}

.soins__tab {
  padding: 10px 28px;
  font-size: 14px;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--text-light);
  transition: background 0.3s;
}

.soins__tab.active {
  background: rgba(206, 209, 191, 0.2);
  border-radius: 24px;
}

.soins__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.soin-card {
  overflow: hidden;
}

.soin-card__image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

.soin-card__title {
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

/* ===== PRESTATIONS GRID ===== */
.prestations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 96px;
}

.prestation-card {
  background: rgba(206, 209, 191, 0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s;
}

.prestation-card:hover {
  transform: translateY(-4px);
}

.prestation-card__image {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.prestation-card__body {
  padding: 20px;
}

.prestation-card__title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}

.prestation-card__desc {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 16px;
}

/* ===== PRESTATION ACTIONS ===== */
.prestation-card__actions {
  display: flex;
  gap: 8px;
}

.prestation-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-family: var(--font-main);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--text-light);
  padding: 10px 20px;
  border-radius: 6px;
  transition: all 0.3s;
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
}

.prestation-card__link:hover {
  background: var(--text-light);
  color: var(--bg-dark);
}

.prestation-card.open .prestation-card__link {
  background: var(--text-light);
  color: var(--bg-dark);
}

.prestation-card__book {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-family: var(--font-main);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--bg-hero);
  padding: 10px 20px;
  border-radius: 6px;
  transition: all 0.3s;
  background: var(--bg-hero);
  color: var(--bg-dark);
  cursor: pointer;
  font-weight: 600;
}

.prestation-card__book:hover {
  opacity: 0.85;
}

.prestation-card.open .prestation-card__book {
  display: inline-flex;
}

/* ===== PRESTATION DETAIL LIST ===== */
.prestation-card__services {
  margin-bottom: 16px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 8px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding-top 0.4s ease, margin-bottom 0.4s ease;
  padding-top: 0;
  margin-bottom: 0;
}

.prestation-card.open .prestation-card__services {
  max-height: 800px;
  padding-top: 8px;
  margin-bottom: 16px;
}

.prestation-card__service {
  display: flex;
  align-items: center;
  padding: 6px 4px;
  font-size: 13px;
  border-bottom: 1px solid var(--border-subtle);
  gap: 8px;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 4px;
}

.prestation-card__service:hover {
  background: rgba(206, 209, 191, 0.08);
}

.prestation-card__check {
  accent-color: var(--bg-hero);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  cursor: pointer;
}

.prestation-card__service-name {
  flex: 1;
  min-width: 0;
}

.prestation-card__service-detail {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-shrink: 0;
}

.prestation-card__service-duration {
  opacity: 0.5;
  font-size: 12px;
  white-space: nowrap;
}

.prestation-card__service-price {
  font-weight: 600;
  white-space: nowrap;
  color: var(--bg-hero);
}

/* ===== DETAIL PAGE CARDS (always-open services) ===== */
.prestation-card--detail {
  display: flex;
  flex-direction: column;
}

.prestation-card--detail:hover {
  transform: none;
}

.prestation-card--detail .prestation-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.prestation-card--detail .prestation-card__services {
  max-height: none;
  padding-top: 8px;
  margin-bottom: 16px;
  border-top: 1px solid var(--border-subtle);
}

.prestation-card--detail .prestation-card__actions {
  margin-top: auto;
}

.prestation-card--detail .prestation-card__book {
  display: inline-flex;
}

/* ===== BOOKING MODAL ===== */
.booking-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.booking-modal.active {
  display: flex;
}

.booking-modal__content {
  background: var(--bg-dark);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.booking-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.booking-modal__close:hover {
  opacity: 1;
}

.booking-modal__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.booking-modal__intro {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 16px;
}

.booking-modal__service {
  background: rgba(206, 209, 191, 0.08);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.6;
}

/* ===== DATE/TIME FIELDSET ===== */
.form__fieldset {
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
}

.form__legend {
  font-size: 14px;
  font-weight: 500;
  padding: 0 8px;
}

.form__date-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.form__date-row:last-child {
  margin-bottom: 0;
}

.form__date-label {
  font-size: 13px;
  opacity: 0.7;
  min-width: 52px;
}

.form__input--date,
.form__input--time {
  flex: 1;
  min-width: 0;
}

select.form__input--time {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ced1bf' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  cursor: pointer;
}

/* ===== À PROPOS - VALEURS ===== */
.valeurs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 96px;
}

.valeur-card {
  background: rgba(206, 209, 191, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 32px;
}

.valeur-card__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.valeur-card__text {
  font-size: 14px;
  opacity: 0.75;
}

/* ===== EQUIPE ===== */
.equipe {
  margin-bottom: 96px;
  text-align: center;
}

.equipe__title {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 48px;
}

.equipe__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.equipe-card {
  text-align: center;
}

.equipe-card__image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}

.equipe-card__name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.equipe-card__role {
  font-size: 14px;
  color: var(--bg-hero);
  margin-bottom: 8px;
}

.equipe-card__desc {
  font-size: 13px;
  opacity: 0.7;
}

/* ===== FAQ ===== */
.faq {
  padding: 96px 0;
  background: var(--bg-darker);
  border-top: 1px solid var(--border-subtle);
}

.faq__title {
  font-size: 36px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 8px;
}

.faq__subtitle {
  text-align: center;
  opacity: 0.7;
  margin-bottom: 48px;
  font-size: 15px;
}

.faq__list {
  max-width: 700px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 16px;
  padding: 20px 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-main);
}

.faq__question::after {
  content: '\25BC';
  font-size: 12px;
  transition: transform 0.3s;
}

.faq__item.open .faq__question::after {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 14px;
  opacity: 0.7;
}

.faq__item.open .faq__answer {
  max-height: 200px;
  padding-bottom: 20px;
}

/* ===== CONTACT FORM ===== */
.contact-section {
  max-width: 600px;
  margin: 0 auto 60px;
  text-align: center;
}

.contact-section__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-section__subtitle {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 32px;
}

.form {
  text-align: left;
}

.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(206, 209, 191, 0.08);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  color: var(--text-light);
  font-family: var(--font-main);
  font-size: 14px;
  transition: border-color 0.3s;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: rgba(206, 209, 191, 0.4);
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--bg-hero);
}

.form__textarea {
  min-height: 120px;
  resize: vertical;
}

/* ===== MAP ===== */
.map {
  max-width: 600px;
  margin: 0 auto 96px;
  border-radius: 12px;
  overflow: hidden;
}

.map iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-darker);
  padding: 64px 0 32px;
  border-top: 1px solid var(--border-subtle);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand-name {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer__brand-desc {
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: 20px;
  max-width: 300px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(206, 209, 191, 0.1);
}

.footer__social svg {
  width: 16px;
  height: 16px;
  fill: var(--text-light);
}

.footer__col-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer__links a {
  display: block;
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 10px;
}

.footer__links a:hover {
  opacity: 1;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 12px;
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--text-light);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer__hours {
  font-size: 14px;
}

.footer__hour-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  opacity: 0.7;
}

.footer__hour-row span:last-child {
  font-weight: 500;
}

.footer__hour-row .closed {
  color: #c87a7a;
}

.footer__hour-row .open {
  color: var(--bg-hero);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-home {
    flex-direction: column;
    padding: 48px 32px;
  }

  .hero-home__title {
    font-size: 64px;
  }

  .hero-home__image {
    flex: auto;
    width: 100%;
  }

  .offre {
    flex-direction: column;
  }

  .offre__image {
    flex: auto;
    width: 100%;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-home__title {
    font-size: 48px;
  }

  .hero-page__title {
    font-size: 40px;
  }

  .soins__grid,
  .prestations-grid,
  .equipe__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .valeurs {
    grid-template-columns: 1fr;
  }

  .nav__links {
    display: none;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .soins__grid,
  .prestations-grid,
  .equipe__grid {
    grid-template-columns: 1fr;
  }

  .hero-home__buttons {
    flex-direction: column;
  }
}
