/* ===================================================
   EÔS — Estime Ô Soins
   Feuille de style principale
   =================================================== */

:root {
  --rose-poudre: #e8c4b8;
  --rose-clair: #f5e0d6;
  --creme: #faf3ee;
  --creme-profond: #f3e9e1;
  --terracotta: #c8856b;
  --terracotta-fonce: #a86850;
  --encre: #2d1f1a;
  --encre-doux: #5c4a40;
  --or-doux: #b8956a;
  --blanc-casse: #fdfaf7;
  --shadow-soft: 0 20px 60px -20px rgba(168, 104, 80, 0.18);
  --shadow-deep: 0 40px 100px -30px rgba(45, 31, 26, 0.22);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  color: var(--encre);
  background: var(--creme);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Texture de fond subtile */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(at 20% 10%, rgba(232, 196, 184, 0.25) 0px, transparent 50%),
    radial-gradient(at 80% 90%, rgba(200, 133, 107, 0.12) 0px, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.display { font-family: 'Cormorant Garamond', serif; font-weight: 300; letter-spacing: -0.01em; }
.display-italic { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300; }

/* ========== NAVIGATION ========== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(250, 243, 238, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(184, 149, 106, 0.1);
  transition: all 0.4s ease;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--encre);
  text-decoration: none;
}

.logo span {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 300;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--encre-doux);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--terracotta); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 0.75rem 1.75rem;
  background: var(--encre);
  color: var(--creme);
  border-radius: 100px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--terracotta);
  transform: translateY(-1px);
}

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--encre);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  padding: 8rem 3rem 4rem;
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  z-index: 1;
}

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

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--rose-poudre);
  animation: fadeInUp 1s ease 0.2s both;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.95;
  font-weight: 300;
  color: var(--encre);
  margin-bottom: 2rem;
  animation: fadeInUp 1.2s ease 0.4s both;
}

.hero h1 em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 300;
}

.hero-tagline {
  font-size: 1.15rem;
  color: var(--encre-doux);
  margin-bottom: 3rem;
  max-width: 480px;
  line-height: 1.7;
  animation: fadeInUp 1.2s ease 0.6s both;
}

.hero-cta-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s ease 0.8s both;
}

.btn-primary {
  padding: 1.1rem 2.5rem;
  background: var(--encre);
  color: var(--creme);
  border: none;
  border-radius: 100px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--terracotta);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }

.btn-ghost {
  padding: 1.1rem 2.5rem;
  background: transparent;
  color: var(--encre);
  border: 1px solid var(--encre);
  border-radius: 100px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-ghost:hover {
  background: var(--encre);
  color: var(--creme);
  transform: translateY(-2px);
}

/* Visuel hero */
.hero-visual {
  position: relative;
  height: 70vh;
  min-height: 500px;
  animation: fadeIn 1.5s ease 0.5s both;
}

.hero-shape {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, var(--rose-poudre) 0%, var(--rose-clair) 40%, var(--creme-profond) 100%);
  border-radius: 50% 45% 55% 50% / 60% 50% 50% 40%;
  filter: blur(0.5px);
  animation: morph 20s ease-in-out infinite;
}

.hero-shape::after {
  content: '';
  position: absolute;
  inset: 15%;
  background: radial-gradient(circle at 40% 40%, rgba(255,255,255,0.5) 0%, transparent 60%);
  border-radius: inherit;
}

.hero-quote {
  position: absolute;
  bottom: 8%;
  left: -10%;
  background: var(--blanc-casse);
  padding: 1.5rem 2rem;
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
  max-width: 280px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.4;
  color: var(--encre);
  transform: rotate(-2deg);
  z-index: 3;
}

.hero-quote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 15px;
  font-size: 4rem;
  color: var(--terracotta);
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
}

@keyframes morph {
  0%, 100% { border-radius: 50% 45% 55% 50% / 60% 50% 50% 40%; }
  50% { border-radius: 45% 55% 50% 60% / 50% 60% 40% 50%; }
}

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

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

/* ========== SECTIONS GÉNÉRALES ========== */
section {
  position: relative;
  z-index: 1;
  padding: 8rem 3rem;
}

.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--encre);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: italic;
  color: var(--terracotta);
}

/* ========== À PROPOS ========== */
.about {
  background: linear-gradient(180deg, var(--creme) 0%, var(--creme-profond) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 6rem;
  max-width: 1300px;
  margin: 0 auto;
  align-items: start;
}

.about-portrait {
  position: sticky;
  top: 120px;
}

.portrait-frame {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--rose-poudre) 0%, var(--terracotta) 100%);
  border-radius: 200px 200px 8px 8px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}

.portrait-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(253, 250, 247, 0.4) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 280' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0' stop-color='%23faf3ee' stop-opacity='0.3'/%3E%3Cstop offset='1' stop-color='%232d1f1a' stop-opacity='0.1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Ccircle cx='100' cy='90' r='38' fill='url(%23g)' opacity='0.6'/%3E%3Cpath d='M40 280 Q 40 170, 100 165 Q 160 170, 160 280 Z' fill='url(%23g)' opacity='0.6'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

.portrait-caption {
  margin-top: 1.5rem;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--encre-doux);
  font-size: 1.1rem;
}

.portrait-caption strong {
  display: block;
  font-style: normal;
  font-weight: 500;
  color: var(--encre);
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
  letter-spacing: 0.05em;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--encre-doux);
  margin-bottom: 1.5rem;
}

.pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.8rem;
  line-height: 1.4;
  color: var(--terracotta);
  padding: 2rem 0 2rem 2rem;
  border-left: 2px solid var(--terracotta);
  margin: 3rem 0;
}

.pull-quote-secondary {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--encre-doux);
  margin-top: 1rem;
  display: block;
}

/* ========== PHILOSOPHIE / DÉDIÉ ========== */
.dedicated {
  background: var(--encre);
  color: var(--creme);
  text-align: center;
  padding: 10rem 3rem;
  position: relative;
  overflow: hidden;
}

.dedicated::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(232, 196, 184, 0.08) 0%, transparent 50%);
  animation: rotate 40s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.dedicated-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.dedicated .section-eyebrow { color: var(--rose-poudre); }

.dedicated-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.3;
  font-weight: 300;
  margin-bottom: 3rem;
}

.dedicated-text em {
  font-style: italic;
  color: var(--rose-poudre);
}

.dedicated-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ========== SOINS / SERVICES ========== */
.services {
  background: var(--creme);
  padding: 8rem 3rem;
}

.services-header {
  max-width: 1300px;
  margin: 0 auto 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
}

.services-intro {
  font-size: 1.1rem;
  color: var(--encre-doux);
  line-height: 1.7;
  max-width: 480px;
}

.services-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--blanc-casse);
  padding: 3rem 2.5rem;
  border-radius: 4px;
  position: relative;
  transition: all 0.5s ease;
  border: 1px solid transparent;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--rose-poudre), var(--terracotta));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--rose-clair) 0%, var(--blanc-casse) 50%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--terracotta);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
  display: block;
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--encre);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.service-name em {
  font-style: italic;
  color: var(--terracotta);
}

.service-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--encre-doux);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.service-description {
  color: var(--encre-doux);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(184, 149, 106, 0.2);
}

.service-meta-clean {
  border: none;
  padding: 0;
}

.service-duration {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--encre-doux);
}

.service-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--terracotta);
  font-weight: 400;
}

/* Mini soins */
.mini-services {
  margin: 4rem auto 0;
  max-width: 1300px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(184, 149, 106, 0.15);
}

.mini-service {
  padding: 2rem;
  background: rgba(245, 224, 214, 0.3);
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
}

.mini-service:hover {
  background: rgba(245, 224, 214, 0.6);
  transform: translateY(-3px);
}

.mini-service h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--encre);
  margin-bottom: 0.5rem;
}

.mini-service p {
  font-size: 0.85rem;
  color: var(--encre-doux);
  margin-bottom: 1rem;
}

.mini-service-price {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--terracotta);
  font-size: 1.1rem;
}

/* ========== OFFRES SPÉCIALES ========== */
.special-offers {
  padding: 8rem 3rem;
  background: linear-gradient(180deg, var(--creme) 0%, var(--rose-clair) 100%);
}

.offers-header {
  max-width: 1300px;
  margin: 0 auto 5rem;
  text-align: center;
}

.offers-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.offer-card {
  padding: 3rem 2.5rem;
  background: var(--blanc-casse);
  border-radius: 4px;
  position: relative;
  transition: all 0.4s ease;
}

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

.offer-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  color: var(--terracotta);
}

.offer-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1;
  fill: none;
  stroke-linecap: round;
}

.offer-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--encre);
  margin-bottom: 1rem;
}

.offer-card p {
  color: var(--encre-doux);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.offer-pricing {
  padding-top: 1rem;
  border-top: 1px solid rgba(184, 149, 106, 0.2);
}

.offer-pricing-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--encre-doux);
}

.offer-pricing-line strong {
  color: var(--terracotta);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
}

/* ========== VISION / FUTUR ========== */
.vision {
  padding: 10rem 3rem;
  background: var(--creme);
  position: relative;
}

.vision-grid {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.vision-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.5;
  color: var(--encre-doux);
  margin: 3rem auto;
  max-width: 800px;
  font-weight: 300;
}

.vision-quotes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 5rem;
}

.vision-quote {
  padding: 3rem 2rem;
  background: var(--blanc-casse);
  border-radius: 4px;
  position: relative;
  transition: transform 0.4s ease;
}

.vision-quote:hover { transform: translateY(-4px); }

.vision-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 0.5;
  color: var(--terracotta);
  margin-bottom: 1rem;
  display: block;
}

.vision-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--encre);
}

/* ========== CONTACT / RÉSERVATION ========== */
.contact {
  background: var(--encre);
  color: var(--creme);
  padding: 8rem 3rem;
  position: relative;
  overflow: hidden;
}

.contact-decoration {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 196, 184, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.contact .section-title { color: var(--creme); }
.contact .section-eyebrow { color: var(--rose-poudre); }

.contact-intro {
  color: var(--rose-poudre);
  margin-top: 1.5rem;
  line-height: 1.7;
  max-width: 420px;
}

.contact-info {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

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

.contact-item-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--rose-poudre);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-poudre);
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.contact-item-content small {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-poudre);
  margin-bottom: 0.25rem;
}

.contact-item-content a, .contact-item-content span {
  color: var(--creme);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item-content a:hover { color: var(--rose-poudre); }

/* Carte de réservation */
.reservation-card {
  background: linear-gradient(135deg, rgba(232, 196, 184, 0.15) 0%, rgba(200, 133, 107, 0.1) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(232, 196, 184, 0.2);
  padding: 3.5rem;
  border-radius: 4px;
  text-align: center;
}

.reservation-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--creme);
}

.reservation-card h3 em {
  font-style: italic;
  color: var(--rose-poudre);
}

.reservation-card p {
  color: var(--rose-poudre);
  margin-bottom: 2rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

.reservation-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-light {
  padding: 1.1rem 2rem;
  background: var(--creme);
  color: var(--encre);
  border: none;
  border-radius: 100px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-light:hover {
  background: var(--rose-poudre);
  transform: translateY(-2px);
}

.btn-light-outline {
  padding: 1.1rem 2rem;
  background: transparent;
  color: var(--creme);
  border: 1px solid var(--rose-poudre);
  border-radius: 100px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-light-outline:hover {
  background: var(--rose-poudre);
  color: var(--encre);
  border-color: var(--rose-poudre);
}

.free-call {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(232, 196, 184, 0.2);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--rose-poudre);
}

/* ========== FOOTER ========== */
footer {
  background: var(--encre);
  color: var(--rose-poudre);
  padding: 3rem;
  text-align: center;
  border-top: 1px solid rgba(232, 196, 184, 0.1);
  position: relative;
  z-index: 1;
}

.footer-content {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  text-align: left;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  color: var(--creme);
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--rose-poudre);
  text-align: center;
  font-size: 1rem;
}

.footer-credits {
  text-align: right;
  font-size: 0.8rem;
  color: var(--encre-doux);
  letter-spacing: 0.05em;
}

/* ========== WHATSAPP FLOTTANT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
  z-index: 99;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* ========== ANIMATIONS AU SCROLL ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===================================================
   RESPONSIVE — Tous appareils
   ===================================================
   Breakpoints :
   - 1400px+ : grands écrans / 4K
   - 1200px  : laptop standard
   - 1024px  : iPad paysage
   - 768px   : iPad portrait / tablette
   - 600px   : grand smartphone
   - 480px   : smartphone standard (iPhone)
   - 360px   : petit smartphone (iPhone SE)
   =================================================== */

/* ===== Très grands écrans (iMac, 4K) ===== */
@media (min-width: 1600px) {
  .about-grid,
  .services-grid,
  .services-header,
  .offers-grid,
  .contact-grid,
  .footer-content,
  .mini-services {
    max-width: 1400px;
  }

  .hero { padding: 10rem 6rem 6rem; }
  section { padding: 10rem 6rem; }
}

/* ===== Laptop / écran standard ===== */
@media (max-width: 1200px) {
  nav { padding: 1.25rem 2rem; }
  .hero { padding: 8rem 2rem 4rem; gap: 3rem; }
  section { padding: 6rem 2rem; }
  .about-grid { gap: 4rem; }
  .contact-grid { gap: 4rem; }
}

/* ===== iPad paysage ===== */
@media (max-width: 1024px) {
  .hero h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
  .hero-visual { height: 60vh; min-height: 450px; }

  .about-grid { gap: 3rem; }
  .services-header { gap: 3rem; }

  .pull-quote { font-size: 1.5rem; padding-left: 1.5rem; }
}

/* ===== iPad portrait / tablette ===== */
@media (max-width: 968px) {
  /* Navigation mobile */
  nav { padding: 1rem 1.5rem; }
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--creme);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-150%);
    transition: transform 0.4s ease;
    box-shadow: var(--shadow-soft);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
  .nav-links.active { transform: translateY(0); }
  .nav-cta { display: none; }
  .menu-toggle { display: block; }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    padding: 6rem 1.5rem 4rem;
    gap: 3rem;
    min-height: auto;
  }
  .hero-visual { height: 45vh; min-height: 320px; max-height: 450px; }
  .hero-quote {
    left: 5%;
    right: 5%;
    max-width: none;
    bottom: 5%;
  }

  section { padding: 5rem 1.5rem; }

  /* À propos */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-portrait {
    position: static;
    max-width: 320px;
    margin: 0 auto;
  }

  /* Services */
  .services-header { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card.featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .mini-services { grid-template-columns: 1fr; gap: 1rem; }

  /* Offres */
  .offers-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  /* Vision */
  .vision-quotes { grid-template-columns: 1fr; gap: 2rem; }
  .vision { padding: 6rem 1.5rem; }
  .dedicated { padding: 7rem 1.5rem; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .reservation-card { padding: 2.5rem 2rem; }

  /* Footer */
  .footer-content { grid-template-columns: 1fr; text-align: center; gap: 1rem; }
  .footer-credits { text-align: center; }

  /* Citations */
  .pull-quote { font-size: 1.4rem; padding: 1.5rem 0 1.5rem 1.5rem; }
  .pull-quote-secondary { font-size: 1.2rem; }

  /* WhatsApp */
  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    width: 52px;
    height: 52px;
  }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

/* ===== Grand smartphone ===== */
@media (max-width: 600px) {
  nav { padding: 0.875rem 1.25rem; }
  .logo { font-size: 1.5rem; }

  .hero { padding: 5.5rem 1.25rem 3rem; }
  .hero-eyebrow { font-size: 0.7rem; letter-spacing: 0.25em; }
  .hero h1 { font-size: clamp(2.5rem, 11vw, 3.5rem); margin-bottom: 1.5rem; }
  .hero-tagline { font-size: 1rem; margin-bottom: 2rem; }

  .hero-cta-group { flex-direction: column; gap: 0.875rem; width: 100%; }
  .btn-primary, .btn-ghost { text-align: center; padding: 1rem 1.5rem; }

  .hero-visual { height: 40vh; min-height: 280px; }
  .hero-quote {
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
    max-width: 80%;
  }

  section { padding: 4rem 1.25rem; }

  .section-title { font-size: clamp(2rem, 8vw, 3rem); }

  /* Services */
  .service-card { padding: 2rem 1.5rem; }
  .service-card.featured { padding: 2rem 1.5rem; }
  .service-name { font-size: 1.7rem; }
  .service-tagline { font-size: 1rem; }
  .service-description { font-size: 0.9rem; }
  .service-price { font-size: 1.7rem; }
  .service-meta { flex-direction: column; align-items: flex-start; gap: 0.5rem; }

  /* Offres */
  .offer-card { padding: 2rem 1.5rem; }
  .offer-card h3 { font-size: 1.5rem; }

  /* Mini soins */
  .mini-service { padding: 1.5rem; }

  /* Dédié / philosophie */
  .dedicated { padding: 5rem 1.25rem; }
  .dedicated-text { font-size: 1.6rem; }
  .dedicated-subtitle { font-size: 1.1rem; }

  /* Vision */
  .vision { padding: 5rem 1.25rem; }
  .vision-text { font-size: 1.2rem; margin: 2rem auto; }
  .vision-quote { padding: 2rem 1.5rem; }
  .vision-quote-text { font-size: 1.15rem; }

  /* Contact */
  .contact { padding: 5rem 1.25rem; }
  .reservation-card { padding: 2rem 1.5rem; }
  .reservation-card h3 { font-size: 1.8rem; }
  .contact-item-content a, .contact-item-content span { font-size: 1.1rem; }

  /* Boutons */
  .btn-light, .btn-light-outline {
    padding: 1rem 1.5rem;
    font-size: 0.8rem;
  }

  /* Citations */
  .pull-quote { font-size: 1.25rem; margin: 2rem 0; }
  .pull-quote-secondary { font-size: 1.05rem; }
}

/* ===== Smartphone iPhone standard ===== */
@media (max-width: 480px) {
  .hero h1 { line-height: 1; }
  .hero-quote {
    font-size: 0.95rem;
    padding: 1rem 1.25rem;
    bottom: 3%;
  }

  .section-title { font-size: clamp(1.8rem, 9vw, 2.5rem); }

  .service-card { padding: 1.75rem 1.25rem; }
  .service-name { font-size: 1.5rem; }

  .offer-card { padding: 1.75rem 1.25rem; }

  /* Email peut être long, on permet le wrap */
  .contact-item-content a {
    word-break: break-word;
    font-size: 1rem;
  }

  .reservation-buttons { gap: 0.75rem; }
  .btn-light, .btn-light-outline {
    padding: 0.95rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }

  .free-call { font-size: 1rem; }

  .footer-brand { font-size: 1.3rem; }
  .footer-tagline { font-size: 0.9rem; }
  .footer-credits { font-size: 0.75rem; }
}

/* ===== Très petit smartphone (iPhone SE 1ère gen, etc.) ===== */
@media (max-width: 360px) {
  nav { padding: 0.75rem 1rem; }
  .logo { font-size: 1.35rem; }

  .hero { padding: 5rem 1rem 2.5rem; }
  .hero h1 { font-size: 2.25rem; }
  .hero-tagline { font-size: 0.95rem; }

  section { padding: 3.5rem 1rem; }

  .service-card, .offer-card, .reservation-card {
    padding: 1.5rem 1rem;
  }

  .pull-quote { font-size: 1.1rem; padding-left: 1rem; }
  .vision-text { font-size: 1.1rem; }
  .dedicated-text { font-size: 1.4rem; }
}

/* ===== Mode paysage sur petits écrans (smartphone tourné) ===== */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 5rem 2rem 2rem;
    grid-template-columns: 1fr 1fr;
  }
  .hero-visual { height: 60vh; min-height: 250px; }
  .nav-links { max-height: calc(100vh - 60px); }
}

/* ===== Préférence : mouvement réduit (accessibilité) ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-shape { animation: none; }
  .dedicated::before { animation: none; }
  .reveal { opacity: 1; transform: none; }
}

/* ===== Écrans haute densité (Retina, etc.) ===== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* Affinage des bordures sur écrans Retina */
  .nav-links a::after,
  .pull-quote {
    border-width: 0.5px;
  }
}

/* ===== Impression ===== */
@media print {
  nav, .whatsapp-float, .hero-shape, .contact-decoration { display: none; }
  body { background: white; color: black; }
  section { padding: 2rem; page-break-inside: avoid; }
  .reveal { opacity: 1; transform: none; }
}

/* ===================================================
   CORRECTIONS SPÉCIFIQUES iOS Safari
   =================================================== */

/* Empêche le zoom auto au focus des inputs sur iOS */
input, select, textarea, button {
  font-size: 16px;
}

/* Évite le décalage en mode safe-area (iPhone avec encoche) */
@supports (padding: max(0px)) {
  nav {
    padding-left: max(1.5rem, env(safe-area-inset-left));
    padding-right: max(1.5rem, env(safe-area-inset-right));
  }
  .whatsapp-float {
    bottom: max(2rem, env(safe-area-inset-bottom));
    right: max(2rem, env(safe-area-inset-right));
  }
  footer {
    padding-bottom: max(3rem, calc(3rem + env(safe-area-inset-bottom)));
  }
}

/* Empêche le tap highlight bleu sur iOS */
a, button {
  -webkit-tap-highlight-color: rgba(200, 133, 107, 0.2);
}

/* Améliore le rendu des fonts sur Mac/iOS */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Empêche le débordement horizontal sur tous les appareils */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Force le bon comportement de l'image dans les conteneurs */
img, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}
