/* =========================
   SPA.CSS — Chakra Spa
   Menu accordeon lateral
   Mobile-first (80% trafic mobile)
========================= */

:root {
  --spa-border: rgba(17, 17, 17, 0.07);
  --spa-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
  --spa-shadow-soft: 0 12px 28px rgba(0, 0, 0, 0.06);
  --sidebar-width: 270px;
  --accordion-transition: 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

html, body { overflow-x: hidden; }
body { background-color: var(--color-light); }
.spa-hero, .spa-section { overflow: hidden; }

/* =========================
   HERO
========================= */
.spa-hero { margin-bottom: 0; }

.spa-hero__content {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.spa-hero__content .hero-title {
  margin: 0;
  max-width: 100%;
  text-align: left;
  white-space: nowrap;
  overflow: visible;
}

.spa-hero .hero-bg { background-position: center center; }

/* =========================
   SECTIONS
========================= */
.spa-section { padding: 88px var(--side-padding); }

.spa-intro-section {
  padding-top: 80px;
  padding-bottom: 64px;
  background-color: var(--color-light);
}

.spa-section--menu-layout {
  padding-top: 64px;
  padding-bottom: 88px;
  background: linear-gradient(180deg, rgba(150,157,168,0.06) 0%, rgba(243,239,231,1) 100%);
}

.spa-section--cta {
  padding-top: 80px;
  padding-bottom: 100px;
  background: linear-gradient(180deg, rgba(0,104,55,0.04) 0%, rgba(243,239,231,1) 100%);
}

.spa-container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
}

/* =========================
   INTRO — centree
========================= */
.spa-intro-copy {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.spa-intro-copy .section-kicker,
.spa-heading .section-kicker {
  text-align: center;
}

.spa-editorial-title {
  font-style: italic;
  max-width: 100%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.spa-editorial-title--center {
  max-width: 15ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.spa-intro-copy .section-description {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 54ch;
}

/* =========================
   TOGGLE MOBILE
========================= */
.spa-menu-toggle {
  display: none;
  width: 100%;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 18px;
  margin-bottom: 0;
  border: 1px solid rgba(88, 73, 16, 0.2);
  background: rgba(255,255,255,0.9);
  color: rgba(68, 56, 12, 0.96);
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
}

.spa-menu-toggle span { flex: 1; }

.spa-menu-toggle__arrow {
  font-size: 0.78rem;
  transition: transform var(--accordion-transition);
  flex-shrink: 0;
}

/* =========================
   LAYOUT : sidebar + panels
========================= */
/* .spa-layout {
  display: grid;
  grid-template-columns: var(--sidebar-width) 1fr;
  gap: 36px;
  align-items: start;
} */

/* =========================
   SIDEBAR
========================= */
/* .spa-sidebar {
  position: sticky;
  top: calc(var(--header-height-scrolled) + 16px);
  border: 1px solid rgba(88, 73, 16, 0.1);
  background: linear-gradient(135deg, rgba(255,255,255,0.94) 0%, rgba(243,239,231,0.98) 100%);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  overflow: hidden;
} */

/* =========================
   ACCORDEON
========================= */
/* .spa-accordion-item {
  border-bottom: 1px solid rgba(88, 73, 16, 0.08);
}

.spa-accordion-item:last-of-type {
  border-bottom: none;
} */

/* Trigger (en-tete categorie) */
.spa-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: background-color var(--accordion-transition);
}

.spa-accordion-trigger:hover {
  background-color: rgba(88, 73, 16, 0.04);
}

.spa-accordion-item.is-open > .spa-accordion-trigger {
  background-color: rgba(88, 73, 16, 0.06);
}

.spa-accordion-trigger__label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(17, 17, 17, 0.82);
  transition: color var(--accordion-transition);
}

.spa-accordion-item.is-open .spa-accordion-trigger__label {
  color: rgba(68, 56, 12, 0.96);
}

.spa-accordion-trigger__arrow {
  font-size: 0.72rem;
  color: rgba(88, 73, 16, 0.5);
  transition: transform var(--accordion-transition), color var(--accordion-transition);
  flex-shrink: 0;
}

.spa-accordion-item.is-open .spa-accordion-trigger__arrow {
  transform: rotate(180deg);
  color: var(--color-gold-brown);
}

/* Corps accordeon — animation hauteur */
.spa-accordion-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--accordion-transition);
}

/* Sous-liste */
.spa-accordion-subnav {
  list-style: none;
  margin: 0;
  padding: 4px 0 8px;
}

.spa-subnav-item {
  display: block;
  width: 100%;
  min-height: 40px;
  padding: 0 18px 0 28px;
  border: none;
  border-left: 2px solid transparent;
  background: transparent;
  color: rgba(17, 17, 17, 0.66);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  transition:
    color var(--accordion-transition),
    background-color var(--accordion-transition),
    border-color var(--accordion-transition);
}

.spa-subnav-item:hover {
  color: rgba(68, 56, 12, 0.9);
  background-color: rgba(88, 73, 16, 0.03);
}

.spa-subnav-item.is-active {
  color: rgba(68, 56, 12, 0.96);
  font-weight: 600;
  border-left-color: var(--color-gold-brown);
  background-color: rgba(88, 73, 16, 0.05);
}

/* CTA sidebar */
.spa-sidebar__cta {
  padding: 18px 16px;
  background: linear-gradient(135deg, rgba(0,104,55,0.88) 0%, rgba(4,70,38,0.96) 100%);
  text-align: center;
}

.spa-sidebar__cta-text {
  margin: 0 0 10px;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(243, 239, 231, 0.86);
}

.spa-sidebar__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(243, 239, 231, 0.45);
  background: transparent;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color var(--accordion-transition), border-color var(--accordion-transition);
}

.spa-sidebar__cta-btn:hover {
  background-color: rgba(255,255,255,0.12);
  border-color: rgba(243, 239, 231, 0.75);
}

/* =========================
   PANELS
========================= */
.spa-panels { min-width: 0; }

/* Note globale prix */
.spa-panel-note-global {
  margin-bottom: 28px;
  padding: 14px 18px;
  background-color: rgba(88, 73, 16, 0.04);
  border-left: 2px solid rgba(88, 73, 16, 0.28);
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(17, 17, 17, 0.65);
  font-style: italic;
}

.spa-panel-note-global__link {
  color: var(--color-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.spa-panel-note-global__link:hover {
  color: var(--color-gold-brown);
}

.spa-panel {
  display: none;
  animation: panelFadeIn 0.3s ease;
}

.spa-panel.is-active { display: block; }

@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.spa-panel__header {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(88, 73, 16, 0.1);
}

.spa-panel__title {
  margin: 6px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.4vw, 2.6rem);
  line-height: 1.06;
  font-weight: 500;
  font-style: italic;
  color: var(--color-black);
}

/* Detail block d'une prestation */
.spa-detail-block {
  padding: 28px 28px 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.88) 0%, rgba(243,239,231,0.96) 100%);
  border: 1px solid rgba(88, 73, 16, 0.08);
}

.spa-detail-desc {
  margin: 0 0 20px;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(17, 17, 17, 0.8);
  max-width: 56ch;
}

.spa-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.spa-detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 14px;
  background-color: rgba(88, 73, 16, 0.07);
  border: 1px solid rgba(88, 73, 16, 0.12);
  color: rgba(68, 56, 12, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

.spa-detail-badge i {
  font-size: 0.85rem;
  color: var(--color-gold-brown);
}

/* =========================
   CTA CONTACT
========================= */
.spa-cta {
  max-width: 720px;
  margin: 0 auto;
  padding: 52px 32px;
  text-align: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.78) 0%, rgba(243,239,231,0.96) 100%);
  border: 1px solid rgba(88, 73, 16, 0.08);
}

.spa-cta__text {
  max-width: 52ch;
  margin: 0 auto 32px;
  font-size: 1rem;
  line-height: 1.78;
  color: rgba(17, 17, 17, 0.8);
}

.spa-cta__contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.spa-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color var(--accordion-transition), transform var(--accordion-transition);
}

.spa-contact-btn--email {
  background-color: var(--color-gold-brown);
  border: 1px solid var(--color-gold-brown);
  color: var(--color-white);
}

.spa-contact-btn--email:hover {
  background-color: rgba(68, 56, 12, 0.96);
  transform: translateY(-2px);
}

.spa-contact-btn--tel {
  background-color: var(--color-green);
  border: 1px solid var(--color-green);
  color: var(--color-white);
}

.spa-contact-btn--tel:hover {
  background-color: rgba(4, 70, 38, 0.96);
  transform: translateY(-2px);
}

.spa-contact-btn i { font-size: 1rem; flex-shrink: 0; }

/* =========================
   MENU OVERLAY COLORS
========================= */
.site-menu__label, .site-menu__link { color: rgba(68,56,12,0.96); }
.site-menu__link:hover, .site-menu__link:focus-visible { color: rgba(68,56,12,0.96); transform: translateX(4px); }
.site-menu__link::after, .site-menu__close span { background-color: rgba(68,56,12,0.96); }
.menu-btn span { background-color: var(--color-white); }

/* =========================
   RESPONSIVE — 1200px
========================= */
@media (max-width: 1200px) {
  .spa-equip-bento {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
  }

  .spa-equip-item--wide {
    grid-column: span 2;
  }
}

/* =========================
   RESPONSIVE — 1100px
========================= */
@media (max-width: 1100px) {
  :root { --sidebar-width: 230px; }
  .spa-layout { gap: 24px; }
}

/* =========================
   RESPONSIVE — TABLET 900px
   Sidebar devient dropdown
========================= */
@media (max-width: 900px) {

  .spa-menu-toggle { display: flex; }

  .spa-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .spa-sidebar {
    position: static;
    display: none;
    border-top: none;
    box-shadow: none;
    border-left: none;
    border-right: none;
  }

  .spa-sidebar.is-open { display: block; }

  /* En mode mobile, les accordeons sont tous fermes par defaut */
  .spa-accordion-body { max-height: 0 !important; }
  .spa-accordion-item.is-open .spa-accordion-body {
    max-height: 600px !important;
  }

  .spa-sidebar__cta { display: none; }

  .spa-panels { margin-top: 24px; }

  .spa-intro-section { padding-top: 60px; padding-bottom: 44px; }

  .spa-section { padding: 64px var(--side-padding); }
  .spa-section--menu-layout { padding-top: 44px; padding-bottom: 60px; }
  .spa-section--cta { padding-top: 64px; padding-bottom: 78px; }

  /* Hero */
  .spa-hero {
    min-height: auto;
    height: clamp(320px, 58vw, 520px);
    padding-top: calc(var(--header-height) + 12px);
    padding-bottom: 28px;
    align-items: flex-end;
  }

  .spa-hero__content .hero-title {
    white-space: normal;
    max-width: 10ch;
  }

  /* CTA contact */
  .spa-cta { padding: 36px 20px; }
  .spa-cta__contacts { flex-direction: column; align-items: stretch; }
  .spa-contact-btn { justify-content: center; min-height: 56px; font-size: 1rem; }
}

/* =========================
   RESPONSIVE — MOBILE 640px
========================= */
@media (max-width: 640px) {

  .spa-section { padding: 52px var(--side-padding); }
  .spa-section--menu-layout { padding-top: 36px; padding-bottom: 48px; }
  .spa-section--cta { padding-top: 52px; padding-bottom: 68px; }
  .spa-intro-section { padding-top: 48px; padding-bottom: 36px; }

  .spa-hero {
    height: clamp(260px, 62vw, 380px);
    padding-top: calc(var(--header-height) + 8px);
    padding-bottom: 20px;
  }

  .spa-hero__content .hero-title {
    font-size: clamp(1.9rem, 8vw, 3rem);
    max-width: 11ch;
  }

  .spa-menu-toggle { min-height: 50px; font-size: 0.94rem; }

  .spa-accordion-trigger { min-height: 48px; padding: 0 14px; }
  .spa-accordion-trigger__label { font-size: 0.88rem; }
  .spa-subnav-item { padding: 0 14px 0 22px; font-size: 0.85rem; min-height: 38px; }

  .spa-panel__title { font-size: clamp(1.4rem, 6vw, 1.9rem); }

  .spa-detail-block { padding: 20px 16px 18px; }
  .spa-detail-desc { font-size: 0.95rem; max-width: 100%; }
  .spa-detail-badge { font-size: 0.86rem; min-height: 32px; }

  .spa-cta { padding: 30px 16px; }
  .spa-contact-btn { min-height: 54px; font-size: 0.96rem; }
}

/* =========================
   TRES PETIT 380px
========================= */
@media (max-width: 380px) {
  .spa-hero__content .hero-title { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .spa-accordion-trigger__label { font-size: 0.84rem; }
  .spa-subnav-item { font-size: 0.82rem; }
}
/* ==============================================
   SPA MENU — Accordéon vertical centré
   Remplace le bloc spa-section--menu-layout
   dans spa.css
   ============================================== */

/* ---- Section wrapper ---- */
.spa-section--menu-layout {
  padding-top: 64px;
  padding-bottom: 88px;
  background: linear-gradient(180deg, rgba(150,157,168,0.06) 0%, rgba(243,239,231,1) 100%);
}

/* ---- Accordéon centré ---- */
.spa-accordion-wrap {
  max-width: 820px;
  margin: 0 auto 40px;
  border: 1px solid rgba(88, 73, 16, 0.1);
  background: linear-gradient(135deg, rgba(255,255,255,0.94) 0%, rgba(243,239,231,0.98) 100%);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  overflow: hidden;
}

/* ---- Item catégorie ---- */
.spa-cat-item {
  border-bottom: 1px solid rgba(88, 73, 16, 0.08);
}

.spa-cat-item:last-child {
  border-bottom: none;
}

/* ---- Trigger — ligne catégorie ---- */
.spa-cat-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 62px;
  padding: 0 24px;
  border: none;
  background: transparent;
  cursor: pointer;
  gap: 16px;
  transition: background-color 0.25s ease;
}

.spa-cat-trigger:hover {
  background-color: rgba(88, 73, 16, 0.04);
}

.spa-cat-item.is-open > .spa-cat-trigger {
  background-color: rgba(88, 73, 16, 0.06);
}

/* Label */
.spa-cat-trigger__label {
  flex: 1;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(17, 17, 17, 0.82);
  text-align: left;
  transition: color 0.25s ease;
}

.spa-cat-item.is-open .spa-cat-trigger__label {
  color: rgba(68, 56, 12, 0.96);
}

/* Icône +/− */
.spa-cat-trigger__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border: 1.5px solid rgba(88, 73, 16, 0.25);
  border-radius: 50%;
  background: transparent;
  color: rgba(88, 73, 16, 0.55);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.spa-cat-item.is-open .spa-cat-trigger__icon {
  background-color: var(--color-gold-brown);
  border-color: var(--color-gold-brown);
  color: #fff;
  transform: rotate(45deg); /* + → × */
}

/* ---- Corps accordéon — animation hauteur ---- */
.spa-cat-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Grille de cards ---- */
.spa-prestations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background-color: rgba(88, 73, 16, 0.08);
  border-top: 1px solid rgba(88, 73, 16, 0.08);
}

/* ---- Card prestation ---- */
.spa-presta-card {
  background: #fff;
  padding: 22px 24px;
  transition: background-color 0.2s ease;
}

.spa-presta-card:hover {
  background-color: rgba(243, 239, 231, 0.7);
}

.spa-presta-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.spa-presta-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  font-style: italic;
  color: var(--color-black);
  line-height: 1.3;
  flex: 1;
}

.spa-presta-card__duration {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  padding: 3px 10px;
  background-color: rgba(88, 73, 16, 0.07);
  border: 1px solid rgba(88, 73, 16, 0.12);
  color: rgba(68, 56, 12, 0.85);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
}

.spa-presta-card__duration i {
  color: var(--color-gold-brown);
  font-size: 0.75rem;
}

.spa-presta-card__desc {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(17, 17, 17, 0.65);
}

/* ---- Note prix ---- */
.spa-price-note {
  max-width: 820px;
  margin: 0 auto;
  padding: 14px 20px;
  background-color: rgba(88, 73, 16, 0.04);
  border-left: 2px solid rgba(88, 73, 16, 0.28);
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(17, 17, 17, 0.65);
  font-style: italic;
}

.spa-price-note__link {
  color: var(--color-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.spa-price-note__link:hover {
  color: var(--color-gold-brown);
}

/* =========================
   ÉQUIPEMENTS — Bento grid
========================= */
.spa-section--equipements {
  padding-bottom: 72px;
  background: linear-gradient(
    180deg,
    rgba(150, 157, 168, 0.06) 0%,
    rgba(243, 239, 231, 1) 100%
  );
}

.spa-equip-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 14px;
}

.spa-equip-item--wide {
  grid-column: span 2;
}

.spa-equip-item {
  position: relative;
  overflow: hidden;
  background-color: var(--color-gray-fallback);
}

.spa-equip-item__img {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: scale(1);
  filter: saturate(0.88) brightness(0.82);
  transition:
    transform 1.6s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.spa-equip-item:hover .spa-equip-item__img {
  transform: scale(1.1);
  filter: saturate(1.05) brightness(0.92);
}

.spa-equip-item__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.52) 0%,
    rgba(0, 0, 0, 0.08) 50%,
    transparent 100%
  );
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.spa-equip-item:hover .spa-equip-item__overlay {
  opacity: 0.7;
}

.spa-equip-item__title {
  position: absolute;
  bottom: 20px;
  left: 22px;
  right: 22px;
  z-index: 2;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.6vw, 1.6rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-white);
}

/* =========================
   PRESTATIONS INTRO
========================= */
.spa-prestations-intro {
  max-width: 54ch;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.78;
  color: rgba(17, 17, 17, 0.76);
  text-align: center;
}

/* =========================
   SIGNATURE QUOTE
========================= */
.spa-section--quote {
  padding-top: 0;
  padding-bottom: 0;
}

.spa-signature {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 52px 32px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(243, 239, 231, 0.96) 100%
  );
  border: 1px solid rgba(88, 73, 16, 0.08);
}

.spa-signature__text {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.6rem);
  line-height: 1.18;
  font-style: italic;
  color: var(--color-green-dark);
}

.spa-signature__author {
  margin: 0;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(88, 73, 16, 0.7);
}

/* =========================
   CTA CONTACT
========================= */
.spa-section--cta {
  padding-top: 80px;
  padding-bottom: 100px;
  background: linear-gradient(
    180deg,
    rgba(0, 104, 55, 0.04) 0%,
    rgba(243, 239, 231, 1) 100%
  );
}

.spa-cta {
  max-width: 760px;
  margin: 0 auto;
  padding: 52px 36px;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.78) 0%,
    rgba(243, 239, 231, 0.96) 100%
  );
  border: 1px solid rgba(88, 73, 16, 0.08);
}

.spa-cta__text {
  max-width: 52ch;
  margin: 0 auto 28px;
  font-size: 1rem;
  line-height: 1.78;
  color: rgba(17, 17, 17, 0.8);
}

.spa-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.spa-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    background-color var(--transition-fast),
    transform var(--transition-fast);
}

.spa-cta__btn--primary {
  background-color: var(--color-green);
  color: var(--color-white);
}

.spa-cta__btn--primary:hover {
  background-color: rgba(4, 70, 38, 0.96);
  transform: translateY(-2px);
}

.spa-cta__btn--secondary {
  background-color: var(--color-gold-brown);
  color: var(--color-white);
}

.spa-cta__btn--secondary:hover {
  background-color: rgba(68, 56, 12, 0.96);
  transform: translateY(-2px);
}

.spa-cta__btn i {
  font-size: 1rem;
  flex-shrink: 0;
}

/* ==============================================
   RESPONSIVE — Tablet 768px
   ============================================== */
@media (max-width: 768px) {
  /* Bento grid — 2 columns, horizontal scroll on small */
  .spa-equip-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
    gap: 10px;
  }

  .spa-equip-item--wide {
    grid-column: span 2;
  }

  .spa-equip-item__title {
    font-size: 1.1rem;
    bottom: 14px;
    left: 16px;
  }

  /* Signature + CTA */
  .spa-signature { padding: 36px 20px; }
  .spa-cta { padding: 36px 22px; }
  .spa-cta__actions { flex-direction: column; align-items: stretch; }
  .spa-cta__btn { justify-content: center; min-height: 54px; }

  .spa-section--menu-layout {
    padding-top: 44px;
    padding-bottom: 60px;
  }

  .spa-accordion-wrap {
    margin-bottom: 28px;
  }

  .spa-cat-trigger {
    min-height: 56px;
    padding: 0 18px;
  }

  .spa-cat-trigger__label {
    font-size: 0.94rem;
  }

  .spa-cat-trigger__icon {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }

  /* 1 colonne sur tablette */
  .spa-prestations-grid {
    grid-template-columns: 1fr;
  }

  .spa-presta-card {
    padding: 18px 18px;
  }

  .spa-presta-card__title {
    font-size: 0.95rem;
  }
}

/* ==============================================
   RESPONSIVE — Mobile 480px
   ============================================== */
@media (max-width: 480px) {
  /* grid rules below are overridden at ≤640px by horizontal scroll — kept for reference */
  .spa-equip-item__title {
    font-size: 1rem;
    bottom: 12px;
    left: 14px;
  }

  .spa-section--menu-layout {
    padding-top: 36px;
    padding-bottom: 48px;
  }

  .spa-cat-trigger {
    min-height: 52px;
    padding: 0 14px;
    gap: 10px;
  }

  .spa-cat-trigger__label {
    font-size: 0.88rem;
  }

  .spa-cat-trigger__icon {
    width: 26px;
    height: 26px;
    font-size: 0.95rem;
  }

  .spa-presta-card {
    padding: 16px 14px;
  }

  .spa-presta-card__header {
    flex-direction: column;
    gap: 6px;
  }

  .spa-presta-card__title {
    font-size: 0.9rem;
  }

  .spa-presta-card__desc {
    font-size: 0.865rem;
  }

  .spa-price-note {
    padding: 12px 14px;
    font-size: 0.85rem;
  }
}

/* ==============================================
   ÉQUIPEMENTS — Scroll horizontal mobile ≤ 640px
   Remplace le bento grid par un défilement fluide
   ============================================== */
@media (max-width: 640px) {
  /* Passe de grid à flex scrollable */
  .spa-equip-bento {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 12px;
    padding-bottom: 6px;
  }

  .spa-equip-bento::-webkit-scrollbar {
    display: none;
  }

  /* Chaque carte : largeur fixe, snap au bord gauche */
  /* 72vw = environ 1,3 carte visible → le bord de la suivante reste visible */
  .spa-equip-item,
  .spa-equip-item--wide {
    flex: 0 0 72vw;
    height: 220px;
    scroll-snap-align: start;
  }
}