/* ============================================================
   Charlotte Dean — Ostéopathe à La Madeleine
   Design system & styles
   ============================================================ */

:root {
  --navy-900: #1e2c4f;
  --navy-800: #263862;
  --navy-700: #33477d;
  --navy-500: #526099;
  --navy-300: #a7b2d6;
  --navy-100: #e7eaf5;
  --cream-050: #faf6ec;
  --cream-100: #f3ecda;
  --cream-200: #e8dcc0;
  --gold-600: #a9803f;
  --gold-500: #c9a35c;
  --gold-100: #f1e3c4;
  --ink-900: #22263a;
  --ink-600: #545a72;
  --ink-400: #83889c;
  --white: #ffffff;
  --shadow-sm: 0 2px 10px rgba(30, 44, 79, 0.08);
  --shadow-md: 0 8px 30px rgba(30, 44, 79, 0.12);
  --shadow-lg: 0 20px 60px rgba(30, 44, 79, 0.18);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --font-head: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--cream-050);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.2;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.1rem, 4vw, 3.2rem); font-weight: 500; }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--ink-600); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 700;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold-600);
}

.lead { font-size: 1.1rem; color: var(--ink-600); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--navy-900); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--navy-800); box-shadow: var(--shadow-md); }
.btn-accent { background: var(--gold-600); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-accent:hover { background: #8f6c33; box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; border-color: var(--navy-700); color: var(--navy-900); }
.btn-outline:hover { background: var(--navy-900); color: var(--white); }
.btn-ghost-white { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn-ghost-white:hover { background: var(--white); color: var(--navy-900); }
.btn-block { width: 100%; justify-content: center; }
.btn svg { flex-shrink: 0; width: 16px; height: 16px; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 240, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(34, 51, 39, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 14px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--navy-900);
  font-weight: 600;
}
.logo .logo-mark {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--cream-050);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.05rem;
}
.logo small { display: block; font-family: var(--font-body); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em; color: var(--gold-600); text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  padding: 10px 11px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-600);
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { background: var(--navy-100); color: var(--navy-900); }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 280px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.18s ease;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 10px 14px; border-radius: 8px; font-size: 0.9rem; }
.dropdown a:hover { background: var(--cream-100); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-tel { display: flex; flex-direction: column; text-align: right; font-size: 0.95rem; font-weight: 700; color: var(--navy-900); white-space: nowrap; flex-shrink: 0; }
.header-tel span { display: block; font-size: 0.68rem; font-weight: 600; color: var(--ink-400); text-transform: uppercase; letter-spacing: 0.05em; }

.menu-toggle {
  display: none;
  background: none; border: none;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.menu-toggle span { width: 22px; height: 2px; background: var(--navy-900); border-radius: 2px; transition: all 0.2s ease; }

.mobile-nav, .nav-overlay { display: none; }

/* ============ HERO ============ */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  color: var(--white);
  overflow: hidden;
  padding: 72px 0 100px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 15% 20%, rgba(255,255,255,0.07), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(201,163,92,0.28), transparent 45%);
  pointer-events: none;
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.hero .eyebrow { color: var(--gold-500); }
.hero .eyebrow::before { background: var(--gold-500); }
.hero h1 { color: var(--white); }
.hero h1 .accent-word { color: var(--gold-500); font-style: italic; }
.hero p.lead { color: rgba(255,255,255,0.82); max-width: 46ch; }
.hero-cta { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.16), transparent 55%),
    linear-gradient(150deg, var(--navy-700), var(--gold-600));
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-visual svg { width: 62%; height: 62%; opacity: 0.92; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 12%; border-radius: var(--radius-lg); }
.hero-badge {
  position: absolute;
  bottom: 22px; left: 22px; right: 22px;
  background: rgba(20,28,49,0.72);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-stats div strong { display: block; font-family: var(--font-head); font-size: 1.7rem; color: var(--white); }
.hero-stats div span { font-size: 0.82rem; color: rgba(255,255,255,0.7); }

/* Info strip under hero (address/hours/phone) */
.info-strip {
  position: relative;
  margin-top: -56px;
  z-index: 5;
}
.info-strip .container { }
.info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 20px;
  align-items: center;
}
.info-item { display: flex; gap: 14px; align-items: flex-start; }
.info-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--navy-100); color: var(--navy-800);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.info-icon svg { width: 20px; height: 20px; }
.info-item strong { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-400); margin-bottom: 2px; }
.info-item a, .info-item span.value { font-weight: 700; color: var(--navy-900); font-size: 0.95rem; }

/* ============ SECTIONS ============ */
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-sand { background: var(--cream-100); }
.section-dark { background: var(--navy-900); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.78); }

.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.two-col.reverse { grid-template-columns: 1fr 1fr; }
.two-col.reverse .col-media { order: 2; }

.media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5/4.2;
  background: linear-gradient(150deg, var(--navy-300), var(--cream-200));
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
}
.media-frame svg { width: 42%; height: 42%; color: var(--navy-800); opacity: 0.55; }
.media-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 12%; }
.media-frame .placeholder-tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,0.85);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 6px 12px; border-radius: 999px; color: var(--ink-600);
}

.note-card {
  background: var(--cream-050);
  border: 1px solid var(--cream-200);
  border-left: 4px solid var(--gold-500);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  margin: 28px 0;
}
.note-card strong { display: block; color: var(--navy-900); margin-bottom: 6px; font-family: var(--font-head); font-size: 1rem; }
.note-card p { margin: 0; font-size: 0.94rem; }

/* Cards grid (services) */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex; flex-direction: column; height: 100%;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--navy-100); color: var(--navy-800);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 0.92rem; flex-grow: 1; }
.card-link { font-weight: 700; font-size: 0.88rem; color: var(--gold-600); display: inline-flex; align-items: center; gap: 6px; }
.card-link svg { width: 14px; height: 14px; flex-shrink: 0; transition: transform 0.15s ease; }
.service-card .card-link { margin-top: 16px; }
.service-card:hover .card-link svg { transform: translateX(3px); }

/* Feature list */
.feature-list { margin: 24px 0; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; }
.feature-list li .check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold-100); color: var(--gold-600);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.feature-list li .check svg { width: 12px; height: 12px; }

/* Testimonials */
.grid-testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 14px;
}
.testimonial-card .stars { color: var(--gold-500); letter-spacing: 2px; font-size: 0.95rem; }
.testimonial-card p { font-size: 0.92rem; color: var(--ink-600); margin: 0; }
.testimonial-card .who { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.testimonial-card .avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--navy-100); color: var(--navy-800);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; font-family: var(--font-head);
}
.testimonial-card .who strong { display: block; font-size: 0.88rem; color: var(--ink-900); }
.testimonial-card .who span { font-size: 0.78rem; color: var(--ink-400); }
.testimonial-tag { display: inline-block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink-400); background: var(--cream-100); padding: 4px 10px; border-radius: 999px; margin-bottom: 4px; }

/* Blog cards */
.grid-blog { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-card .blog-img {
  aspect-ratio: 16/10.5;
  background: linear-gradient(140deg, var(--navy-500), var(--navy-800));
  display: flex; align-items: center; justify-content: center; position: relative;
}
.blog-card .blog-img svg { width: 30%; height: 30%; color: rgba(255,255,255,0.85); }
.blog-card .blog-category {
  position: absolute; top: 14px; left: 14px;
  background: var(--white); color: var(--navy-900);
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em;
  padding: 5px 11px; border-radius: 999px;
}
.blog-card .blog-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex-grow: 1; }
.blog-card .blog-date { font-size: 0.76rem; color: var(--ink-400); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 8px; }
.blog-card h3 { font-size: 1.08rem; margin-bottom: 10px; }
.blog-card p { font-size: 0.9rem; flex-grow: 1; }
.blog-card .card-link { margin-top: 14px; font-weight: 700; font-size: 0.86rem; color: var(--gold-600); }

.section-foot-cta { text-align: center; margin-top: 46px; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.78); margin: 0; }
.cta-band .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--cream-200); }
.faq-question {
  width: 100%; background: none; border: none; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 4px; font-family: var(--font-head); font-size: 1.05rem; color: var(--navy-900); font-weight: 600;
}
.faq-question .plus { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--navy-100); display: flex; align-items: center; justify-content: center; transition: transform 0.2s ease; }
.faq-question .plus svg { width: 13px; height: 13px; }
.faq-item.open .faq-question .plus { transform: rotate(45deg); background: var(--gold-100); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-item.open .faq-answer { max-height: 320px; }
.faq-answer p { padding: 0 4px 22px; margin: 0; }

/* Map + contact section */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-card-list { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card {
  background: var(--white); border-radius: var(--radius-md); padding: 22px 24px;
  box-shadow: var(--shadow-sm); display: flex; gap: 16px; align-items: flex-start;
}
.hours-list { margin-top: 6px; }
.hours-row { display: flex; justify-content: space-between; gap: 16px; font-size: 0.9rem; padding: 3px 0; max-width: 260px; }
.hours-row span:first-child { color: var(--ink-600); }
.hours-row span:last-child { font-weight: 700; color: var(--navy-900); }
.map-frame {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  aspect-ratio: 4/3.4; border: 0; width: 100%;
}

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--navy-900); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border-radius: 10px; border: 1.5px solid var(--cream-200);
  background: var(--white); font-family: inherit; font-size: 0.95rem; color: var(--ink-900);
  transition: border-color 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy-500); }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.8rem; color: var(--ink-400); margin-top: 10px; }

/* Footer */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.82); padding-top: 72px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 1.2rem; color: var(--white); margin-bottom: 16px; }
.footer-logo .logo-mark { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.12); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); }
.footer-col h4 { color: var(--white); font-family: var(--font-body); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col a { font-size: 0.92rem; color: rgba(255,255,255,0.72); transition: color 0.15s ease; }
.footer-col a:hover { color: var(--gold-500); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: var(--gold-600); }
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom { padding: 22px 0 30px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--white); }
.footer-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }

/* Mobile tap bar */
.tap-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: var(--white); box-shadow: 0 -4px 20px rgba(0,0,0,0.1); }
.tap-bar .container { display: grid; grid-template-columns: repeat(3, 1fr); }
.tap-bar a { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 10px 6px; font-size: 0.68rem; font-weight: 700; color: var(--navy-900); }
.tap-bar a svg { width: 20px; height: 20px; }
.tap-bar a.accent { color: var(--gold-600); }

/* Breadcrumb */
.breadcrumb { padding: 22px 0 0; font-size: 0.82rem; color: var(--ink-400); }
.breadcrumb a { color: var(--ink-400); }
.breadcrumb a:hover { color: var(--navy-800); }
.breadcrumb span.sep { margin: 0 8px; }
.breadcrumb .current { color: var(--navy-900); font-weight: 600; }

/* Page hero (inner pages) */
.page-hero { padding: 36px 0 64px; }
.page-hero .eyebrow { color: var(--gold-600); }
.page-hero h1 { max-width: 18ch; }
.page-hero p.lead { max-width: 60ch; }

/* Article */
.article-hero { padding: 40px 0 20px; }
.article-meta { display: flex; gap: 14px; align-items: center; font-size: 0.82rem; color: var(--ink-400); font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 16px; }
.article-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-400); }
.article-cover { border-radius: var(--radius-lg); overflow: hidden; margin: 30px 0 10px; aspect-ratio: 16/7; background: linear-gradient(140deg, var(--navy-700), var(--gold-600)); display: flex; align-items: center; justify-content: center; }
.article-cover svg { width: 18%; color: rgba(255,255,255,0.85); }
.article-body { max-width: 760px; margin: 0 auto; padding: 20px 0 0; }
.article-body h2 { margin-top: 1.6em; }
.article-body h3 { margin-top: 1.3em; }
.article-body ul { margin: 0 0 1.2em; padding-left: 1.3em; list-style: disc; }
.article-body ul li { margin-bottom: 0.5em; color: var(--ink-600); }
.article-body p { font-size: 1.02rem; }
.article-cta { max-width: 760px; margin: 40px auto 0; }
.article-share { max-width: 760px; margin: 40px auto 0; display: flex; align-items: center; gap: 14px; padding-top: 26px; border-top: 1px solid var(--cream-200); }
.article-share span { font-size: 0.82rem; font-weight: 700; color: var(--ink-400); text-transform: uppercase; letter-spacing: 0.04em; }
.share-link { width: 38px; height: 38px; border-radius: 50%; background: var(--cream-100); color: var(--navy-800); display: flex; align-items: center; justify-content: center; }
.share-link svg { width: 17px; height: 17px; }

/* Blog listing filters */
.blog-filters { display: flex; gap: 10px; justify-content: center; margin-bottom: 46px; flex-wrap: wrap; }
.blog-filters button { padding: 9px 18px; border-radius: 999px; border: 1.5px solid var(--cream-200); background: var(--white); font-size: 0.85rem; font-weight: 700; color: var(--ink-600); }
.blog-filters button.active, .blog-filters button:hover { border-color: var(--navy-900); background: var(--navy-900); color: var(--white); }

/* Simple page content blocks (mentions légales etc.) */
.prose { max-width: 800px; margin: 0 auto; }
.prose h2 { margin-top: 1.8em; }
.prose p, .prose li { color: var(--ink-600); }
.prose ul { padding-left: 1.3em; list-style: disc; margin-bottom: 1.2em; }

/* Utilities */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.badge-pill { display: inline-block; background: var(--navy-100); color: var(--navy-800); font-size: 0.78rem; font-weight: 700; padding: 6px 14px; border-radius: 999px; margin-bottom: 14px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .grid-cards { grid-template-columns: repeat(2, 1fr); }
  .grid-testimonials { grid-template-columns: repeat(2, 1fr); }
  .grid-blog { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse .col-media { order: 0; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .info-card { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-nav, .header-actions .header-tel, .has-dropdown .dropdown { display: none; }
  .menu-toggle { display: flex; }
  .header-actions .btn-accent span.btn-text { display: none; }
  body.nav-open .mobile-nav { transform: translateX(0); }
  .mobile-nav {
    display: block;
    position: fixed; top: 0; right: 0; bottom: 0; width: 82%; max-width: 340px;
    background: var(--navy-900); color: var(--white); z-index: 200;
    transform: translateX(100%); transition: transform 0.25s ease;
    padding: 26px 24px; overflow-y: auto;
  }
  .mobile-nav-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
  .mobile-nav-close { background: rgba(255,255,255,0.1); border: none; width: 38px; height: 38px; border-radius: 50%; color: white; display: flex; align-items:center; justify-content:center; }
  .mobile-nav a { display: block; padding: 13px 4px; font-size: 1.02rem; font-weight: 600; color: var(--white); border-bottom: 1px solid rgba(255,255,255,0.1); }
  .mobile-nav .sub-links { padding-left: 14px; }
  .mobile-nav .sub-links a { font-size: 0.92rem; font-weight: 500; color: rgba(255,255,255,0.75); border-bottom: none; padding: 9px 4px; }
  .mobile-nav-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
  .nav-overlay { display: block; position: fixed; inset: 0; background: rgba(20,26,20,0.5); z-index: 150; opacity: 0; visibility: hidden; transition: opacity 0.2s ease; }
  body.nav-open .nav-overlay { opacity: 1; visibility: visible; }

  .hero { padding: 40px 0 90px; }
  .hero-stats { gap: 26px; flex-wrap: wrap; }
  .info-card { grid-template-columns: 1fr; gap: 18px; padding: 24px; }
  .info-card .btn { width: 100%; justify-content: center; }
  .section { padding: 64px 0; }
  .grid-cards, .grid-testimonials, .grid-blog { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; text-align: center; padding: 40px 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; padding-bottom: 34px; }
  .form-grid { grid-template-columns: 1fr; }
  .tap-bar { display: block; }
  body { padding-bottom: 64px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
