/* ================================================
   ANTHONY JACQUET — PRATICIEN EN HYPNOSE
   Palette : sable dominant, vert en accent
   Typo : Lora (titres) + DM Sans (corps)
   ================================================ */

:root {
  --creme:       #F7F2EA;
  --sable:       #E4D9C4;
  --sable-fonce: #C8B99A;
  --vert:        #5E8056;
  --vert-doux:   #9AB58F;
  --texte:       #2A2820;
  --texte-doux:  #6B6458;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--texte);
  background: var(--creme);
  font-size: 17px;
  line-height: 1.75;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(247,242,234,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sable);
  padding: 0 2.5rem;
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo img { height: 48px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-name {
  font-family: 'Lora', serif;
  font-size: 15px; font-weight: 500; color: var(--texte);
}
.nav-logo-sub {
  font-size: 10px; font-weight: 300; color: var(--texte-doux);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center;
  gap: 1.6rem; list-style: none;
}
.nav-links a {
  text-decoration: none; color: var(--texte-doux);
  font-size: 14px; font-weight: 400;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--vert); }
.nav-links a.active { color: var(--vert); font-weight: 500; }
.nav-cta {
  background: var(--vert) !important;
  color: white !important;
  padding: 8px 18px !important;
  border-radius: 50px;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: #4a6644 !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: 70px;
  display: flex; align-items: center;
  background: linear-gradient(150deg, var(--creme) 0%, #ede6d6 55%, var(--sable) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(154,181,143,0.18) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 5rem 2rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--vert); margin-bottom: 1.2rem;
}
.hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400; line-height: 1.25;
  color: var(--texte); margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--vert); }
.hero-sub {
  font-size: 17px; color: var(--texte-doux);
  line-height: 1.8; margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-logo-wrap {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(228,217,196,0.6) 0%, transparent 70%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hero-logo-wrap img { width: 270px; height: auto; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; padding: 13px 30px;
  background: var(--vert); color: white;
  text-decoration: none; border-radius: 50px;
  font-size: 15px; font-weight: 500;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: #4a6644; transform: translateY(-2px); }

.btn-secondary {
  display: inline-block; padding: 13px 30px;
  border: 1.5px solid var(--sable-fonce); color: var(--texte);
  text-decoration: none; border-radius: 50px;
  font-size: 15px; font-weight: 400;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn-secondary:hover { border-color: var(--vert); color: var(--vert); transform: translateY(-2px); }

.btn-white {
  display: inline-block; padding: 13px 34px;
  background: white; color: var(--vert);
  text-decoration: none; border-radius: 50px;
  font-size: 15px; font-weight: 500;
  transition: transform 0.2s;
}
.btn-white:hover { transform: translateY(-2px); }

/* ── WAVE ── */
.wave { display: block; width: 100%; overflow: hidden; line-height: 0; margin: 0; padding: 0; }
.wave svg { display: block; width: 100%; height: 60px; }

/* ── SECTION LABELS & TITLES ── */
.section-label {
  display: block;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--vert); margin-bottom: 0.6rem;
}
.section-title {
  font-family: 'Lora', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 400; color: var(--texte);
  margin-bottom: 2.5rem; max-width: 620px;
  line-height: 1.35;
}

/* ── PILLIERS ── */
.pilliers { background: white; padding: 5rem 2rem; }
.pilliers-inner { max-width: 1100px; margin: 0 auto; }
.pilliers-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pillier {
  padding: 2rem;
  background: var(--creme);
  border-radius: 16px;
  border: 1px solid var(--sable);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pillier:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(94,128,86,0.1); }
.pillier-icon {
  width: 42px; height: 42px;
  background: var(--vert); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.pillier-icon svg { width: 20px; height: 20px; }
.pillier h3 {
  font-family: 'Lora', serif;
  font-size: 1.05rem; font-weight: 500;
  margin-bottom: 0.6rem; color: var(--texte);
}
.pillier p { font-size: 15px; color: var(--texte-doux); line-height: 1.7; }

/* ── PROBLEMATIQUES ── */
.probls {
  background: linear-gradient(180deg, var(--sable) 0%, var(--creme) 100%);
  padding: 5rem 2rem;
}
.probls-inner { max-width: 1100px; margin: 0 auto; }
.probls-grid { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 0.5rem; }
.probl-tag {
  padding: 8px 18px;
  background: white; border: 1px solid var(--sable-fonce);
  border-radius: 50px; font-size: 14px; color: var(--texte-doux);
}
.probl-tag.accent {
  background: var(--vert); border-color: var(--vert); color: white;
}
.probls-more {
  margin-top: 2rem;
  font-size: 15px; color: var(--texte-doux); font-style: italic;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--vert);
  padding: 5rem 2rem; text-align: center;
}
.cta-band h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: white; font-weight: 400; margin-bottom: 0.8rem;
}
.cta-band p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; font-size: 16px; }

/* ── PAGE INTÉRIEURE HERO ── */
.page-hero {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(150deg, var(--creme) 0%, var(--sable) 100%);
  text-align: center;
}
.page-hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400; color: var(--texte);
  margin-bottom: 1rem;
}
.page-hero .lead {
  font-size: 18px; color: var(--texte-doux);
  max-width: 640px; margin: 0 auto;
  line-height: 1.75;
}

/* ── CONTENT SECTIONS ── */
.content-section { padding: 5rem 2rem; }
.content-section.alt { background: white; }
.content-section.sand { background: var(--sable); }
.content-inner { max-width: 780px; margin: 0 auto; }

.content-inner h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 400; color: var(--texte);
  margin-bottom: 1.2rem; line-height: 1.35;
}
.content-inner p { color: var(--texte-doux); margin-bottom: 1.2rem; line-height: 1.8; }
.content-inner p:last-child { margin-bottom: 0; }
.content-inner ul, .content-inner ol {
  padding-left: 0; list-style: none;
  margin-bottom: 1.2rem;
}
.content-inner li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative; color: var(--texte-doux);
  font-size: 16px; line-height: 1.7;
  border-bottom: 1px solid var(--sable);
}
.content-inner li:last-child { border-bottom: none; }
.content-inner li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--vert); font-weight: 500;
}

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: var(--creme);
  border-left: 3px solid var(--vert);
  border-radius: 0 12px 12px 0;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}
.highlight-box p { color: var(--texte); margin: 0; font-style: italic; }

/* ── TARIF CARD ── */
.tarif-card {
  background: white;
  border: 1px solid var(--sable);
  border-radius: 16px;
  padding: 2.5rem;
  margin: 2rem 0;
}
.tarif-price {
  font-family: 'Lora', serif;
  font-size: 3rem; font-weight: 400; color: var(--vert);
  line-height: 1;
}
.tarif-price span { font-size: 1.2rem; color: var(--texte-doux); }
.tarif-details { margin-top: 1rem; color: var(--texte-doux); font-size: 15px; }

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; max-width: 900px; margin: 0 auto;
}
.contact-info h3 {
  font-family: 'Lora', serif;
  font-size: 1.2rem; font-weight: 400;
  margin-bottom: 1.5rem; color: var(--texte);
}
.contact-item {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.2rem;
}
.contact-item-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--sable); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.contact-item-text { font-size: 15px; color: var(--texte-doux); line-height: 1.5; }
.contact-item-text strong { color: var(--texte); display: block; font-size: 13px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 2px; }

.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; font-size: 13px; font-weight: 500;
  color: var(--texte); margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}
.form-group input,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--sable);
  border-radius: 10px;
  background: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; color: var(--texte);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--vert); }
.form-group textarea { min-height: 140px; resize: vertical; }

/* ── FOOTER ── */
footer {
  background: var(--texte);
  color: rgba(255,255,255,0.55);
  padding: 3.5rem 2rem 2rem;
  font-size: 14px; line-height: 1.8;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem; margin-bottom: 2.5rem;
}
.footer-col h4 {
  color: white; font-size: 13px;
  font-weight: 500; margin-bottom: 1rem;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.footer-col a {
  color: rgba(255,255,255,0.55); text-decoration: none;
  display: block; margin-bottom: 0.3rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--vert-doux); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px; line-height: 1.7;
  color: rgba(255,255,255,0.35);
}
.footer-bottom p + p { margin-top: 0.5rem; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; padding: 3rem 1.5rem; }
  .hero-visual { display: none; }
  .hero-btns { justify-content: center; }
  .pilliers-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links { display: none; }
  nav { padding: 0 1.5rem; }
}
