/* ═══════════════════════════════════════════
   MAÎTRE & MUSEAU v3 — Hybrid stylesheet
   v1 hero layout + v2 split design
   v1 service cards style
   v2 avis + contact layouts
════════════════════════════════════════════ */

:root {
  --dark:   #152726;
  --olive:  #6a7333;
  --sage:   #8b8c74;
  --sand:   #d8cbad;
  --cream:  #f3efdc;
  --white:  #ffffff;
  --dark2:  #0e1a19;

  --ff-d: 'Fraunces', Georgia, serif;
  --ff-b: 'Instrument Sans', system-ui, sans-serif;

  --ease:  cubic-bezier(.4,0,.2,1);
  --max:   1200px;
  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  28px;
  --r-xl:  48px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--ff-b); background: var(--cream); color: var(--dark); line-height: 1.65; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
strong { color: var(--dark); }

/* cursor removed */

/* ─── CONTAINER ─── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

/* ─── TAGS ─── */
.tag-pill {
  display: inline-block; font-size: .72rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--olive); background: rgba(106,115,51,.1);
  border: 1px solid rgba(106,115,51,.2); padding: 5px 14px; border-radius: 999px;
}
.tag-pill.light { color: var(--sand); background: rgba(243,239,220,.12); border-color: rgba(243,239,220,.2); }

/* ─── SECTION ─── */
.section { padding: 96px 0; }
.section-title {
  font-family: var(--ff-d); font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900; line-height: 1.15; color: var(--dark); margin: 16px 0 24px;
}
.section-title em { font-style: italic; font-weight: 300; }
.section-title.light { color: var(--cream); }
.section-title.light em { color: var(--sand); }
.section-intro { font-size: .95rem; color: var(--sage); max-width: 580px; line-height: 1.7; margin-bottom: 40px; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 999px;
  font-family: var(--ff-b); font-size: .875rem; font-weight: 600;
  cursor: pointer; transition: all .25s var(--ease); border: 2px solid transparent; white-space: nowrap;
}
.btn-cream { background: var(--cream); color: var(--dark); border-color: var(--cream); }
.btn-cream:hover { background: var(--sand); border-color: var(--sand); transform: translateY(-2px); }
.btn-dark { background: var(--dark); color: var(--cream); border-color: var(--dark); }
.btn-dark:hover { background: var(--olive); border-color: var(--olive); transform: translateY(-2px); }
.btn-ghost-dark { background: transparent; color: var(--cream); border-color: rgba(243,239,220,.4); }
.btn-ghost-dark:hover { background: rgba(243,239,220,.1); color: var(--cream); }
.mt-btn { margin-top: 8px; }

/* ═══════ NAV ═══════ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(243,239,220,.92); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(21,39,38,.06);
  transition: box-shadow .3s var(--ease);
}
.header.scrolled { box-shadow: 0 4px 32px rgba(21,39,38,.1); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav-logo img { height: 34px; width: auto; transition: opacity .25s; }
.nav-logo:hover img { opacity: .7; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { font-size: .83rem; font-weight: 500; color: var(--sage); padding: 6px 14px; border-radius: 999px; transition: color .2s, background .2s; }
.nav-links a:hover { color: var(--dark); background: rgba(21,39,38,.06); }
.nav-links .nav-cta { background: var(--dark); color: var(--cream); font-weight: 600; padding: 8px 20px; margin-left: 8px; }
.nav-links .nav-cta:hover { background: var(--olive); }
.nav-burger { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 300; align-items: center; justify-content: center; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: all .3s var(--ease); transform-origin: center; }
.nav-burger.open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-burger.open span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 199;
  background: var(--dark); flex-direction: column; align-items: center; justify-content: center;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { text-align: center; }
.mobile-menu ul li { margin: 10px 0; }
.mobile-menu ul a { font-family: var(--ff-d); font-size: clamp(1.8rem, 6vw, 3rem); font-weight: 700; color: var(--cream); transition: color .2s; }
.mobile-menu ul a:hover { color: var(--sand); }
.mobile-tagline { position: absolute; bottom: 40px; font-style: italic; color: var(--sage); font-size: .9rem; }

/* ═══════ HERO — v1 layout + v2 photo + ticker ═══════ */
.hero {
  min-height: 100vh;
  background: var(--dark);
  padding-top: 70px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
/* ambient blobs */
.hero-bg-blob {
  position: absolute; top: -20%; right: -8%;
  width: 55vw; height: 55vw; max-width: 680px; max-height: 680px;
  background: radial-gradient(circle, rgba(106,115,51,.3) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-bg-blob2 {
  position: absolute; bottom: -10%; left: -6%;
  width: 38vw; height: 38vw; max-width: 480px; max-height: 480px;
  background: radial-gradient(circle, rgba(139,140,116,.18) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
/* main content row */
.hero-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 40px;
}
/* text side */
.hero-text { display: flex; flex-direction: column; align-items: flex-start; }
.hero-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-title { margin-bottom: 20px; }
.hero-logo-img { width: 100%; max-width: 520px; height: auto; }
.hero-role {
  font-size: .8rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 16px;
}
.hero-slogan {
  font-family: var(--ff-d); font-size: clamp(.9rem, 1.5vw, 1.15rem);
  font-style: italic; font-weight: 300; color: var(--sand);
  margin-bottom: 36px; border-left: 2px solid var(--olive); padding-left: 16px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
/* photo side */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-photo-wrap {
  position: relative;
  width: 100%; max-width: 420px;
  border-radius: var(--r-xl) var(--r-lg) var(--r-xl) var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 32px 80px rgba(0,0,0,.35);
  animation: float 7s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-photo-badge {
  position: absolute; bottom: 20px; right: 20px;
  width: 72px; height: 72px; background: var(--cream); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; padding: 13px;
}
.hero-photo-badge img { width: 100%; }
/* scroll hint hidden */
.hero-scroll { display: none; }
.hero-ticker { background: var(--olive); overflow: hidden; padding: 13px 0; flex-shrink: 0; }
.ticker-track {
  display: inline-flex; gap: 20px; white-space: nowrap;
  animation: ticker 22s linear infinite;
  font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--cream);
}
.tsep { opacity: .5; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.scroll-bar { display: none; }

/* ═══════ PILLARS ═══════ */
.pillars { background: var(--sand); border-bottom: 1px solid rgba(21,39,38,.08); padding: 64px 0; }
.pillars-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
.pillar { text-align: center; padding: 24px; }
.pillar-icon { font-size: 2rem; margin-bottom: 14px; }
.pillar h3 { font-family: var(--ff-d); font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.pillar p { font-size: .865rem; color: var(--sage); line-height: 1.6; }

/* ═══════ À PROPOS ═══════ */
.apropos { background: var(--cream); }
.apropos-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
/* mosaic */
.apropos-photos { position: relative; height: 520px; }
.ap-main {
  position: absolute; top: 0; left: 0; width: 72%; height: 75%;
  border-radius: var(--r-lg) var(--r-xl) var(--r-lg) var(--r-lg); overflow: hidden;
  box-shadow: 0 24px 64px rgba(21,39,38,.18);
}
.ap-main img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.ap-secondary {
  position: absolute; bottom: 0; right: 0; width: 55%; height: 50%;
  border-radius: var(--r-lg); overflow: hidden;
  border: 4px solid var(--cream); box-shadow: 0 12px 40px rgba(21,39,38,.14);
}
.ap-secondary img { width: 100%; height: 100%; object-fit: cover; }
.ap-sticker {
  position: absolute; top: 52%; left: 52%; transform: translate(-50%,-50%);
  background: var(--olive); color: var(--cream);
  font-family: var(--ff-d); font-size: 1.5rem; font-weight: 700; font-style: italic;
  padding: 10px 22px; border-radius: 999px; border: 3px solid var(--cream);
  white-space: nowrap; z-index: 10;
}
.apropos-text { display: flex; flex-direction: column; }
.apropos-text p { font-size: .94rem; color: var(--sage); line-height: 1.75; margin-bottom: 16px; }
.certif-badges { display: flex; flex-direction: column; gap: 8px; margin: 4px 0 20px; }
.certif-badge { display: flex; align-items: center; gap: 10px; padding: 12px 18px; background: rgba(21,39,38,.04); border: 1px solid rgba(21,39,38,.1); border-radius: var(--r-sm); font-size: .85rem; color: var(--sage); }
.cb-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--olive); flex-shrink: 0; }

/* ═══════ MÉTHODE ═══════ */
.methode { padding: 0; }
.methode-bg { background: var(--dark); padding: 96px 0 80px; }
.methode-top { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; margin-bottom: 56px; }
.methode-lead { font-size: clamp(.95rem, 1.5vw, 1.1rem); color: var(--sand); line-height: 1.75; align-self: center; padding-top: 64px; }
.methode-lead strong { color: var(--cream); }
.methode-photo { position: relative; height: 400px; overflow: hidden; margin: 0 0 64px; }
.methode-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.methode-photo-caption { position: absolute; bottom: 16px; right: 24px; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(243,239,220,.45); }
.methode-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.mc-card { padding: 28px 24px; border: 1px solid rgba(243,239,220,.1); border-radius: var(--r-md); background: rgba(243,239,220,.04); transition: background .3s, border-color .3s, transform .3s; }
.mc-card:hover { background: rgba(243,239,220,.09); border-color: rgba(243,239,220,.18); transform: translateY(-6px); }
.mc-n { display: block; font-family: var(--ff-d); font-size: 2.6rem; font-weight: 900; color: var(--olive); line-height: 1; margin-bottom: 14px; }
.mc-card h3 { font-family: var(--ff-d); font-size: .95rem; font-weight: 700; color: var(--cream); margin-bottom: 10px; }
.mc-card p { font-size: .82rem; color: var(--sage); line-height: 1.7; }
.methode-quote { padding-top: 56px; border-top: 1px solid rgba(243,239,220,.1); margin-top: 56px; text-align: center; }
.methode-quote blockquote { font-family: var(--ff-d); font-size: clamp(1rem, 2vw, 1.3rem); font-style: italic; font-weight: 300; color: var(--sand); line-height: 1.7; max-width: 600px; margin: 0 auto; }

/* ═══════ SERVICES — style v1 ═══════ */
.services { background: var(--cream); }
.services-header { margin-bottom: 40px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(21,39,38,.08);
  border-radius: var(--r-md);
  padding: 32px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .3s var(--ease), box-shadow .3s;
  position: relative;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(21,39,38,.12); }
.service-card.featured { background: var(--dark); color: var(--cream); border-color: var(--dark); }
.service-card-wide { grid-column: span 2; }
.service-card-cat { background: rgba(216,203,173,.25); border-color: rgba(21,39,38,.12); }
.service-icon { font-size: 1.8rem; }
.service-card h3 { font-family: var(--ff-d); font-size: 1.05rem; font-weight: 700; color: var(--dark); }
.service-card.featured h3 { color: var(--cream); }
.service-card p { font-size: .875rem; color: var(--sage); line-height: 1.7; }
.service-card.featured p { color: var(--sand); }
.service-card.featured p strong { color: var(--cream); }
.service-meta { display: flex; flex-direction: column; gap: 4px; margin-top: auto; }
.service-meta li { font-size: .8rem; color: var(--sage); padding: 4px 0; border-bottom: 1px solid rgba(21,39,38,.06); }
.service-card.featured .service-meta li { color: var(--sand); border-bottom-color: rgba(243,239,220,.1); }
.service-card.featured .service-meta li strong { color: var(--cream); }
.service-price { font-family: var(--ff-d); font-size: 1.4rem; font-weight: 900; color: var(--olive); margin-top: 4px; }
.service-card.featured .service-price { color: var(--sand); }
/* balade grid inside service card */
.balade-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 12px; }
.bg-item { padding: 14px; background: rgba(21,39,38,.04); border: 1px solid rgba(21,39,38,.08); border-radius: var(--r-sm); }
.bg-item h4 { font-family: var(--ff-d); font-size: .875rem; font-weight: 700; margin-bottom: 6px; }
.bg-item p { font-size: .78rem; color: var(--sage); margin-bottom: 6px; }
.bg-item strong { font-size: .8rem; color: var(--olive); }

/* ═══════ TARIFS / FORFAITS ═══════ */
.tarifs { background: var(--sand); }
.tarifs-header { margin-bottom: 48px; }
.forfaits-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.forfait-card {
  background: var(--cream); border: 1px solid rgba(21,39,38,.1);
  border-radius: var(--r-md); padding: 28px 22px;
  display: flex; flex-direction: column; gap: 8px; position: relative;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.forfait-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(21,39,38,.14); }
.ff-highlight { background: var(--dark); border-color: var(--dark); }
.ff-badge { display: inline-block; background: var(--olive); color: var(--cream); font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 3px 10px; border-radius: 999px; width: fit-content; margin-bottom: 4px; }
.forfait-top h3 { font-family: var(--ff-d); font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.ff-highlight .forfait-top h3 { color: var(--cream); }
.ff-prices { display: flex; align-items: baseline; gap: 8px; }
.ff-prices s { font-size: .9rem; color: var(--sage); }
.ff-prices strong { font-family: var(--ff-d); font-size: 1.7rem; font-weight: 900; color: var(--olive); }
.ff-highlight .ff-prices strong { color: var(--sand); }
.ff-sub { font-size: .78rem; color: var(--sage); line-height: 1.5; flex: 1; }
.ff-highlight .ff-sub { color: var(--sage); }
.ff-eco { display: inline-block; font-size: .72rem; font-weight: 700; background: rgba(106,115,51,.12); color: var(--olive); padding: 3px 10px; border-radius: 999px; width: fit-content; margin-top: 4px; }
.ff-highlight .ff-eco { background: rgba(243,239,220,.1); color: var(--sand); }
.tarifs-note { text-align: center; margin-top: 40px; font-size: .875rem; color: var(--sage); }
.tarifs-note a { color: var(--olive); font-weight: 600; text-decoration: underline; }

/* ═══════ AVIS ═══════ */
.avis { background: var(--cream); }
.avis-header { margin-bottom: 48px; display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.avis-google-row { margin-top: 32px; display: flex; justify-content: center; }
.avis-google-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 500; color: var(--sage);
  border: 1px solid rgba(21,39,38,.15); border-radius: 999px;
  padding: 8px 18px;
  transition: color .2s, border-color .2s;
  text-decoration: none;
}
.avis-google-link:hover { color: var(--olive); border-color: var(--olive); }
.avis-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; }
.avis-cards { display: flex; flex-direction: column; gap: 20px; }
.av-card { background: var(--white); border: 1px solid rgba(21,39,38,.08); border-radius: var(--r-md); padding: 28px; transition: transform .3s var(--ease), box-shadow .3s; }
.av-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(21,39,38,.1); }
.av-card-dark { background: var(--dark); border-color: var(--dark); }
.av-stars { color: #e8a838; font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.av-card blockquote { font-family: var(--ff-d); font-size: .95rem; font-style: italic; font-weight: 300; color: var(--dark); line-height: 1.7; margin-bottom: 20px; }
.av-card-dark blockquote { color: var(--sand); }
.av-author { display: flex; align-items: center; gap: 12px; }
.av-ava { width: 40px; height: 40px; background: var(--olive); color: var(--cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .9rem; flex-shrink: 0; }
.av-author div { display: flex; flex-direction: column; gap: 2px; }
.av-author strong { font-size: .875rem; color: var(--dark); }
.av-card-dark .av-author strong { color: var(--cream); }
.av-author span { font-size: .78rem; color: var(--sage); }
.avis-photo { position: sticky; top: 90px; border-radius: var(--r-lg) var(--r-xl) var(--r-lg) var(--r-lg); overflow: hidden; aspect-ratio: 3/4; box-shadow: 0 24px 64px rgba(21,39,38,.2); }
.avis-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* ═══════ CONTACT ═══════ */
.contact-wrap { background: var(--dark); padding: 96px 0; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.ct-left .section-title { margin-bottom: 20px; }
.ct-intro { color: var(--sand); font-size: .95rem; margin-bottom: 32px; line-height: 1.7; }
.ct-links { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.ct-link { display: flex; align-items: center; gap: 16px; background: rgba(243,239,220,.06); border: 1px solid rgba(243,239,220,.1); border-radius: var(--r-sm); padding: 16px 20px; color: var(--cream); transition: background .2s, transform .2s, border-color .2s; }
.ct-link:hover { background: rgba(243,239,220,.12); border-color: rgba(243,239,220,.2); transform: translateX(4px); }
.ct-link span:first-child { font-size: 1.3rem; flex-shrink: 0; }
.ct-link div { display: flex; flex-direction: column; gap: 2px; }
.ct-link strong { font-size: .875rem; color: var(--cream); }
.ct-link span:last-child { font-size: .78rem; color: var(--sage); }
.ct-loc { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--sage); padding: 12px 16px; border: 1px solid rgba(243,239,220,.08); border-radius: var(--r-sm); }
.ct-photo-card { border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,.35); }
.ct-photo-card img { width: 100%; height: 480px; object-fit: cover; object-position: center 20%; display: block; }

/* ═══════ FOOTER ═══════ */
.footer { background: var(--dark2); padding: 48px 0; }
.ft-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid rgba(243,239,220,.08); flex-wrap: wrap; gap: 20px; }
.ft-logo { height: 28px; filter: brightness(0) invert(.8); }
.ft-nav { display: flex; gap: 20px; flex-wrap: wrap; }
.ft-nav a { font-size: .8rem; color: var(--sage); transition: color .2s; }
.ft-nav a:hover { color: var(--cream); }
.ft-legal-links { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(243,239,220,.06); }
.ft-legal-links a { font-size: .78rem; color: var(--sage); transition: color .2s; text-decoration: underline; text-underline-offset: 3px; }
.ft-legal-links a:hover { color: var(--cream); }
.ft-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: .72rem; color: rgba(139,140,116,.5); }

/* ═══════ REVEAL ═══════ */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].visible { opacity: 1; transform: none; }

/* ═══════ LEGAL PAGES ═══════ */
.legal-page { max-width: 800px; margin: 120px auto 80px; padding: 0 32px; }
.legal-page h1 { font-family: var(--ff-d); font-size: 2.5rem; font-weight: 900; margin-bottom: 8px; }
.legal-page .lp-date { font-size: .8rem; color: var(--sage); margin-bottom: 48px; padding-bottom: 24px; border-bottom: 1px solid rgba(21,39,38,.1); }
.legal-page h2 { font-family: var(--ff-d); font-size: 1.3rem; font-weight: 700; margin: 36px 0 12px; }
.legal-page h3 { font-family: var(--ff-d); font-size: 1rem; font-weight: 700; margin: 24px 0 8px; color: var(--olive); }
.legal-page p { font-size: .9rem; color: var(--sage); line-height: 1.75; margin-bottom: 12px; }
.legal-page ul { margin: 8px 0 16px 20px; }
.legal-page ul li { font-size: .9rem; color: var(--sage); line-height: 1.75; list-style: disc; }
.legal-page a { color: var(--olive); text-decoration: underline; }
.legal-page strong { color: var(--dark); }

/* ═══════ RESPONSIVE ═══════ */
/* ═══════════════════════════════════════════
   RESPONSIVE — mobile-first breakpoints
   1280+ : desktop full
   1100   : wide tablet / small laptop
   960    : tablet landscape
   768    : tablet portrait / large phone
   520    : phone
   380    : small phone
════════════════════════════════════════════ */

/* ── 1100px ── */
@media (max-width: 1100px) {
  /* forfaits : 5 → 3 cols */
  .forfaits-grid { grid-template-columns: repeat(3, 1fr); }
  /* méthode cards 4 → 2 */
  .methode-cards { grid-template-columns: repeat(2, 1fr); }
  /* hero logo smaller */
  .hero-logo-img { max-width: 420px; }
}

/* ── 960px — tablet landscape ── */
@media (max-width: 960px) {
  /* hero : keep 2 cols but tighter */
  .hero-inner { gap: 32px; }
  .hero-photo-wrap { max-width: 340px; }

  /* à propos : stack */
  .apropos-inner { grid-template-columns: 1fr; gap: 40px; }
  .apropos-photos {
    height: auto;
    display: flex;
    flex-direction: row;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
  }
  .ap-main { position: static; width: 60%; height: 320px; }
  .ap-secondary { position: static; width: 40%; height: 320px; border: none; }

  /* méthode top : stack */
  .methode-top { grid-template-columns: 1fr; gap: 24px; }
  .methode-lead { padding-top: 0; }
  .methode-photo { height: 320px; }

  /* services : 3 → 2 cols */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card-wide { grid-column: span 2; }

  /* forfaits : 5 → 3 cols */
  .forfaits-grid { grid-template-columns: repeat(3, 1fr); }

  /* avis : side by side → stack */
  .avis-layout { grid-template-columns: 1fr; gap: 32px; }
  .avis-photo { position: static; aspect-ratio: 16/9; border-radius: var(--r-lg); }

  /* contact : stack */
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .ct-photo-card img { height: 320px; }
}

/* ── 768px — tablet portrait / large phone ── */
@media (max-width: 768px) {
  /* nav */
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  /* global spacing */
  .section { padding: 64px 0; }
  .container { padding: 0 24px; }

  /* hero : 2 cols → stack, photo kept as bottom banner */
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 16px;
    padding-right: 16px;
    gap: 32px;
  }
  .hero-text { align-items: center; order: 1; }
  .hero-visual { order: 2; display: flex; }
  .hero-logo-img { max-width: 64vw; }
  .hero-photo-wrap {
    max-width: 100%;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--r-lg);
    animation: none;
  }
  .hero-photo { object-position: center 15%; }
  .hero-slogan { text-align: left; margin: 0 auto 28px; max-width: 400px; }
  .hero-tags { justify-content: center; }
  .hero-actions { flex-direction: column; width: 100%; max-width: 300px; }
  .hero-actions .btn { justify-content: center; width: 100%; }

  /* pillars : 4 → 2 */
  .pillars-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .pillar { padding: 16px; }

  /* à propos — stack photos vertically on mobile */
  .apropos-photos {
    height: auto;
    min-height: 0;
    display: block;
  }
  .ap-main {
    position: static;
    width: 100%;
    height: 320px;
    border-radius: var(--r-lg);
  }
  .ap-main img { object-position: center 20%; }
  .ap-secondary { display: none; }

  /* avis */
  .avis-photo { aspect-ratio: 4/3; }

  /* contact photo */
  .ct-photo-card img { height: 260px; }
  .methode-bg { padding: 64px 0 48px; }
  .methode-cards { grid-template-columns: 1fr 1fr; gap: 14px; }
  .mc-card { padding: 20px 16px; }
  .mc-n { font-size: 2rem; }
  .methode-photo { height: 240px; }
  .methode-quote blockquote { font-size: .95rem; }

  /* services : 2 → 1 col */
  .services-grid { grid-template-columns: 1fr; }
  .service-card-wide { grid-column: span 1; }
  .balade-grid { grid-template-columns: 1fr; gap: 10px; }

  /* forfaits : 3 → 2 */
  .forfaits-grid { grid-template-columns: repeat(2, 1fr); }

  /* avis */
  .avis-photo { aspect-ratio: 4/3; }

  /* footer */
  .ft-top { flex-direction: column; align-items: flex-start; gap: 16px; }
  .ft-bottom { flex-direction: column; gap: 6px; }
  .ft-legal-links { gap: 12px; }
}

/* ── 520px — phone ── */
@media (max-width: 520px) {
  .container { padding: 0 16px; }

  /* hero */
  .hero-logo-img { max-width: 58vw; }
  .hero-role { font-size: .75rem; }
  .hero-photo-wrap { aspect-ratio: 3/2; }

  /* pillars : 2 → 2 (keep, just tighten) */
  .pillars-grid { gap: 8px; }
  .pillar h3 { font-size: .9rem; }
  .pillar p { font-size: .8rem; }

  /* à propos */
  /* à propos — photo stays full width */
  .ap-main { height: 260px; }
  .certif-badge { padding: 10px 14px; font-size: .8rem; }

  /* méthode */
  .methode-cards { grid-template-columns: 1fr; }
  .methode-top { gap: 16px; }
  .methode-lead { font-size: .9rem; }

  /* section title */
  .section-title { font-size: clamp(1.7rem, 7vw, 2.4rem); }

  /* services */
  .service-card { padding: 24px 20px; }
  .service-icon { font-size: 1.5rem; }

  /* forfaits : 2 → 1 */
  .forfaits-grid { grid-template-columns: 1fr; }

  /* avis */
  .av-card { padding: 20px; }
  .av-card blockquote { font-size: .88rem; }

  /* contact */
  .contact-wrap { padding: 64px 0; }
  .ct-photo-card img { height: 260px; }
  .ct-links { gap: 8px; }
  .ct-link { padding: 12px 14px; }
  .ct-link strong { font-size: .8rem; }

  /* footer */
  .ft-nav { gap: 12px; }
  .ft-nav a { font-size: .75rem; }
}

/* ── 380px — small phone ── */
@media (max-width: 380px) {
  .container { padding: 0 12px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .hero-tags { flex-direction: column; align-items: center; gap: 6px; }
  .section { padding: 48px 0; }
  .hero-logo-img { max-width: 55vw; }
  .service-card { padding: 20px 16px; }
  .forfait-card { padding: 20px 16px; }
  .ff-prices strong { font-size: 1.4rem; }
}
