/* ═══════════════════════════════════════════════════════════
   SOLAYA STUDIO ZEN — Main Stylesheet
   Direction artistique : vert sauge, beige, olive, crème
   Typographie : Playfair Display (titres) + Raleway (corps)
   ═══════════════════════════════════════════════════════════ */

/* ─── CSS Custom Properties ────────────────────────────── */
:root {
  /* Palette principale — version warm / ORA-like */
  --sage:          #8F9B8A;
  --sage-dark:     #6C7867;
  --sage-light:    #B8C1B1;
  --beige:         #D9CFBF;
  --beige-light:   #EBE4D9;
  --olive:         #A79C86;
  --olive-light:   #C2B8A4;
  --brown:         #7D6047;
  --brown-light:   #9A7A5D;
  --cream:         #F2EEE7;
  --warm-white:    #FAF7F2;
  --dark:          #2F2B27;
  --dark-soft:     #544D46;
  --hero-overlay:  rgba(47, 38, 30, 0.48);

  /* Fontes */
  --font-heading:  'Playfair Display', 'Georgia', serif;
  --font-body:     'Raleway', 'Helvetica Neue', sans-serif;

  /* Espacements */
  --section-padding: clamp(5rem, 10vw, 9rem);
  --container-max:   1200px;
  --gap:             2rem;

  /* Transitions */
  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  /* Ombres */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.10);

  /* Rayons */
  --radius:    16px;
  --radius-lg: 30px;
}


/* ─── Reset & Base ─────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  background-color: var(--cream);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

::selection {
  background: var(--sage-light);
  color: var(--dark);
}


/* ─── Typography ───────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }

p {
  margin-bottom: 1.2em;
  color: var(--dark-soft);
}

strong { color: var(--dark); }

em { font-style: italic; }


/* ─── Layout ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  position: relative;
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}


/* ─── Common Components ────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}

.title-divider {
  margin: 1.5rem 0 2rem;
  color: var(--sage);
}

.title-divider.center {
  text-align: center;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-label {
  display: block;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--dark-soft);
  max-width: 500px;
  margin: 1.5rem auto 0;
}

.section-watermark {
  position: absolute;
  top: 10%;
  right: -5%;
  width: 300px;
  height: auto;
  color: var(--sage);
  pointer-events: none;
  z-index: 0;
}


/* ─── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn svg {
  transition: transform 0.3s var(--ease);
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--sage);
  color: var(--warm-white);
  border-color: var(--sage);
}

.btn-primary:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(127, 158, 151, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--sage-dark);
  border-color: var(--sage);
}

.btn-outline:hover {
  background: var(--sage);
  color: var(--warm-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(127, 158, 151, 0.25);
}

.btn-lg {
  padding: 1.2rem 2.8rem;
  font-size: 0.9rem;
}


/* ─── Image Frame ──────────────────────────────────────── */
.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.image-frame:hover img {
  transform: scale(1.04);
}


/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0.9rem;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.7rem 0;
  transition: all 0.4s var(--ease);
}

.navbar.scrolled {
  background: rgba(47, 43, 39, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.8rem 0;
  box-shadow: 0 10px 35px rgba(0,0,0,0.22);
  border-radius: 14px;
  max-width: min(var(--container-max), calc(100% - 2rem));
  margin: 0 auto;
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  transition: opacity 0.3s;
}

.nav-logo:hover { opacity: 0.8; }

.nav-tagline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.65);
  padding-left: 2px;
}

.nav-logo-img {
  height: clamp(38px, 5vw, 56px);
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-logo-fallback {
  display: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.9rem;
  color: var(--warm-white);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links li a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  color: rgba(250,247,242,0.9);
  padding: 0.5rem 1.2rem;
  position: relative;
  transition: color 0.3s;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background: var(--beige-light);
  transition: width 0.3s var(--ease);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 60%;
}

.nav-links li a:hover {
  color: var(--warm-white);
}

.navbar.scrolled .nav-links li a {
  color: rgba(250,247,242,0.86);
}

.navbar.scrolled .nav-links li a:hover {
  color: var(--warm-white);
}

.navbar.scrolled .nav-links li a::after {
  background: var(--beige-light);
}

.nav-cta {
  background: rgba(235,228,217,0.24);
  border-radius: 50px !important;
  margin-left: 0.5rem;
  padding: 0.5rem 1.5rem !important;
}

.navbar.scrolled .nav-cta {
  background: rgba(250,247,242,0.18) !important;
  color: var(--warm-white) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.navbar.scrolled .nav-toggle span {
  background: #fff;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    ellipse at center,
    rgba(38, 32, 26, 0.55) 0%,
    rgba(38, 32, 26, 0.45) 50%,
    rgba(38, 32, 26, 0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 2rem;
  max-width: 750px;
}

.hero-badge {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--beige-light);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s 0.3s var(--ease-out) forwards;
}

.hero h1 {
  color: var(--warm-white);
  margin-bottom: 1.5rem;
}

.hero-line {
  display: block;
}

.hero-line-1 {
  font-size: 0.55em;
  font-weight: 400;
  letter-spacing: 2px;
  opacity: 0;
  animation: fadeUp 1s 0.5s var(--ease-out) forwards;
}

.hero-line-2 {
  font-weight: 500;
  font-size: 1.05em;
  opacity: 0;
  animation: fadeUp 1s 0.7s var(--ease-out) forwards;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 0.8rem;
  opacity: 0;
  animation: fadeUp 1s 1.1s var(--ease-out) forwards;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.hero-actions > * {
  opacity: 0;
  animation: fadeUp 1s 1.3s var(--ease-out) forwards;
}

.hero-actions > *:nth-child(2) {
  animation-delay: 1.5s;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 1.1rem 3rem;
  border-radius: 6px;
  border: 1.5px solid rgba(250,247,242,0.55);
  background: rgba(250,247,242,0.12);
  color: var(--warm-white);
  backdrop-filter: blur(6px);
  cursor: pointer;
  transition: all 0.35s var(--ease);
}

.btn-hero:hover {
  background: rgba(250,247,242,0.24);
  border-color: rgba(250,247,242,0.8);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.hero-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  color: rgba(250,247,242,0.7);
  transition: color 0.3s;
  cursor: pointer;
}

.hero-link:hover {
  color: var(--warm-white);
}




/* ═══════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════ */
.section-about {
  background: var(--warm-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image .image-frame {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
}

.about-content {
  position: relative;
  z-index: 1;
}

.about-content h2 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-style: italic;
  color: var(--sage-dark);
}

.about-lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--dark) !important;
  line-height: 1.8;
}

.about-disclaimer {
  font-size: 0.85rem;
  color: var(--olive) !important;
  border-left: 2px solid var(--beige);
  padding-left: 1.2rem;
  margin-top: 2rem;
}


/* ═══════════════════════════════════════════════════════════
   GALLERY STRIP
   ═══════════════════════════════════════════════════════════ */
.gallery-strip {
  overflow: hidden;
  background: var(--warm-white);
  padding: 1.5rem 0;
}

.gallery-track {
  display: flex;
  gap: 1.5rem;
  animation: galleryScroll 30s linear infinite;
  width: max-content;
}

.gallery-item {
  flex-shrink: 0;
  width: 350px;
  height: 240px;
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.06);
}


/* ═══════════════════════════════════════════════════════════
   SOINS
   ═══════════════════════════════════════════════════════════ */
.section-soins {
  background: var(--cream);
}

.section-soins .section-header {
  color: var(--sage);
}

.section-intro-sub {
  font-size: 0.92rem;
  color: var(--dark-soft);
  margin-top: 0.5rem;
}


/* ═══════════════════════════════════════════════════════════
   BIENFAITS
   ═══════════════════════════════════════════════════════════ */
.section-bienfaits {
  background: #7f8978;
  color: var(--warm-white);
}

.section-bienfaits .section-label {
  color: var(--beige-light);
}

.section-bienfaits h2 {
  color: var(--warm-white);
}

.section-bienfaits .title-divider {
  color: var(--beige-light);
}

.bienfaits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.bienfaits-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.bienfaits-list li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
}

.bienfait-icon {
  font-size: 0.7rem;
  color: var(--beige-light);
  flex-shrink: 0;
}

.bienfaits-image .image-frame {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
}


/* ═══════════════════════════════════════════════════════════
   PRESTATIONS & TARIFS (inside section-soins)
   ═══════════════════════════════════════════════════════════ */

.prestations-list {
  max-width: 900px;
  margin: 0 auto;
}

/* Category headers */
.prestation-category {
  margin-top: 3.5rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0;
}

.prestation-category:first-child {
  margin-top: 0;
}

.category-header {
  display: flex;
  align-items: stretch;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--warm-white);
  border: none;
}

.category-image {
  flex-shrink: 0;
  width: 200px;
  min-height: 140px;
  overflow: hidden;
  position: relative;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.category-header:hover .category-image img {
  transform: scale(1.05);
}

.category-text {
  flex: 1;
  padding: 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.category-text p {
  font-size: 0.9rem;
  color: var(--dark-soft);
  line-height: 1.6;
  margin-top: 0.4rem;
}

.category-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  font-style: italic;
  color: var(--brown);
}

/* Each prestation row */
.prestation-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 2rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background 0.3s;
}

.prestation-row:hover {
  background: rgba(242, 238, 231, 0.5);
  margin: 0 -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: var(--radius);
}

.prestation-info h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.prestation-info p {
  font-size: 0.88rem;
  color: var(--olive);
  margin-bottom: 0;
  line-height: 1.5;
}

.prestation-details {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
  min-width: 80px;
  text-align: right;
}

.prestation-duration {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dark-soft);
  letter-spacing: 0.5px;
}

.prestation-price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brown);
}

.btn-reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  border-radius: 6px;
  background: var(--brown);
  color: var(--warm-white);
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.btn-reserve:hover {
  background: var(--brown-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(125, 96, 71, 0.3);
}

/* Sub-row (packs) */
.prestation-row-sub {
  border-bottom: none;
  padding: 0.6rem 0 1rem;
}

.prestation-row-sub .prestation-info {
  grid-column: 1 / -1;
}

.prestation-pack {
  font-size: 0.88rem !important;
  color: var(--dark-soft) !important;
  padding-left: 0.5rem;
}

.prestation-pack strong {
  color: var(--brown);
}

.prestation-pack em {
  color: var(--sage-dark);
  font-size: 0.82rem;
}

.tarifs-note {
  text-align: center;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--olive);
  margin-top: 3rem;
}


/* ═══════════════════════════════════════════════════════════
   TÉMOIGNAGES
   ═══════════════════════════════════════════════════════════ */
.section-temoignages {
  background: var(--cream);
}

.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.temoignage-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem 2rem;
  position: relative;
  border: none;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.temoignage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.quote-mark {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-style: italic;
  color: var(--sage-light);
  line-height: 0.5;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.temoignage-card p {
  font-size: 1rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--dark-soft);
}

.temoignage-card footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--beige);
}

.temoignage-card cite {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--dark);
}

.stars {
  color: var(--brown-light);
  font-size: 0.85rem;
  letter-spacing: 2px;
}


/* ═══════════════════════════════════════════════════════════
   CTA FINAL
   ═══════════════════════════════════════════════════════════ */
.cta-final {
  position: relative;
  padding: clamp(5rem, 12vw, 10rem) 0;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(83, 66, 50, 0.88) 0%,
    rgba(83, 66, 50, 0.7) 50%,
    rgba(46, 37, 28, 0.6) 100%
  );
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--warm-white);
  margin-bottom: 2.5rem;
  line-height: 1.3;
}

.cta-content em {
  font-style: italic;
  color: var(--beige-light);
}


/* ═══════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════ */
.section-contact {
  background: var(--warm-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.contact-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--warm-white);
  border-radius: 50%;
  color: var(--sage);
  box-shadow: var(--shadow-sm);
}

.contact-item h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 0.3rem;
}

.contact-item p {
  margin-bottom: 0;
  font-size: 1rem;
  color: var(--dark-soft);
}

/* Réseaux sociaux contact */
.contact-socials {
  margin-top: 0.5rem;
}

.contact-socials h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 0.8rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  background: var(--cream);
  color: var(--dark-soft);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s var(--ease);
}

.social-link:hover {
  background: var(--brown);
  color: var(--warm-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(125, 96, 71, 0.25);
}

.social-link svg {
  flex-shrink: 0;
}

/* Contact right (map + card) */
.contact-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-maps-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.map-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 0.5rem;
  text-align: center;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-map iframe {
  display: block;
}

@media (max-width: 600px) {
  .contact-maps-dual {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  background: #7a7468;
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: var(--warm-white);
}

.contact-quote {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255,255,255,0.9) !important;
  margin-bottom: 1rem;
}

.contact-signature {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--beige-light) !important;
  margin-bottom: 2.5rem;
}

.contact-cta p {
  color: rgba(255,255,255,0.7) !important;
  font-size: 0.95rem;
}

.contact-card .btn-outline {
  color: var(--warm-white);
  border-color: rgba(255,255,255,0.4);
}

.contact-card .btn-outline:hover {
  background: var(--warm-white);
  color: var(--sage-dark);
  border-color: var(--warm-white);
}


/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: #2e2924;
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.footer-logo-img {
  width: min(140px, 40vw);
  height: auto;
  margin-bottom: 0.8rem;
}

.footer-tagline {
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4) !important;
  margin-top: 0.8rem;
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-nav a {
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: var(--sage-light);
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
  transition: all 0.3s var(--ease);
}

.footer-socials a:hover {
  background: rgba(255,255,255,0.15);
  color: var(--warm-white);
  transform: translateY(-2px);
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4) !important;
  margin-bottom: 0;
}

.footer-legal {
  font-size: 0.75rem;
  font-style: italic;
  color: rgba(255,255,255,0.3) !important;
  max-width: 500px;
  text-align: center;
  margin-bottom: 0;
}

.footer-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--sage-light);
}


/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}



@keyframes galleryScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Reveal animation classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered reveal for grid items */
.reveal:nth-child(2) { transition-delay: 0.15s; }
.reveal:nth-child(3) { transition-delay: 0.3s; }
.reveal:nth-child(4) { transition-delay: 0.45s; }


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

/* ─── Tablet (≤ 1024px) ────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .about-content {
    text-align: center;
  }

  .about-content .title-divider {
    text-align: center;
  }

  .about-disclaimer {
    text-align: left;
  }

  .image-accent {
    right: -15px;
    bottom: -15px;
  }

  .bienfaits-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .bienfaits-image {
    max-width: 450px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

/* ─── Mobile (≤ 768px) ─────────────────────────────────── */
@media (max-width: 768px) {
  /* Navigation mobile */
  .nav-tagline {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background: #2f2b27;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: right 0.4s var(--ease-out);
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links li a {
    color: var(--warm-white) !important;
    font-size: 1rem;
    padding: 1rem 2rem;
  }

  .nav-links li a:hover {
    color: var(--beige-light) !important;
  }

  .nav-links li a::after {
    background: var(--sage) !important;
  }

  .nav-cta {
    background: rgba(250,247,242,0.16) !important;
    color: var(--warm-white) !important;
    margin-left: 0 !important;
    margin-top: 1rem;
  }

  /* Mobile overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 999;
  }

  .nav-overlay.active {
    display: block;
  }

  /* Hero mobile */
  .hero-content {
    padding: 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
    text-align: center;
  }

  .hero-subtitle {
    text-align: center;
    max-width: 90%;
  }

  .hero-actions {
    align-items: center;
    width: 100%;
  }



  /* Soins mobile */
  .category-header {
    flex-direction: column;
    gap: 0;
    text-align: center;
  }

  .category-image {
    width: 100%;
    height: 160px;
  }

  .category-text {
    padding: 1.2rem 1.4rem;
  }

  /* Témoignages mobile */
  .temoignages-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Prestations mobile */
  .prestation-row {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding: 1.3rem 0;
  }

  .prestation-details {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    min-width: auto;
  }

  .btn-reserve {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.5rem;
  }

  .prestation-row:hover {
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }

  /* Gallery mobile */
  .gallery-item {
    width: 280px;
    height: 190px;
  }

  /* Footer mobile */
  .footer-top {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .footer-socials {
    justify-content: center;
  }

  .social-links {
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    text-align: center;
  }

  /* CTA mobile */
  .cta-content h2 {
    font-size: 1.8rem;
  }

  /* Bienfaits mobile */
  .bienfaits-image {
    order: -1;
  }

  .bienfaits-content {
    text-align: center;
  }

  .bienfaits-list li {
    justify-content: center;
  }
}

/* ─── Small Mobile (≤ 480px) ───────────────────────────── */
@media (max-width: 480px) {
  .soin-content {
    padding: 1.5rem;
  }

  .tarif-card {
    padding: 2rem 1.5rem;
  }

  .contact-card {
    padding: 2rem;
  }

  .temoignage-card {
    padding: 2rem 1.5rem 1.5rem;
  }
}


/* ─── Prefers reduced motion ───────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .gallery-track {
    animation: none;
  }
}


/* ─── Print ────────────────────────────────────────────── */
@media print {
  .navbar,
  .gallery-strip,
  .cta-final { display: none; }

  .hero { min-height: auto; padding: 2rem 0; }
  .hero-overlay { background: none; }
  .hero h1, .hero-subtitle { color: var(--dark); }

  .section { padding: 2rem 0; }
}
