/* ========================================
   drekatty.com — Style principal
   Spa esthétique doux · Lavande & Or
   ======================================== */

/* --- CSS Variables --- */
:root {
  --lavender:        #B8A9CC;
  --lavender-light:  #D6CCE0;
  --lavender-pale:   #EDE8F2;
  --lavender-bg:     #F3F0F7;
  --gold:            #B8975A;
  --gold-light:      #D4BC8A;
  --gold-dark:       #9A7D4A;
  --gold-glow:       rgba(184, 151, 90, 0.4);
  --cream:           #FAF6F0;
  --warm-white:      #FEFCF9;
  --text-dark:       #2D2235;
  --text-body:       #4A4155;
  --text-muted:      #8A7E94;
  --dark-bg:         #2D2235;
  --glass-bg:        rgba(255, 255, 255, 0.65);
  --glass-border:    rgba(184, 151, 90, 0.3);
  --glass-blur:      blur(20px);

  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Raleway', 'Segoe UI', sans-serif;
  --radius:       10px;
  --radius-lg:    16px;
  --shadow-soft:  0 4px 24px rgba(45, 34, 53, 0.08);
  --shadow-card:  0 8px 32px rgba(45, 34, 53, 0.10);
  --transition:   0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-dark);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.25;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); margin-bottom: 0.75rem; }

p + p { margin-top: 1rem; }

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* --- Construction Banner (retirer au lancement) --- */
.construction-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-align: center;
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-family: var(--font-sans);
}

/* Push nav below fixed banner */
.construction-banner ~ .nav {
  top: 30px;
}

/* --- Utility --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.phone-nowrap { white-space: nowrap; display: inline-block; }

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   NAV STICKY — 100% transparent, glass on scroll
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease, transform 0.3s ease;
  padding: 0 1rem;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
}

/* Nav text colors: white on hero, dark on scrolled */
.nav .nav__brand {
  color: rgba(255, 255, 255, 0.95);
  transition: color var(--transition);
}

.nav.scrolled .nav__brand {
  color: var(--text-dark);
}

.nav .nav__links a {
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--transition);
}

.nav.scrolled .nav__links a {
  color: var(--text-body);
}

.nav.scrolled .nav__links a:hover {
  color: var(--gold);
}

.nav .nav__hamburger span {
  background: rgba(255, 255, 255, 0.9);
  transition: background var(--transition);
}

.nav.scrolled .nav__hamburger span {
  background: var(--text-dark);
}

.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
}

.nav__brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Active nav link */
.nav__links a.nav__active {
  color: var(--gold) !important;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}

.nav__cta {
  display: inline-block;
  padding: 0.45rem 1.1rem;
  background: transparent;
  color: var(--gold) !important;
  border: 1px solid var(--gold-light);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.nav__cta:hover {
  background: var(--gold);
  color: #fff !important;
  border-color: var(--gold);
}

/* RDV Dropdown */
.nav__rdv-wrapper {
  position: relative;
}

.nav__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 300px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  z-index: 1001;
}

.nav__dropdown.open {
  display: block;
}

.nav__dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  color: var(--text-body) !important;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  border-bottom: 1px solid rgba(184, 169, 204, 0.12);
}

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

.nav__dropdown-item:hover {
  background: var(--lavender-pale);
  color: var(--gold) !important;
}

.nav__dropdown-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
}

/* Mobile nav — no burger, tabs + RDV visible */
@media (max-width: 768px) {
  .nav__brand-full { display: none; }
  .nav__brand-short { display: inline; }
  .nav__brand { font-size: 0.95rem; }
  .nav__brand img { width: 40px; height: 40px; }

  /* Hide burger and desktop nav links on mobile */
  .nav__hamburger { display: none !important; }
  .nav__links { display: none !important; }

  .nav__rdv-wrapper { display: none !important; }

  /* Show page tabs directly */
  .nav__tabs {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    margin-left: auto;
  }

  .nav__tabs a {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-body);
    text-decoration: none;
    padding: 4px 0;
    white-space: nowrap;
    transition: color 0.2s ease;
  }

  .nav__tabs a.nav__active {
    color: var(--gold) !important;
    border-bottom: 2px solid var(--gold);
  }

  .nav.scrolled .nav__tabs a {
    color: var(--text-body);
  }

  .nav .nav__tabs a {
    color: rgba(255, 255, 255, 0.9);
  }

  /* Hide RDV button in nav on mobile — sticky button handles it */
  .nav__rdv-mini {
    display: none !important;
  }

  .nav__rdv-wrapper {
    display: none !important;
  }

  /* Shorter hero on mobile */
  .page-hero {
    padding: 5rem 1.25rem 2.5rem;
    min-height: auto;
  }

  /* Phone numbers never break */
  .phone-nowrap {
    white-space: nowrap;
    display: inline-block;
  }
}

/* Hide mobile tabs on desktop */
@media (min-width: 769px) {
  .nav__tabs { display: none; }
  .nav__brand-short { display: none; }
  .nav__brand-full { display: inline; }
  .nav__links { display: flex !important; }
  .nav__rdv-wrapper { display: list-item !important; list-style: none; }
  .nav__hamburger { display: none; }
}

/* ========================================
   PILLS / CHIPS NAVIGATION (pages intérieures)
   ======================================== */
.pills-bar {
  position: sticky;
  top: 60px;
  z-index: 900;
  background: rgba(250, 246, 240, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184, 169, 204, 0.15);
  padding: 10px 1rem;
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.pills-bar::-webkit-scrollbar {
  display: none;
}

/* Account for construction banner pushing nav down */
.construction-banner ~ .nav ~ .pills-bar,
.construction-banner ~ * .pills-bar {
  top: 90px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border: 1px solid var(--gold-light);
  border-radius: 20px;
  background: transparent;
  color: var(--text-body);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  min-height: 44px;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.pill:hover {
  background: var(--lavender-pale);
  border-color: var(--gold);
  color: var(--gold-dark);
}

.pill.pill--active {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

/* Scroll padding so anchors don't hide behind sticky elements */
html {
  scroll-padding-top: 120px;
}

@media (max-width: 768px) {
  .pills-bar {
    justify-content: flex-start;
    padding: 8px 0.75rem;
  }

  .pill {
    font-size: 0.75rem;
    padding: 5px 14px;
  }
}

/* ========================================
   HERO SECTION — logo + name float on photo
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url('../images/hero-katty.jpg');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(140, 120, 170, 0.55) 0%,
    rgba(160, 140, 190, 0.35) 30%,
    rgba(184, 169, 204, 0.25) 50%,
    rgba(250, 246, 240, 0.15) 75%,
    rgba(250, 246, 240, 0.4) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.25rem;
  max-width: 700px;
}

/* Logo on hero */
.hero__logo {
  width: 160px;
  height: 160px;
  margin: 0 auto 0.5rem;
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.15));
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.hero__brand-name {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 15px rgba(45, 34, 53, 0.2);
  margin-bottom: 0.25rem;
}

.hero__brand-tagline {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  text-shadow: 0 1px 8px rgba(45, 34, 53, 0.15);
  margin-bottom: 1.5rem;
}

/* Decorative dots */
.hero__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hero__dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  opacity: 0.7;
}

.hero__slogan {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero__slogan-line1 {
  display: block;
  color: #fff;
  text-shadow: 0 2px 20px rgba(45, 34, 53, 0.2);
}

.hero__slogan-line2 {
  display: block;
  color: var(--gold-light);
  font-style: italic;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45), 0 0 30px rgba(0, 0, 0, 0.2);
}

.hero__subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  text-shadow: 0 1px 10px rgba(45, 34, 53, 0.15);
  max-width: 520px;
  margin: 0 auto;
}

/* ========================================
   WAVE SEPARATOR (silk/satin transition)
   ======================================== */
.wave-separator {
  display: none;
}

/* ========================================
   SERVICE CARDS (small, discreet glassmorphism)
   ======================================== */
.services {
  position: relative;
  padding: 1.5rem 1.25rem 2.5rem;
  margin-top: -80px;
  overflow: visible;
  background: transparent !important;
  z-index: 10;
}

/* Satin/silk background shape — removed for clean transparent look */
.services__silk {
  display: none;
}

.services__grid {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: flex-start;
}

.service-card {
  background: rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(184, 151, 90, 0.15);
  border-radius: 12px;
  padding: 1.5rem 1.25rem 1.25rem;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: none;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    backdrop-filter var(--transition);
  cursor: pointer;
  width: 210px;
  max-width: 210px;
  flex-shrink: 0;
}

.service-card:hover {
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transform: scale(1.03);
  box-shadow: 0 0 30px var(--gold-glow), 0 8px 32px rgba(45, 34, 53, 0.12);
  border-color: rgba(184, 151, 90, 0.5);
}

.service-card__icon {
  width: 88px;
  height: 88px;
  margin-bottom: 0.5rem;
  flex-shrink: 0;
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin: 0 0 0.15rem 0;
}

.service-card__subtitle {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.03em;
  line-height: 1;
  margin: 0;
}

/* Icon tints removed — PNGs have their own colors */

/* No .service-card__text — cards are minimal, no description */

/* ========================================
   CTA BUTTON
   ======================================== */
.btn-gold {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
}

.btn-gold:hover {
  background: var(--gold-dark);
  box-shadow: 0 0 30px var(--gold-glow);
  transform: translateY(-2px);
  color: #fff;
}

.btn-gold:active {
  transform: translateY(0);
}

.btn-gold--outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-gold--outline:hover {
  background: var(--gold);
  color: #fff;
}

.btn-gold--large {
  padding: 1rem 3rem;
  font-size: 1.05rem;
}

/* ========================================
   TRUST BAND
   ======================================== */
.trust-band {
  background: var(--lavender-pale);
  text-align: center;
  padding: 1.75rem 1.25rem;
}

.trust-band__text {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.trust-band__separator {
  display: inline-block;
  margin: 0 0.6rem;
  color: var(--lavender);
}

/* Minimal trust line */
.trust-line {
  text-align: center;
  padding: 1.5rem 1.25rem;
  background: transparent;
}

.trust-line p {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--dark-bg);
  color: var(--lavender-light);
  padding: 3rem 1.25rem 2rem;
  text-align: center;
}

.footer a {
  color: var(--gold-light);
  transition: color var(--transition);
}

.footer a:hover {
  color: var(--gold);
}

.footer__brand {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.footer__title {
  font-size: 0.8rem;
  color: var(--lavender);
  margin-bottom: 1rem;
}

.footer__address,
.footer__contact {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--lavender-light);
}

.footer__contact {
  margin-top: 0.5rem;
}

.footer__social {
  margin: 1.25rem 0;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
}

.footer__social svg {
  width: 20px;
  height: 20px;
  fill: var(--gold-light);
  transition: fill var(--transition);
}

.footer__social a:hover svg {
  fill: var(--gold);
}

.footer__legal {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(184, 169, 204, 0.2);
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer__legal a {
  color: var(--lavender-light);
}

/* ========================================
   PAGE HERO (for service pages — with Katty photo)
   ======================================== */
.page-hero {
  position: relative;
  background-image: url('../images/hero-katty.jpg');
  background-size: cover;
  background-position: center top;
  padding: 8rem 1.25rem 4rem;
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(140, 120, 170, 0.65) 0%,
    rgba(160, 140, 190, 0.5) 40%,
    rgba(184, 169, 204, 0.4) 70%,
    rgba(250, 246, 240, 0.5) 100%
  );
  z-index: 0;
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: #fff;
  text-shadow: 0 2px 15px rgba(45, 34, 53, 0.2);
  margin-bottom: 0.5rem;
}

.page-hero__sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  font-weight: 400;
  text-shadow: 0 1px 8px rgba(45, 34, 53, 0.15);
}

/* ========================================
   CONTENT SECTIONS
   ======================================== */
.section {
  padding: 4rem 1.25rem;
}

.section--cream {
  background: var(--cream);
}

.section--white {
  background: var(--warm-white);
}

.section--lavender {
  background: var(--lavender-pale);
}

.section__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section__header h2 {
  color: var(--text-dark);
}

.section__header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0.5rem auto 0;
}

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

@media (max-width: 768px) {
  .columns-3 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.column-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.column-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--gold);
}

.column-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.column-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 2rem auto 0;
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.process-step {
  text-align: center;
  padding: 1.5rem;
}

.process-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Content block */
.content-block {
  max-width: 750px;
  margin: 0 auto;
}

.content-block h2 {
  margin-bottom: 1.25rem;
}

.content-block p {
  margin-bottom: 1rem;
}

.content-block ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.content-block ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.content-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
}

/* ========================================
   URGENCE BANNER
   ======================================== */
.urgence-banner {
  background: linear-gradient(135deg, var(--lavender-pale) 0%, var(--cream) 100%);
  border: 2px solid var(--lavender);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  max-width: 700px;
  margin: 2rem auto;
}

.urgence-banner h2 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.urgence-banner p {
  margin-bottom: 1.5rem;
  color: var(--text-body);
}

.urgence-banner .btn-gold {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}

/* ========================================
   BIO SECTION
   ======================================== */
.bio {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .bio {
    flex-direction: column;
    text-align: center;
  }
}

.bio__photo {
  width: 200px;
  height: 260px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-card);
  flex-shrink: 0;
  background: var(--lavender-pale);
}

.bio__text h3 {
  margin-bottom: 0.75rem;
}

.bio__badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .bio__badges { justify-content: center; }
}

.bio__badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: var(--lavender-pale);
  color: var(--text-muted);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ========================================
   FAQ ACCORDION
   ======================================== */
.faq {
  max-width: 700px;
  margin: 0 auto;
}

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

.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--transition);
}

.faq__question:hover {
  color: var(--gold);
}

.faq__question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq__item.open .faq__question::after {
  content: '\2212';
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq__item.open .faq__answer {
  max-height: 500px;
  padding-bottom: 1.25rem;
}

.faq__answer p {
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ========================================
   DISCLAIMER
   ======================================== */
.disclaimer {
  text-align: center;
  padding: 2rem 1.25rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
  font-style: italic;
}

/* ========================================
   FORMS
   ======================================== */
.form-section {
  padding: 4rem 1.25rem;
  background: var(--cream);
}

.form-section__header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-section__header h2 {
  margin-bottom: 0.5rem;
}

.form-section__header p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Confidentiality intro text (esthetique form) */
.form-section__confidential {
  max-width: 560px;
  margin: 0 auto 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--lavender-pale);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold-light);
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.65;
}

.form {
  max-width: 560px;
  margin: 0 auto;
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-card);
  position: relative;
}

.form__group {
  margin-bottom: 1.25rem;
}

.form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.form__label .form__optional {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--lavender-light);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

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

.form__select {
  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='%238A7E94' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form__checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 1.25rem 0;
}

.form__checkbox {
  margin-top: 0.2rem;
  accent-color: var(--gold);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.form__checkbox-label {
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.5;
}

.form__notice {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 0.75rem;
}

.form__submit {
  width: 100%;
  margin-top: 1.5rem;
}

/* Honeypot */
.form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* Form success */
.form__success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form__success.show {
  display: block;
}

.form__success h3 {
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* ========================================
   PRIVACY PAGE
   ======================================== */
.privacy-page {
  padding: 6rem 1.25rem 4rem;
  max-width: 750px;
  margin: 0 auto;
}

.privacy-page h1 {
  margin-bottom: 2rem;
  text-align: center;
}

.privacy-page h2 {
  font-size: 1.3rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.privacy-page p {
  margin-bottom: 1rem;
}

.privacy-page ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.privacy-page ul li {
  margin-bottom: 0.4rem;
}

/* ========================================
   STICKY RDV BUTTON (mobile)
   ======================================== */
.sticky-rdv {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 999;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Sticky always visible on mobile */

.sticky-rdv__btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px var(--gold-glow);
  transition: background var(--transition), transform var(--transition);
}

.sticky-rdv__btn:hover {
  background: var(--gold-dark);
  transform: scale(1.08);
}

.sticky-rdv__btn svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.sticky-rdv__menu {
  display: none;
  position: absolute;
  bottom: 60px;
  right: 0;
  min-width: 260px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.sticky-rdv__menu.open {
  display: block;
}

.sticky-rdv__menu a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  color: var(--text-body);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 169, 204, 0.12);
  transition: background 0.2s ease;
}

.sticky-rdv__menu a:last-child {
  border-bottom: none;
}

.sticky-rdv__menu a:hover {
  background: var(--lavender-pale);
  color: var(--gold);
}

.sticky-rdv__menu svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sticky-rdv { display: flex; }

/* ========================================
   REDUCED MOTION
   ======================================== */
@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 {
    background-attachment: scroll;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }

  .service-card:hover {
    transform: none;
  }
}

/* ========================================
   PRINT
   ======================================== */
@media print {
  .nav, .sticky-phone, .hero__overlay, .wave-separator { display: none; }
  body { color: #000; background: #fff; }
}