*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:          #FAF4EE;
  --cream-dark:     #F1E6D8;
  --stone:          #DCCEC0;
  --stone-dark:     #BAA494;
  --text-primary:   #2C2018;
  --text-secondary: #685040;
  --text-muted:     #967860;
  --accent:         #A05A3C;
  --accent-light:   #C8886A;
  --white:          #FAF0E6;
  --border:         rgba(44, 32, 24, 0.13);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--cream);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(237, 233, 226, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-logo span { color: var(--accent); }
.nav-logo-name { white-space: nowrap; }
.nav-logo-sub {
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
}
.nav-links { display: flex; gap: 1.5rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a.nav-link-reserve { color: var(--accent); }
.nav-links a.nav-link-reserve:hover { color: var(--accent-light); }
.nav-topbar-cta { display: none; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 4rem 6rem 6rem;
  max-width: 660px;
  margin-left: auto;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--accent); }
.hero-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 420px;
}
.hero-actions { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2.2rem;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(139,115,85,0.25);
}
.btn-primary:hover {
  background: #7A6348;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(139,115,85,0.35);
}
.btn-primary svg { width: 15px; height: 15px; flex-shrink: 0; }
.btn-link {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}
.btn-link:hover { color: var(--text-primary); }
.btn-link::after { content: '→'; font-size: 0.9rem; }
.cta-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-top: 1rem;
}
.cta-badge::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #7cb87c;
  flex-shrink: 0;
}
.cta-badge a { color: var(--accent-light); text-decoration: none; }
.cta-badge a:hover { text-decoration: underline; }
.cta-free-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.9rem;
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--accent);
  background: rgba(160, 90, 60, 0.08);
  border: 1px solid rgba(160, 90, 60, 0.25);
  border-radius: 3px;
}
.hero-image { position: relative; overflow: hidden; background: var(--cream-dark); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139,115,85,0.08) 0%, transparent 60%);
}
.hero-badge {
  position: absolute;
  bottom: 3rem;
  left: -1.5rem;
  background: var(--white);
  padding: 1.2rem 1.6rem;
  border-left: 3px solid var(--accent);
  box-shadow: 0 8px 32px rgba(42,37,34,0.08);
}
.hero-badge-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.hero-badge-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
}
.hero-trust { display: none; }

/* ─── STATS STRIP (desktop: hidden) ─── */
.stats-strip { display: none; }

/* ─── SECTION COMMONS ─── */
section { padding: 6rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-header { margin-bottom: 4rem; }
.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--text-primary);
}
.section-title em { font-style: italic; color: var(--accent); }

/* ─── ABOUT ─── */
.about { background: var(--white); }
.about-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3.5rem;
  box-shadow: 0 2px 24px rgba(42, 37, 34, 0.05);
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-image-wrap { position: relative; display: flex; justify-content: center; align-items: center; }
.about-image { width: 75%; aspect-ratio: 3/4; object-fit: cover; display: block; background: var(--cream-dark); }
.about-image-deco {
  position: absolute;
  top: -1.5rem; left: -1.5rem;
  width: 60%; height: 60%;
  border: 1px solid var(--stone);
  z-index: -1;
  pointer-events: none;
}
.about-text p { font-size: 1rem; color: var(--text-secondary); line-height: 1.85; margin-bottom: 1.4rem; }

/* ─── ABOUT READ MORE ─── */
.about-text-more {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}
.about-text-more.open { max-height: 400px; opacity: 1; }
.about-read-more {
  display: none;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.1rem;
  background: rgba(139, 115, 85, 0.08);
  border: 1px solid rgba(139, 115, 85, 0.25);
  border-radius: 100px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  transition: background 0.2s, border-color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.about-read-more:hover,
.about-read-more:active { background: rgba(139, 115, 85, 0.15); border-color: rgba(139, 115, 85, 0.4); }
.about-read-more svg { width: 15px; height: 15px; transition: transform 0.3s; flex-shrink: 0; }
.about-read-more[aria-expanded="true"] svg { transform: rotate(180deg); }
.about-read-more-label { font-size: 0; }
.about-read-more[aria-expanded="true"]  .about-read-more-label::before { content: 'Voir moins'; font-size: 0.78rem; }
.about-read-more[aria-expanded="false"] .about-read-more-label::before { content: 'Voir plus';  font-size: 0.78rem; }

/* ─── CREDENTIALS ─── */
.about-credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.cred-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.2rem 2rem;
  border-left: 1px solid var(--border);
  border-radius: 3px;
  transition: background 0.2s;
  cursor: default;
}
.cred-item:first-child { border-left: none; padding-left: 1.2rem; }
.cred-item:hover { background: rgba(139, 115, 85, 0.03); }
.cred-year { font-size: 0.7rem; color: var(--accent); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 400; margin-bottom: 0.15rem; }
.cred-text { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.5; }
.cred-text strong { display: block; font-weight: 500; color: var(--text-primary); font-size: 0.92rem; margin-bottom: 0.2rem; }

/* ─── APPROACH ─── */
.approach { background: var(--white); }
.approach-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 6rem; align-items: start; }
.approach-sticky { position: sticky; top: 6rem; }
.approach-desc { font-size: 1rem; color: var(--text-secondary); line-height: 1.85; margin-top: 1.5rem; }
.approach-items { display: flex; flex-direction: column; gap: 0; }
.approach-item {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1.5rem;
  align-items: start;
}
.approach-item:last-child { border-bottom: 1px solid var(--border); }
.approach-num { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--stone-dark); font-weight: 300; line-height: 1; padding-top: 0.15rem; }
.approach-item-header { display: flex; }
.approach-chevron { display: none; }
.approach-item-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; color: var(--text-primary); margin-bottom: 0.5rem; }
.approach-item-text { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.75; }

/* ─── SEXOLOGIE ─── */
.sexologie { background: var(--cream-dark); }
.sexo-intro { font-size: 1rem; color: var(--text-secondary); line-height: 1.85; max-width: 620px; margin-bottom: 2.5rem; }
.sexo-block { border-top: 1px solid var(--border); }
.sexo-block:last-child { border-bottom: 1px solid var(--border); }
.sexo-block-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.8rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}
.sexo-block-heading { display: flex; flex-direction: column; gap: 0.5rem; }
.sexo-block-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
}
.sexo-block-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.2;
}
.sexo-chevron { width: 22px; height: 22px; flex-shrink: 0; color: var(--accent); transition: transform 0.3s; }
.sexo-block.open .sexo-chevron { transform: rotate(180deg); }
.sexo-block-body { display: none; padding: 0 0 2.2rem; max-width: 780px; }
.sexo-block.open .sexo-block-body { display: block; }
.sexo-text p { font-size: 1rem; color: var(--text-secondary); line-height: 1.85; margin-bottom: 1.3rem; }
.sexo-text p:last-child { margin-bottom: 0; }
.sexo-lead { color: var(--text-primary); }
.sexo-principles { margin-top: 1.5rem; }
.sexo-principle {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1.25rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
.sexo-principle:last-child { padding-bottom: 0; }
.sexo-num { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--stone-dark); font-weight: 300; line-height: 1; padding-top: 0.15rem; }
.sexo-principle-title { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 400; color: var(--text-primary); margin-bottom: 0.4rem; }
.sexo-principle-text { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.75; }

/* ─── POURQUOI CONSULTER ─── */
.pourquoi { background: var(--cream-dark); }
.pourquoi-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.pourquoi-intro { font-size: 1rem; color: var(--text-secondary); line-height: 1.85; margin-bottom: 2.5rem; }
.pourquoi-items { display: flex; flex-direction: column; gap: 0; }
.pourquoi-item { padding: 1.6rem 0; border-top: 1px solid var(--border); }
.pourquoi-item:last-child { border-bottom: 1px solid var(--border); }
.pourquoi-item-header { display: flex; }
.pourquoi-chevron { display: none; }
.pourquoi-item-title { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 400; color: var(--text-primary); margin-bottom: 0.5rem; }
.pourquoi-item-text { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.75; }
.pourquoi-quote-block { position: sticky; top: 6rem; display: flex; flex-direction: column; gap: 2rem; }
.quote-card {
  background: var(--white);
  padding: 2rem 2rem 2rem 2.4rem;
  border-left: 3px solid var(--accent);
  box-shadow: 0 4px 24px rgba(42,37,34,0.05);
}
.quote-card p { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; font-weight: 300; color: var(--text-primary); line-height: 1.7; }
.quote-card p::before { content: '\201C'; font-size: 2rem; color: var(--accent-light); line-height: 0; vertical-align: -0.4em; margin-right: 0.15em; }
.quote-cta-block { background: var(--white); padding: 2rem; border-radius: 2px; box-shadow: 0 4px 24px rgba(42,37,34,0.05); }
.quote-cta-text { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; font-family: 'Cormorant Garamond', serif; }
.quote-cta-text::before { content: '\201C'; font-size: 1.8rem; color: var(--accent-light); line-height: 0; vertical-align: -0.35em; margin-right: 0.1em; }

/* ─── TESTIMONIALS ─── */
.testimonials { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card { background: var(--cream-dark); padding: 2rem; border-radius: 2px; }
.testimonial-stars { display: none; }
.testimonial-quote { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-style: italic; font-weight: 300; color: var(--text-primary); line-height: 1.7; margin-bottom: 1.5rem; }
.testimonial-quote::before { content: '\201C'; font-size: 2rem; color: var(--accent-light); line-height: 0; vertical-align: -0.4em; margin-right: 0.15em; }
.testimonial-author { font-size: 0.8rem; letter-spacing: 0.06em; color: var(--text-muted); text-transform: uppercase; }
.scroll-hint { display: none; }

/* ─── INFOS PRATIQUES ─── */
.infos { background: var(--cream-dark); }
.infos-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.info-col { background: var(--cream); padding: 2rem 2.25rem; border-radius: 4px; box-shadow: 0 2px 24px rgba(42, 37, 34, 0.05); border-top: 2px solid rgba(160, 90, 60, 0.35); }
.info-col-eyebrow { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); font-weight: 400; margin-bottom: 1.6rem; }
.info-row { display: flex; flex-direction: column; gap: 0.2rem; padding: 0.9rem 0; border-top: 1px solid var(--border); }
.info-row:last-child { border-bottom: 1px solid var(--border); }
.info-row-label { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.04em; }
.info-row-value { font-size: 0.92rem; color: var(--text-primary); font-weight: 400; }
.info-tag { display: block; width: fit-content; font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.18rem 0.5rem; border-radius: 2px; margin-top: 0.35rem; font-weight: 400; line-height: 1.4; }
.info-tag--visio { background: rgba(139, 115, 85, 0.08); color: var(--accent); border: 1px solid rgba(139, 115, 85, 0.18); }
.info-tag--cabinet { background: rgba(42, 37, 34, 0.05); color: var(--text-secondary); border: 1px solid var(--border); }
.info-tag--offre { background: rgba(139, 115, 85, 0.12); color: var(--accent); border: 1px solid rgba(139, 115, 85, 0.25); white-space: normal; }
.info-col-trigger { display: none; }

/* ─── BOOKING BLOCK ─── */
.booking-block { background: var(--text-primary); color: var(--white); }
.booking-block-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: stretch; }
.booking-left { display: flex; flex-direction: column; padding: 2.4rem 0; }
.booking-left .section-eyebrow { color: var(--accent-light); }
.booking-left .section-title { color: var(--white); margin-bottom: 3rem; }
.booking-steps { display: flex; flex-direction: column; gap: 0; margin-bottom: 1rem; }
.bstep { display: grid; grid-template-columns: 2rem 1fr; gap: 1rem; align-items: start; padding: 1.2rem 0; border-top: 1px solid rgba(255,255,255,0.08); }
.bstep:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.bstep-num { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--accent-light); font-weight: 300; padding-top: 0.1rem; }
.bstep-title { font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.85); margin-bottom: 0.2rem; letter-spacing: 0.02em; }
.bstep-text { font-size: 0.83rem; color: rgba(255,255,255,0.45); line-height: 1.6; }
.booking-note { margin-top: 1rem; font-size: 0.73rem; color: rgba(255,255,255,0.3); letter-spacing: 0.04em; display: flex; align-items: center; gap: 0.5rem; }
.booking-note a { color: rgba(196,168,130,0.7); text-decoration: none; }
.booking-note a:hover { color: var(--accent-light); }
.contact-details { margin-top: auto; padding-top: 2.5rem; display: flex; flex-direction: column; gap: 0.6rem; }
.contact-detail { display: flex; align-items: center; gap: 0.8rem; font-size: 0.87rem; color: rgba(255,255,255,0.45); }
.contact-detail svg { width: 16px; height: 16px; opacity: 0.4; flex-shrink: 0; }

/* ─── CONTACT FORM ─── */
.contact-form-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 3px; padding: 2.4rem; }
.contact-form-tag { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-light); margin-bottom: 1.4rem; font-weight: 400; }
.contact-form-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 300; color: var(--white); margin-bottom: 1.8rem; line-height: 1.35; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); font-weight: 400; }
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.22); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: rgba(196,168,130,0.45); background: rgba(255,255,255,0.08); }
.custom-select-wrapper { position: relative; }
.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  user-select: none;
}
.custom-select-trigger:hover,
.custom-select-wrapper.open .custom-select-trigger { border-color: rgba(196,168,130,0.45); background: rgba(255,255,255,0.08); }
.custom-select-trigger svg { width: 12px; height: 8px; flex-shrink: 0; opacity: 0.35; transition: transform 0.2s; }
.custom-select-wrapper.open .custom-select-trigger svg { transform: rotate(180deg); }
.custom-select-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: #1e1b18;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  z-index: 50;
  overflow: hidden;
}
.custom-select-wrapper.open .custom-select-dropdown { display: block; }
.custom-select-option { padding: 0.75rem 1rem; font-size: 0.88rem; color: #ffffff; font-family: 'DM Sans', sans-serif; font-weight: 300; cursor: pointer; background: #1e1b18; }
.custom-select-option:hover { background: #ffffff !important; color: #2A2522 !important; }
.custom-select-option.selected { color: var(--accent-light); }
.custom-select-hidden { display: none; }
.form-group textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-feedback { display: none; padding: 0.8rem 1rem; border-radius: 2px; font-size: 0.82rem; margin-bottom: 0.75rem; text-align: center; line-height: 1.5; }
.form-feedback.success { background: rgba(124,184,124,0.12); border: 1px solid rgba(124,184,124,0.3); color: #7cb87c; }
.form-feedback.error { background: rgba(192,57,43,0.12); border: 1px solid rgba(192,57,43,0.35); color: #e07878; }
.btn-form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.95rem 1.5rem;
  margin-top: 0.5rem;
  background: var(--accent);
  border: none;
  border-radius: 2px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(139,115,85,0.25);
}
.btn-form-submit:hover:not(:disabled) { background: #7A6348; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(139,115,85,0.35); }
.btn-form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-form-submit svg { width: 15px; height: 15px; flex-shrink: 0; }
.form-legal { margin-top: 0.9rem; font-size: 0.65rem; color: rgba(255,255,255,0.2); letter-spacing: 0.04em; line-height: 1.5; text-align: center; }

/* ─── CONTACT POPUP CTA (desktop: hidden) ─── */
.contact-popup-cta { display: none; }
.contact-modal-overlay { display: none; }

/* ─── BOTTOM NAV (desktop: hidden) ─── */
.bottom-nav { display: none; }

/* ─── FOOTER ─── */
footer { background: var(--text-primary); border-top: 1px solid rgba(255,255,255,0.06); padding: 2rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: rgba(255,255,255,0.5); font-weight: 300; }
.footer-note { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-links { display: flex; gap: 1.5rem; list-style: none; }
.footer-links a { font-size: 0.78rem; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.6); }

/* ─── PAGES LÉGALES ─── */
.legal-page { background: var(--white); padding-top: 72px; min-height: 100vh; }
.legal-inner { max-width: 760px; margin: 0 auto; padding: 4rem 2rem 6rem; }
.legal-header { margin-bottom: 3rem; }
.legal-date { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.75rem; letter-spacing: 0.04em; }
.legal-card { padding: 3rem 3.5rem; }
.legal-section { padding: 2rem 0; border-top: 1px solid var(--border); }
.legal-section--last { border-bottom: 1px solid var(--border); }
.legal-section-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 400; color: var(--text-primary); margin-bottom: 1rem; }
.legal-section p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 0.9rem; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.5rem; }
.legal-section ul li { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.7; padding-left: 1rem; position: relative; }
.legal-section ul li::before { content: '—'; position: absolute; left: 0; color: var(--accent-light); }
.legal-section a { color: var(--accent); text-decoration: none; }
.legal-section a:hover { text-decoration: underline; }
.legal-placeholder { color: var(--accent); background: rgba(139,115,85,0.08); border: 1px dashed rgba(139,115,85,0.35); border-radius: 2px; padding: 0.1rem 0.5rem; font-size: 0.8rem; }
.legal-subsection-title { font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-top: 1.5rem; margin-bottom: 0.75rem; }
.legal-table-wrap,
.legal-cookie-table-wrap { overflow-x: auto; margin: 1rem 0; border-radius: 2px; border: 1px solid var(--border); }
.legal-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.legal-table thead { background: rgba(139,115,85,0.05); }
.legal-table th { padding: 0.75rem 1rem; text-align: left; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); border-bottom: 1px solid var(--border); white-space: nowrap; }
.legal-table td { padding: 0.75rem 1rem; color: var(--text-secondary); border-bottom: 1px solid var(--border); line-height: 1.5; vertical-align: top; }
.legal-table tr:last-child td { border-bottom: none; }
.legal-table code { font-family: 'Courier New', monospace; font-size: 0.8rem; background: rgba(139,115,85,0.07); color: var(--accent); padding: 0.1rem 0.35rem; border-radius: 2px; }
.legal-back { margin-top: 2.5rem; display: flex; }
.legal-back .btn-link svg { width: 16px; height: 16px; flex-shrink: 0; }

@media (max-width: 900px) {
  .legal-page { padding-top: 60px; }
  .legal-inner { padding: 2.5rem 1.5rem 5rem; }
  .legal-card { padding: 1.5rem; }
  .quote-card { display: none; }
}

/* ─── MAP OVERLAY ─── */
.map-overlay-card { position: absolute; top: 1.2rem; right: 1.2rem; background: var(--white); border-radius: 3px; padding: 1rem 1.2rem; box-shadow: 0 4px 24px rgba(42,37,34,0.13); min-width: 240px; max-width: 300px; border-left: 3px solid var(--accent); pointer-events: none; }
.map-overlay-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 500; color: var(--text-primary); line-height: 1.2; }
.map-overlay-type { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.04em; margin-top: 0.15rem; }
.map-overlay-stars { display: flex; align-items: center; gap: 0.35rem; margin-top: 0.4rem; }
.map-stars-score { font-size: 0.8rem; font-weight: 500; color: var(--text-primary); }
.map-stars-icons { font-size: 0.75rem; color: #F5A623; letter-spacing: 0.05em; }
.map-stars-count { font-size: 0.72rem; color: var(--text-muted); }
.map-overlay-divider { height: 1px; background: var(--border); margin: 0.75rem 0; }
.map-overlay-address { font-size: 0.78rem; color: var(--text-secondary); line-height: 1.4; }
.map-overlay-status { font-size: 0.78rem; font-weight: 400; margin-top: 0.25rem; }
.map-overlay-status.open { color: #4A8C4A; }
.map-overlay-status.closed { color: #C0392B; }
#contact-message { margin-bottom: 0.6rem; }

/* ─── BANDEAU CONFIDENTIALITÉ ─── */
.pvbar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 300;
  background: var(--text-primary);
  box-shadow: 0 -4px 32px rgba(42,37,34,0.18);
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.pvbar-inner { max-width: 1100px; margin: 0 auto; padding: 1.25rem 2rem; display: flex; align-items: center; justify-content: space-between; gap: 2.5rem; }
.pvbar-title { font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.9); margin-bottom: 0.25rem; letter-spacing: 0.04em; }
.pvbar-desc { font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.6; }
.pvbar-desc a { color: var(--accent-light); text-decoration: none; }
.pvbar-desc a:hover { text-decoration: underline; }
.pvbar-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.pvbar-btn { padding: 0.6rem 1.5rem; border-radius: 2px; font-family: 'DM Sans', sans-serif; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 400; cursor: pointer; transition: background 0.2s, color 0.2s, border-color 0.2s; white-space: nowrap; }
.pvbar-btn--alt { background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.15); }
.pvbar-btn--alt:hover { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.3); }
.pvbar-btn--main { background: var(--accent); color: var(--white); border: 1px solid var(--accent); }
.pvbar-btn--main:hover { background: #7A6348; border-color: #7A6348; }

@media (max-width: 900px) {
  .pvbar { bottom: 72px; }
  .pvbar-inner { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 1.25rem 1.5rem; }
  .pvbar-actions { width: 100%; }
  .pvbar-btn { flex: 1; text-align: center; padding: 0.75rem; }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-content > * { animation: fadeUp 0.7s ease both; }
.hero-eyebrow { animation-delay: 0.1s; }
.hero-title   { animation-delay: 0.2s; }
.hero-desc    { animation-delay: 0.3s; }
.hero-actions { animation-delay: 0.4s; }

/* ═══════════════════════════════════════
   MOBILE — max-width: 900px
═══════════════════════════════════════ */
@media (max-width: 900px) {
  body { padding-bottom: 72px; }
  section { padding: 3.5rem 1.5rem; }
  .section-title { font-size: 1.9rem; }
  nav { height: 60px; }
  .nav-inner { padding: 0 1.25rem; height: 60px; }
  .nav-links { display: none; }
  .nav-logo { font-size: 1rem; }
  .nav-topbar-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 400;
    border-radius: 100px;
    box-shadow: 0 3px 12px rgba(139,115,85,0.3);
    white-space: nowrap;
  }
  .nav-topbar-cta svg { width: 12px; height: 12px; flex-shrink: 0; }
  .bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0; top: auto;
    left: 0; right: 0;
    height: 72px;
    background: rgba(237, 233, 226, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    border-bottom: none;
    align-items: center;
    justify-content: space-around;
    z-index: 200;
    padding: 0 0.5rem;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  .bnav-item { display: flex; flex-direction: column; align-items: center; gap: 0.22rem; text-decoration: none; flex: 1; padding: 0.45rem 0; color: var(--text-muted); transition: color 0.2s; }
  .bnav-item.active { color: var(--accent); background: rgba(139, 115, 85, 0.1); border-radius: 10px; }
  .bnav-item.active .bnav-label { font-weight: 500; }
  .bnav-item svg { width: 21px; height: 21px; }
  .bnav-label { font-size: 0.56rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 400; }
  .stats-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--cream-dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .stat-item { padding: 1.3rem 0.5rem; text-align: center; border-left: 1px solid var(--border); }
  .stat-item:first-child { border-left: none; }
  .stat-value { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300; color: var(--accent); line-height: 1; margin-bottom: 0.3rem; }
  .stat-label { font-size: 0.58rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); line-height: 1.3; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 60px; display: flex; flex-direction: column; }
  .hero-image { height: 44svh; min-height: 240px; order: -1; }
  .hero-badge { display: none; }
  .hero-content { padding: 2rem 1.5rem 2.5rem; max-width: 100%; margin: 0; order: 1; }
  .hero-title { font-size: 2.6rem; line-height: 1.1; }
  .hero-desc { font-size: 0.9rem; max-width: 100%; margin-bottom: 2rem; }
  .hero-actions { flex-direction: column; gap: 0.85rem; align-items: stretch; }
  .btn-primary { width: 100%; justify-content: center; padding: 1rem 1.5rem; border-radius: 4px; }
  .btn-link { display: none; }
  .cta-badge { justify-content: center; }
  .hero-trust { display: flex; align-items: center; gap: 1rem; padding: 0.85rem 1rem; background: var(--white); border-radius: 4px; border: 1px solid var(--border); }
  .hero-trust::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #7cb87c; flex-shrink: 0; }
  .hero-trust-text { font-size: 0.78rem; color: var(--text-secondary); line-height: 1.4; }
  .hero-trust-text strong { display: block; color: var(--text-primary); font-weight: 500; font-size: 0.82rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-card { padding: 2rem 1.5rem; }
  .about-image-wrap { justify-content: flex-start; }
  .about-image { width: 100%; aspect-ratio: 4/3; object-position: top; border-radius: 4px; }
  .about-image-deco { display: none; }
  .about-read-more { display: flex; }
  .about-credentials { grid-template-columns: 1fr; gap: 0; margin-top: 2rem; padding-top: 0; }
  .cred-item { border-left: none; padding: 1rem 0; border-bottom: 1px solid var(--border); flex-direction: row; align-items: flex-start; gap: 1rem; }
  .cred-item:first-child { padding-left: 0; border-top: 1px solid var(--border); }
  .cred-year { min-width: 3.5rem; font-size: 0.65rem; padding-top: 0.15rem; }
  .pourquoi-layout { grid-template-columns: 1fr; gap: 0; }
  .pourquoi-intro { display: none; }
  .pourquoi-quote-block { position: static; margin-top: 2rem; gap: 1.25rem; }
  .pourquoi-item { padding: 0; border-top: 1px solid var(--border); }
  .pourquoi-item:last-of-type { border-bottom: 1px solid var(--border); }
  .pourquoi-item-header { display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 0; cursor: pointer; gap: 1rem; -webkit-tap-highlight-color: transparent; }
  .pourquoi-item-title { margin-bottom: 0; }
  .pourquoi-chevron { display: block; width: 20px; height: 20px; flex-shrink: 0; color: var(--accent); transition: transform 0.25s; }
  .pourquoi-item.open .pourquoi-chevron { transform: rotate(180deg); }
  .pourquoi-item-text { display: none; padding-bottom: 1.2rem; margin-top: 0; }
  .pourquoi-item.open .pourquoi-item-text { display: block; }
  .approach-layout { grid-template-columns: 1fr; gap: 2rem; }
  .approach-sticky { position: static; }
  .approach-item { padding: 0; }
  .approach-item-text { display: none; }
  .approach-item.open .approach-item-text { display: block; padding-bottom: 1.2rem; }
  .approach-item-header { display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 0; cursor: pointer; gap: 1rem; -webkit-tap-highlight-color: transparent; }
  .approach-item-title { margin-bottom: 0; }
  .approach-chevron { display: block; width: 20px; height: 20px; flex-shrink: 0; color: var(--accent); transition: transform 0.25s; }
  .approach-item.open .approach-chevron { transform: rotate(180deg); }
  .sexo-intro { font-size: 0.95rem; margin-bottom: 1.75rem; }
  .sexo-block-header { padding: 1.3rem 0; gap: 1rem; }
  .sexo-block-title { font-size: 1.25rem; }
  .sexo-block-body { max-width: 100%; padding-bottom: 1.6rem; }
  .sexo-principle { grid-template-columns: 2rem 1fr; gap: 1rem; padding: 1.3rem 0; }
  .testimonials-grid { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; margin: 0 -1.5rem; padding: 0.25rem 1.5rem 1rem; scrollbar-width: none; grid-template-columns: unset; }
  .testimonials-grid::-webkit-scrollbar { display: none; }
  .testimonial-card { scroll-snap-align: start; min-width: 78vw; max-width: 300px; flex-shrink: 0; display: flex; flex-direction: column; gap: 0.85rem; border-radius: 4px; }
  .testimonial-stars { display: block; font-size: 0.85rem; color: #F5A623; letter-spacing: 0.08em; }
  .testimonial-quote { margin-bottom: 0; }
  .scroll-hint { display: flex; align-items: center; gap: 0.4rem; font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.06em; margin-bottom: 0.75rem; }
  .scroll-hint svg { width: 14px; height: 14px; }
  .infos-cols { grid-template-columns: 1fr; gap: 0.9rem; margin-bottom: 2rem; }
  .info-col { padding: 0 1.1rem; margin-bottom: 0; border-top: 1px solid var(--border); }
  .info-col-eyebrow { display: none; }
  .info-col-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.1rem 0;
    background: none;
    border: none;
    cursor: pointer;
    gap: 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    -webkit-tap-highlight-color: transparent;
    text-align: left;
  }
  .info-col-chevron { width: 20px; height: 20px; flex-shrink: 0; color: var(--accent); transition: transform 0.25s; }
  .info-col.open .info-col-chevron { transform: rotate(180deg); }
  .info-col-body { display: none; padding-bottom: 1.2rem; }
  .info-col.open .info-col-body { display: block; }
  .info-row { display: flex; flex-direction: row; justify-content: space-between; align-items: flex-start; gap: 1rem; }
  .info-row-label { font-size: 0.75rem; color: var(--text-muted); flex-shrink: 0; max-width: 45%; line-height: 1.5; }
  .info-row-value { text-align: right; }
  .info-tag { display: block; margin-left: auto; margin-top: 0.25rem; width: fit-content; }
  .booking-block { padding: 3.5rem 0 !important; }
  .booking-block-inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 0 1.5rem; }
  .booking-left { padding: 0; }
  .booking-left .section-title { margin-bottom: 2rem; }
  .booking-steps { margin-bottom: 1.5rem; }
  .contact-details { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); }
  .contact-form-card { display: none; }
  .form-row { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .form-group input,
  .form-group textarea { font-size: 1rem; padding: 0.85rem 1rem; border-radius: 6px; }
  .custom-select-trigger { font-size: 1rem; padding: 0.85rem 1rem; border-radius: 6px; }
  .btn-form-submit { padding: 1rem; border-radius: 6px; }
  .contact-popup-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    margin-top: 0.5rem;
  }
  .contact-popup-cta:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); }
  .contact-popup-cta svg { width: 16px; height: 16px; flex-shrink: 0; }
  .contact-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 500;
    align-items: flex-end;
  }
  .contact-modal-overlay.open { display: flex; }
  .contact-modal {
    background: #1e1b18;
    border-radius: 16px 16px 0 0;
    padding: 1.5rem 1.5rem calc(1.5rem + env(safe-area-inset-bottom, 0px));
    width: 100%;
    max-height: 92svh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
  }
  @keyframes slideUp { from { transform: translateY(100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
  .contact-modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
  .contact-modal-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 300; color: var(--white); line-height: 1.3; }
  .contact-modal-close { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.08); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: rgba(255,255,255,0.6); transition: background 0.2s; }
  .contact-modal-close:hover { background: rgba(255,255,255,0.15); }
  .contact-modal-close svg { width: 16px; height: 16px; }
  .contact-modal-handle { width: 36px; height: 4px; background: rgba(255,255,255,0.15); border-radius: 100px; margin: 0 auto 1.25rem; }
  .map-overlay-card { display: none; }
  footer { padding: 1.5rem; }
  .footer-inner { flex-direction: column; gap: 0.75rem; text-align: center; }
}

@media (max-width: 400px) {
  .form-row { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.2rem; }
}