/* ===========================
   VARIABLES & RESET
=========================== */
:root {
  --bg:       #F7F3EE;
  --white:    #FFFFFF;
  --dark:     #252320;
  --accent:   #9C7B5E;
  --accent2:  #C4A882;
  --grey:     #7A7470;
  --light:    #EDE7DF;
  --light2:   #F0EAE2;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max:    1080px;
  --r:      3px;
  --ease:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --s1: 0.5rem;
  --s2: 1rem;
  --s3: 2rem;
  --s4: 3.5rem;
  --s5: 6rem;
  --s6: 9rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--dark);
  font-family: var(--font-sans);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* ===========================
   TYPOGRAPHY
=========================== */
h1 { font-family: var(--font-serif); font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; color: var(--dark); }
h2 { font-family: var(--font-serif); font-size: clamp(1.9rem, 3.5vw, 3rem); font-weight: 600; line-height: 1.15; color: var(--dark); }
h3 { font-family: var(--font-serif); font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 600; line-height: 1.2; color: var(--dark); }
p  { color: var(--grey); line-height: 1.85; font-size: 1rem; }

/* ===========================
   LAYOUT
=========================== */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--s3); }
.section { padding: var(--s5) 0; }
.section-sm { padding: var(--s4) 0; }

.tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s2);
}

.rule {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: var(--s2) 0 var(--s3);
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--r);
  transition: var(--ease);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-dark  { background: var(--dark); color: var(--white); }
.btn-dark:hover  { background: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(156,123,94,0.35); }
.btn-ghost { background: transparent; color: var(--dark); border: 1.5px solid var(--dark); }
.btn-ghost:hover { background: var(--dark); color: var(--white); }
.btn-white { background: var(--white); color: var(--dark); }
.btn-white:hover { background: var(--accent); color: var(--white); transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: #8a6a4d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(156,123,94,0.35); }

/* ===========================
   NAV
=========================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(247,243,238,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--light);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo { display: flex; flex-direction: column; gap: 1px; }
.logo-name  { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 700; color: var(--dark); line-height: 1; }
.logo-sub   { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); }

.nav-links  { display: flex; align-items: center; gap: var(--s3); }
.nav-link   {
  font-size: 0.85rem; color: var(--grey); transition: var(--ease);
  position: relative; padding-bottom: 2px;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1.5px; background: var(--accent); transition: var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--dark); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-rdv { margin-left: var(--s2); }

.burger { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--ease); }

/* ===========================
   HERO
=========================== */
.hero {
  min-height: 100vh;
  padding-top: 68px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  overflow: hidden;
  position: relative;
}
.hero-left {
  padding: var(--s5) var(--s5) var(--s5) calc((100vw - var(--max)) / 2 + var(--s3));
}
.hero-right {
  position: relative;
  height: 100%;
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-right-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 50%, rgba(156,123,94,0.25) 0%, transparent 70%),
    linear-gradient(160deg, #2e2b27 0%, #1a1815 100%);
}
.hero-right-text {
  position: relative; z-index: 1;
  padding: var(--s3);
  text-align: center;
}
.hero-big-letter {
  font-family: var(--font-serif);
  font-size: clamp(10rem, 18vw, 22rem);
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  user-select: none;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
.hero-right-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  padding: var(--s3);
  backdrop-filter: blur(8px);
  width: 260px;
}
.hero-right-badge-icon { font-size: 2.5rem; margin-bottom: var(--s2); }
.hero-right-badge p { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.6; }
.hero-right-badge strong { color: var(--white); }

.hero-tag { margin-bottom: var(--s2); }
.hero h1  { margin-bottom: var(--s3); }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub { font-size: 1.05rem; max-width: 440px; margin-bottom: var(--s4); line-height: 1.8; }
.hero-actions { display: flex; gap: var(--s2); flex-wrap: wrap; align-items: center; }

.hero-scroll {
  position: absolute; bottom: var(--s3); left: calc((100vw - var(--max)) / 2 + var(--s3));
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey);
}
.hero-scroll-line { width: 32px; height: 1px; background: var(--accent); }

/* ===========================
   ABOUT ROW (homepage)
=========================== */
.about-row {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: var(--s5);
  align-items: center;
}
.about-row-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.stat-card {
  background: var(--dark);
  color: var(--white);
  padding: var(--s3);
  border-radius: var(--r);
}
.stat-card-num  { font-family: var(--font-serif); font-size: 3rem; font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 0.3rem; }
.stat-card-label { font-size: 0.82rem; color: rgba(255,255,255,0.6); letter-spacing: 0.04em; }
.stat-card-accent { background: var(--accent); }
.stat-card-accent .stat-card-num   { color: var(--white); }
.stat-card-accent .stat-card-label { color: rgba(255,255,255,0.8); }

.badge-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s2);
}
.badge-item {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: var(--r);
  padding: var(--s2) var(--s2);
  display: flex; flex-direction: column; gap: 0.3rem;
}
.badge-item-icon { font-size: 1.4rem; }
.badge-item-label { font-size: 0.78rem; font-weight: 600; color: var(--dark); }
.badge-item-sub   { font-size: 0.72rem; color: var(--grey); }

.about-row-text h2    { margin-bottom: var(--s2); }
.about-row-text p     { margin-bottom: var(--s2); }
.about-row-text p:last-of-type { margin-bottom: var(--s3); }
.values-inline { display: flex; gap: var(--s3); flex-wrap: wrap; margin: var(--s3) 0 var(--s4); }
.val-dot { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; font-weight: 500; color: var(--dark); }
.val-dot::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }

/* ===========================
   SERVICES GRID
=========================== */
.section-head { text-align: center; max-width: 560px; margin: 0 auto var(--s4); }
.section-head h2 { margin-bottom: var(--s2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--light);
  border: 1.5px solid var(--light);
  border-radius: var(--r);
  overflow: hidden;
}
.srv-card {
  background: var(--white);
  padding: 2.5rem var(--s3);
  transition: var(--ease);
  cursor: pointer;
  display: block;
}
.srv-card:hover { background: var(--dark); }
.srv-card:hover .srv-icon  { color: var(--accent); }
.srv-card:hover .srv-title { color: var(--white); }
.srv-card:hover .srv-desc  { color: rgba(255,255,255,0.55); }
.srv-icon  { font-size: 1.8rem; margin-bottom: var(--s2); color: var(--accent); transition: var(--ease); }
.srv-title { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 600; color: var(--dark); margin-bottom: 0.4rem; line-height: 1.3; transition: var(--ease); }
.srv-desc  { font-size: 0.85rem; color: var(--grey); line-height: 1.6; transition: var(--ease); }

/* ===========================
   VALUES (dark)
=========================== */
.vals-dark { background: var(--dark); }
.vals-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s4); }
.val-item { padding: var(--s3); border-left: 1px solid rgba(255,255,255,0.08); }
.val-item:first-child { border-left: none; }
.val-num   { font-family: var(--font-serif); font-size: 3.5rem; font-weight: 700; color: rgba(255,255,255,0.06); line-height: 1; display: block; margin-bottom: var(--s1); }
.val-title { font-family: var(--font-serif); font-size: 1.3rem; color: var(--white); margin-bottom: var(--s2); }
.val-desc  { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.8; }

/* ===========================
   TESTIMONIALS
=========================== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3); }
.testi-card {
  background: var(--white);
  padding: var(--s3);
  border-radius: var(--r);
  border: 1px solid var(--light);
  position: relative;
}
.testi-card::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.15;
  position: absolute;
  top: 0; left: var(--s2);
  line-height: 1;
}
.testi-stars  { color: var(--accent); font-size: 0.8rem; letter-spacing: 4px; margin-bottom: var(--s2); }
.testi-text   { font-size: 0.92rem; color: var(--dark); font-style: italic; line-height: 1.75; margin-bottom: var(--s2); }
.testi-author { font-size: 0.8rem; color: var(--grey); font-weight: 600; }

/* ===========================
   CTA BANNER
=========================== */
.cta-strip {
  background: var(--accent);
  padding: var(--s5) 0;
  text-align: center;
}
.cta-strip h2 { color: var(--white); margin-bottom: var(--s2); }
.cta-strip p  { color: rgba(255,255,255,0.78); margin-bottom: var(--s3); }

/* ===========================
   NEWSLETTER
=========================== */
.newsletter { background: var(--dark); padding: var(--s5) 0; }
.nl-inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s5); align-items: center; }
.nl-title { font-family: var(--font-serif); font-size: 1.6rem; color: var(--white); margin-bottom: var(--s2); line-height: 1.2; }
.nl-desc  { color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.nl-form  { display: flex; }
.nl-input {
  flex: 1;
  padding: 0.9rem 1.2rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12); border-right: none;
  color: var(--white); font-family: var(--font-sans); font-size: 0.88rem;
  border-radius: var(--r) 0 0 var(--r); outline: none; transition: var(--ease);
}
.nl-input::placeholder { color: rgba(255,255,255,0.3); }
.nl-input:focus { border-color: var(--accent); background: rgba(255,255,255,0.1); }
.nl-btn {
  padding: 0.9rem 1.5rem;
  background: var(--accent); color: var(--white);
  border: none; font-family: var(--font-sans); font-size: 0.88rem; font-weight: 500;
  cursor: pointer; transition: var(--ease);
  border-radius: 0 var(--r) var(--r) 0;
}
.nl-btn:hover { background: #8a6a4d; }

/* ===========================
   FOOTER
=========================== */
.footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06); padding: var(--s4) 0 var(--s3); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--s5); margin-bottom: var(--s4); }
.footer-brand-name  { font-family: var(--font-serif); font-size: 1.1rem; color: var(--white); margin-bottom: 0.3rem; }
.footer-brand-sub   { font-size: 0.62rem; color: var(--accent); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: var(--s2); }
.footer-brand-desc  { font-size: 0.85rem; color: rgba(255,255,255,0.38); line-height: 1.7; }
.footer-col-title   { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white); font-weight: 600; margin-bottom: var(--s2); }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-link  { font-size: 0.85rem; color: rgba(255,255,255,0.38); transition: var(--ease); }
.footer-link:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: var(--s3); display: flex; justify-content: space-between; align-items: center; }
.footer-copy  { font-size: 0.75rem; color: rgba(255,255,255,0.22); }
.footer-legal { display: flex; gap: var(--s3); }
.footer-legal a { font-size: 0.75rem; color: rgba(255,255,255,0.22); transition: var(--ease); }
.footer-legal a:hover { color: var(--accent); }

/* ===========================
   PAGE HERO (inner pages)
=========================== */
.page-hero {
  padding: calc(68px + var(--s5)) 0 var(--s5);
  background: var(--white);
  border-bottom: 1px solid var(--light);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; width: 35%;
  background: linear-gradient(135deg, transparent 40%, var(--light2) 100%);
  pointer-events: none;
}
.page-hero-tag   { display: block; margin-bottom: var(--s2); }
.page-hero-title { max-width: 680px; margin-bottom: var(--s2); }
.page-hero-desc  { max-width: 560px; font-size: 1.05rem; }

/* ===========================
   ABOUT PAGE
=========================== */
.about-grid { display: grid; grid-template-columns: 1fr 1.7fr; gap: var(--s6); align-items: start; }
.about-sticky { position: sticky; top: 88px; display: flex; flex-direction: column; gap: var(--s2); }
.about-photo-placeholder {
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--light) 0%, var(--light2) 100%);
  border-radius: var(--r);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: var(--s2); border: 1px solid var(--light);
}
.about-photo-placeholder svg { opacity: 0.3; }
.about-photo-placeholder span { font-size: 0.78rem; color: var(--grey); }

.about-card {
  background: var(--dark); border-radius: var(--r); padding: var(--s3);
  display: flex; align-items: center; gap: var(--s2);
}
.about-card-icon { font-size: 1.5rem; flex-shrink: 0; }
.about-card-text strong { display: block; font-size: 0.88rem; color: var(--white); margin-bottom: 0.2rem; }
.about-card-text span   { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

.about-content { padding-top: var(--s1); }
.about-content h2 { margin-bottom: var(--s3); }
.about-content p  { margin-bottom: var(--s2); }
.about-content h3 { margin-top: var(--s4); margin-bottom: var(--s2); }

.timeline { display: flex; flex-direction: column; gap: 0; margin-top: var(--s2); }
.tl-item  { display: grid; grid-template-columns: 60px 1fr; gap: var(--s2); padding-bottom: var(--s3); position: relative; }
.tl-item::before { content: ''; position: absolute; top: 6px; left: 21px; bottom: 0; width: 1px; background: var(--light); }
.tl-item:last-child::before { display: none; }
.tl-dot  { width: 10px; height: 10px; background: var(--accent); border-radius: 50%; margin-top: 6px; justify-self: center; position: relative; z-index: 1; flex-shrink: 0; }
.tl-year { font-size: 0.68rem; font-weight: 700; color: var(--accent); letter-spacing: 0.12em; text-transform: uppercase; padding-top: 0.2rem; line-height: 1; }
.tl-body h4 { font-size: 0.92rem; font-weight: 600; color: var(--dark); font-family: var(--font-sans); margin-bottom: 0.2rem; }
.tl-body p  { font-size: 0.82rem; margin: 0; }

/* ===========================
   OSTEOPATHIE PAGE
=========================== */
.osteo-pills { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: var(--s4); padding-bottom: var(--s3); border-bottom: 1px solid var(--light); }
.osteo-pill {
  padding: 0.4rem 1rem; border: 1px solid var(--light); border-radius: 50px;
  font-size: 0.8rem; color: var(--grey); transition: var(--ease); cursor: pointer;
}
.osteo-pill:hover, .osteo-pill.active { background: var(--dark); color: var(--white); border-color: var(--dark); }

.osteo-block { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); align-items: center; padding: var(--s4) 0; border-bottom: 1px solid var(--light); }
.osteo-block:last-of-type { border-bottom: none; }
.osteo-block.flip .osteo-visual { order: -1; }

.osteo-visual {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--light) 0%, var(--light2) 100%);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.osteo-visual-icon { font-size: 4rem; opacity: 0.25; }
.osteo-visual-label {
  position: absolute; bottom: var(--s2); left: var(--s2);
  background: var(--dark); color: var(--white);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.7rem; border-radius: 50px;
}

.osteo-tag   { display: block; margin-bottom: var(--s2); }
.osteo-body h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); margin-bottom: var(--s2); }
.osteo-body p  { margin-bottom: var(--s2); }
.tags-list     { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: var(--s2) 0 var(--s3); }
.tag-pill { padding: 0.25rem 0.7rem; background: var(--light); border-radius: 50px; font-size: 0.76rem; color: var(--dark); }

/* ===========================
   BLOG PAGE
=========================== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3); }
.blog-card { background: var(--white); border: 1px solid var(--light); border-radius: var(--r); overflow: hidden; transition: var(--ease); }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(37,35,32,0.08); }
.blog-card-img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--light) 0%, var(--light2) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; opacity: 0.4;
}
.blog-card-body { padding: var(--s3); }
.blog-card-cat   { display: block; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.4rem; }
.blog-card-title { font-family: var(--font-serif); font-size: 1.05rem; color: var(--dark); margin-bottom: 0.5rem; line-height: 1.35; }
.blog-card-excerpt { font-size: 0.82rem; color: var(--grey); line-height: 1.65; margin-bottom: var(--s2); }
.blog-card-link { font-size: 0.82rem; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 0.3rem; transition: var(--ease); }
.blog-card-link::after { content: '→'; }
.blog-card-link:hover { gap: 0.55rem; }

/* ===========================
   CONTACT PAGE
=========================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
.contact-docto { background: var(--dark); border-radius: var(--r); padding: var(--s4); text-align: center; }
.contact-docto h3 { color: var(--white); font-size: 1.5rem; margin-bottom: var(--s2); }
.contact-docto p  { color: rgba(255,255,255,0.55); margin-bottom: var(--s3); }
.docto-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--accent); color: var(--white);
  padding: 1.1rem 2.2rem; border-radius: var(--r);
  font-weight: 600; font-size: 1rem; transition: var(--ease);
}
.docto-btn:hover { background: #8a6a4d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(156,123,94,0.4); }

.contact-infos { margin-top: var(--s3); padding-top: var(--s3); border-top: 1px solid rgba(255,255,255,0.08); display: flex; flex-direction: column; gap: 0.5rem; }
.contact-info-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; color: rgba(255,255,255,0.4); }

.contact-form-block h3 { margin-bottom: var(--s2); }
.contact-form-block > p { font-size: 0.88rem; margin-bottom: var(--s3); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s2); }
.form-g { margin-bottom: var(--s2); }
.form-g label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--dark); margin-bottom: 0.35rem; }
.form-control {
  width: 100%; padding: 0.8rem 1rem;
  background: var(--white); border: 1px solid var(--light);
  color: var(--dark); font-family: var(--font-sans); font-size: 0.88rem;
  border-radius: var(--r); outline: none; transition: var(--ease);
}
.form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(156,123,94,0.1); }
textarea.form-control { resize: vertical; min-height: 130px; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: var(--s5) var(--s3); padding-top: calc(68px + var(--s4)); }

  .about-row { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-sticky { position: static; flex-direction: row; flex-wrap: wrap; }
  .about-photo-placeholder { max-height: 300px; }

  .contact-grid { grid-template-columns: 1fr; }
  .nl-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: var(--s3); }
  .footer-bottom { flex-direction: column; gap: var(--s2); text-align: center; }
}

@media (max-width: 800px) {
  .nav-links, .nav-rdv { display: none; }
  .nav-links {
    position: fixed; top: 68px; left: 0; right: 0;
    flex-direction: column; padding: var(--s3);
    background: var(--bg); border-bottom: 1px solid var(--light);
    gap: var(--s2);
  }
  .nav-links.open { display: flex; }
  .burger { display: flex; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .vals-grid { grid-template-columns: 1fr; gap: var(--s2); }
  .val-item { border-left: none; border-top: 1px solid rgba(255,255,255,0.08); padding-top: var(--s2); }
  .val-item:first-child { border-top: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .blog-grid  { grid-template-columns: 1fr; }
  .osteo-block { grid-template-columns: 1fr; }
  .osteo-block.flip .osteo-visual { order: 0; }
  .form-row { grid-template-columns: 1fr; }
  .badge-row { grid-template-columns: 1fr; }
}

@media (max-width: 550px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .nl-form { flex-direction: column; }
  .nl-input { border-right: 1px solid rgba(255,255,255,0.12); border-bottom: none; border-radius: var(--r) var(--r) 0 0; }
  .nl-btn { border-radius: 0 0 var(--r) var(--r); }
}

/* ===========================
   ARTICLE PAGE
=========================== */
.article-hero {
  padding: calc(68px + var(--s4)) 0 var(--s4);
  background: var(--white);
  border-bottom: 1px solid var(--light);
}
.article-meta {
  display: flex; align-items: center; gap: var(--s2);
  margin-bottom: var(--s3); flex-wrap: wrap;
}
.article-cat  { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); }
.article-sep  { width: 1px; height: 12px; background: var(--light); }
.article-date { font-size: 0.8rem; color: var(--grey); }
.article-read { font-size: 0.8rem; color: var(--grey); }
.article-title { max-width: 780px; margin-bottom: var(--s2); }
.article-intro { max-width: 680px; font-size: 1.08rem; line-height: 1.8; }

.article-layout { display: grid; grid-template-columns: 1fr 280px; gap: var(--s5); align-items: start; }
.article-body { min-width: 0; }
.article-body h2 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); margin: var(--s4) 0 var(--s2); }
.article-body h3 { font-size: 1.15rem; margin: var(--s3) 0 var(--s1); }
.article-body p  { margin-bottom: var(--s2); }
.article-body ul, .article-body ol { padding-left: 1.4rem; margin-bottom: var(--s2); }
.article-body li { color: var(--grey); margin-bottom: 0.5rem; line-height: 1.75; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body strong { color: var(--dark); font-weight: 600; }
.article-body blockquote {
  border-left: 3px solid var(--accent); padding: var(--s2) var(--s3);
  margin: var(--s3) 0; background: var(--light2); border-radius: 0 var(--r) var(--r) 0;
  font-style: italic; font-size: 1.05rem; color: var(--dark);
}

.article-box {
  background: var(--light2); border-radius: var(--r); padding: var(--s3); margin: var(--s3) 0;
  border-left: 3px solid var(--accent);
}
.article-box h3 { font-size: 0.95rem; font-family: var(--font-sans); font-weight: 700; margin-bottom: var(--s2); color: var(--dark); }
.article-box ul { list-style: none; padding: 0; margin: 0; }
.article-box li { display: flex; gap: 0.6rem; font-size: 0.88rem; color: var(--dark); margin-bottom: 0.45rem; line-height: 1.6; }
.article-box li::before { content: '→'; color: var(--accent); font-weight: 700; flex-shrink: 0; }

.article-sidebar { position: sticky; top: 88px; display: flex; flex-direction: column; gap: var(--s2); }
.sidebar-rdv { background: var(--dark); border-radius: var(--r); padding: var(--s3); text-align: center; }
.sidebar-rdv p { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-bottom: var(--s2); line-height: 1.6; }
.sidebar-rdv .btn { width: 100%; justify-content: center; }
.sidebar-related { background: var(--white); border: 1px solid var(--light); border-radius: var(--r); padding: var(--s3); }
.sidebar-related h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey); margin-bottom: var(--s2); font-family: var(--font-sans); }
.sidebar-related ul { display: flex; flex-direction: column; gap: 0.5rem; list-style: none; padding: 0; }
.sidebar-related li a { font-size: 0.85rem; color: var(--dark); transition: var(--ease); line-height: 1.4; display: block; }
.sidebar-related li a:hover { color: var(--accent); }

@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
  .sidebar-rdv, .sidebar-related { flex: 1; min-width: 240px; }
}

/* ===========================
   ENCART CAROUSEL "Ce que je ne vous dirai pas"
=========================== */
.cedira-wrap {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.cedira-carousel {
  position: relative;
}
.cedira-slide {
  position: absolute;
  width: 100%;
  top: 0; left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s3);
  padding: var(--s2) 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.cedira-slide.active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}
.cedira-statement {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  color: var(--dark);
  line-height: 1.35;
}
.cedira-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--s3);
}
.cedira-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--light);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  padding: 0;
}
.cedira-dot.active {
  background: var(--accent);
}
