  :root {
    --sage-deep: #5a6b54;
    --sage: #8a9a7b;
    --sage-soft: #b8c4ad;
    --sage-pale: #e8ebe2;
    --terracotta: #c8755a;
    --terracotta-soft: #e4a48e;
    --terracotta-text: #964828;
    --cream: #f5f0e8;
    --beige: #ede5d6;
    --sand: #d9cfb8;
    --ink: #2d2a26;
    --ink-soft: #5a544c;
    --white: #fbf9f4;
    --shadow-soft: 0 2px 20px rgba(45, 42, 38, 0.06);
    --shadow-med: 0 8px 40px rgba(45, 42, 38, 0.1);
    --shadow-deep: 0 20px 60px rgba(45, 42, 38, 0.15);
    --display: 'Fraunces', Georgia, serif;
    --body: 'DM Sans', system-ui, sans-serif;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--body);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* Subtle paper texture overlay */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.18 0 0 0 0 0.16 0 0 0 0 0.15 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    z-index: 1;
    opacity: 0.6;
  }

  h1, h2, h3, h4 { font-family: var(--display); font-weight: 400; letter-spacing: -0.01em; line-height: 1.15; }
  h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
  h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
  h3 { font-size: clamp(1.4rem, 2.5vw, 1.85rem); }
  p { font-size: clamp(0.98rem, 1.1vw, 1.075rem); color: var(--ink-soft); text-align: justify; text-align-last: left; hyphens: auto; }

  .italic { font-style: italic; font-weight: 300; }

  /* ===== NAV ===== */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.2rem 3rem;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(245, 240, 232, 0.78);
    border-bottom: 1px solid rgba(138, 154, 123, 0.15);
    transition: padding 0.3s ease;
  }
  nav.scrolled { padding: 0.8rem 3rem; }
  .nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
  .logo {
    font-family: var(--display);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--sage-deep);
    letter-spacing: 0.02em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  .logo-mark {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--terracotta);
    display: grid;
    place-items: center;
    color: var(--cream);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0;
  }
  .nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
    align-items: center;
  }
  .nav-links a {
    color: var(--ink);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 400;
    position: relative;
    transition: color 0.2s;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--terracotta);
    transition: width 0.3s ease;
  }
  .nav-links a:hover { color: var(--terracotta); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    background: var(--ink);
    color: var(--cream) !important;
    padding: 0.7rem 1.4rem;
    border-radius: 100px;
    font-size: 0.88rem !important;
  }
  .nav-cta:hover { background: var(--terracotta); }
  .nav-cta::after { display: none; }

  .menu-toggle { display: none; }

  /* ===== HERO ===== */
  .hero {
    position: relative;
    min-height: 100vh;
    padding: 9rem 3rem 4rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    overflow: hidden;
  }

  .hero-bg-shape {
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--sage-pale), transparent 70%);
    top: -200px; right: -200px;
    z-index: 0;
  }
  .hero-bg-shape-2 {
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 117, 90, 0.08), transparent 70%);
    bottom: -100px; left: -100px;
    z-index: 0;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--sage-deep);
    margin-bottom: 2rem;
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    border-radius: 100px;
    background: rgba(184, 196, 173, 0.25);
  }
  .hero-eyebrow::before {
    content: '';
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--terracotta);
    display: inline-block;
  }

  h1.hero-title {
    margin-bottom: 1.8rem;
  }
  h1.hero-title .accent {
    font-style: italic;
    color: var(--terracotta);
    font-weight: 300;
  }
  h1.hero-title .underline {
    position: relative;
    display: inline-block;
  }
  h1.hero-title .underline::after {
    content: '';
    position: absolute;
    bottom: 0.05em; left: 0; right: 0;
    height: 0.35em;
    background: rgba(200, 117, 90, 0.18);
    z-index: -1;
  }

  .hero-lede {
    font-size: 1.12rem;
    margin-bottom: 2.5rem;
    max-width: 540px;
    color: var(--ink-soft);
  }

  .hero-paths {
    display: grid;
    gap: 0.85rem;
  }
  .path-pill {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.4rem;
    background: var(--white);
    border: 1px solid rgba(138, 154, 123, 0.2);
    border-radius: 16px;
    text-decoration: none;
    color: var(--ink);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.3, 1);
    position: relative;
    overflow: hidden;
  }
  .path-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--sage-pale), transparent);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .path-pill:hover {
    transform: translateX(6px);
    border-color: var(--terracotta);
    box-shadow: var(--shadow-med);
  }
  .path-pill:hover::before { opacity: 0.6; }
  .path-pill > * { position: relative; z-index: 1; }

  .path-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--sage-pale);
    color: var(--sage-deep);
    flex-shrink: 0;
  }
  .path-pill:nth-child(2) .path-icon { background: rgba(200, 117, 90, 0.15); color: var(--terracotta); }
  .path-pill:nth-child(3) .path-icon { background: var(--beige); color: var(--ink); }

  .path-pill-text { flex: 1; }
  .path-pill-text strong {
    display: block;
    font-family: var(--display);
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 0.15rem;
  }
  .path-pill-text span {
    font-size: 0.85rem;
    color: var(--ink-soft);
  }
  .path-arrow {
    color: var(--ink-soft);
    transition: transform 0.3s, color 0.3s;
  }
  .path-pill:hover .path-arrow {
    transform: translateX(4px);
    color: var(--terracotta);
  }

  /* HERO VISUAL */
  .hero-visual {
    position: relative;
    z-index: 1;
    height: 600px;
  }

  .hero-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-deep);
  }
  .hero-card-1 {
    width: 70%;
    aspect-ratio: 3/4;
    top: 0; right: 0;
    background: linear-gradient(135deg, #d4b89d, #8a9a7b);
  }
  .hero-card-2 {
    width: 55%;
    aspect-ratio: 4/5;
    bottom: 0; left: 0;
    background: linear-gradient(135deg, var(--terracotta-soft), var(--terracotta));
  }
  .hero-card-3 {
    width: 42%;
    aspect-ratio: 1;
    top: 38%; left: 36%;
    background: linear-gradient(135deg, #d4b89d, #8a7140);
    box-shadow: var(--shadow-deep);
    border: 3px solid var(--cream);
  }

  /* SVG illustrations inside cards */
  .hero-card svg { width: 100%; height: 100%; display: block; }

  /* Images injectées via data-image-key (mapping JSON) */
  [data-image-key] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  [data-image-key]:not([src]) { display: none; }
  .logo-mark img[data-image-key] { object-fit: cover; }
  .logo-mark.has-image { background: transparent; padding: 0; overflow: hidden; }
  .cert-badge img[data-image-key] {
    height: 28px;
    width: auto;
    object-fit: contain;
    display: block;
  }
  .cert-badge.cert-logo {
    padding: 0.4rem 0.7rem;
    background: var(--cream);
    display: inline-flex;
    align-items: center;
    border-radius: 6px;
  }

  /* ===== TRUST BAR ===== */
  .trust-bar {
    background: var(--ink);
    color: var(--cream);
    padding: 1.2rem 3rem;
    position: relative;
    z-index: 2;
  }
  .trust-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.88rem;
    color: rgba(245, 240, 232, 0.85);
  }
  .trust-item svg { color: var(--terracotta-soft); flex-shrink: 0; }

  /* ===== SECTION GENERAL ===== */
  section { position: relative; }

  .section-padding {
    padding: 7rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .section-header { margin-bottom: 4rem; max-width: 720px; }
  .section-eyebrow {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--terracotta-text);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .section-eyebrow::before {
    content: '';
    width: 32px; height: 1px;
    background: var(--terracotta-text);
  }
  .section-title { margin-bottom: 1.4rem; }
  .section-lede { font-size: 1.1rem; max-width: 580px; }

  /* ===== POUR QUI - 3 OFFERINGS ===== */
  #pour-qui { background: var(--white); }

  .offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .offer-card {
    background: var(--cream);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    border: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.3, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
  }
  .offer-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--card-accent, var(--sage));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
  }
  .offer-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-deep);
    border-color: rgba(138, 154, 123, 0.3);
  }
  .offer-card:hover::before { transform: scaleX(1); }

  .offer-card.particuliers { --card-accent: var(--sage); }
  .offer-card.entreprises { --card-accent: var(--terracotta); }
  .offer-card.hotels { --card-accent: #b89968; }

  .offer-illust {
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    border-radius: 14px;
    margin-bottom: 1.8rem;
    overflow: hidden;
    background: var(--sage-pale);
    position: relative;
  }
  .offer-illust img[data-image-key] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .offer-card.entreprises .offer-illust { background: rgba(200, 117, 90, 0.1); }
  .offer-card.hotels .offer-illust { background: rgba(184, 153, 104, 0.12); }

  .offer-illust svg { width: 100%; height: 100%; display: block; }

  .offer-tag {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    margin-bottom: 0.9rem;
    font-weight: 500;
    background: var(--sage-pale);
    color: var(--sage-deep);
    align-self: flex-start;
  }
  .offer-card.entreprises .offer-tag { background: rgba(200, 117, 90, 0.15); color: var(--terracotta-text); }
  .offer-card.hotels .offer-tag { background: rgba(184, 153, 104, 0.18); color: #8a7140; }

  .offer-card h3 { margin-bottom: 1rem; }
  .offer-card p { margin-bottom: 1.6rem; flex: 1; }

  .offer-list {
    list-style: none;
    margin-bottom: 1.8rem;
  }
  .offer-list li {
    font-size: 0.92rem;
    padding: 0.45rem 0 0.45rem 1.5rem;
    position: relative;
    color: var(--ink-soft);
    border-bottom: 1px dashed rgba(138, 154, 123, 0.2);
  }
  .offer-list li:last-child { border-bottom: none; }
  .offer-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--card-accent);
    font-weight: 600;
  }

  .offer-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--ink);
    font-weight: 500;
    font-size: 0.95rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(45, 42, 38, 0.1);
    margin-top: auto;
  }
  .offer-cta svg { transition: transform 0.3s; }
  .offer-card:hover .offer-cta svg { transform: translateX(4px); }

  /* ===== DETAIL SECTIONS ===== */
  .detail-section {
    padding: 7rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .detail-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: start;
  }
  .detail-grid.reverse { grid-template-columns: 1.1fr 0.9fr; }

  .detail-visual {
    position: sticky;
    top: 120px;
    aspect-ratio: 3/4;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-deep);
  }

  .detail-visual-particuliers {
    background: linear-gradient(135deg, var(--sage-soft), var(--sage-deep));
  }
  .detail-visual-entreprises {
    background: linear-gradient(135deg, var(--terracotta-soft), var(--terracotta));
  }
  .detail-visual-hotels {
    background: linear-gradient(135deg, #d4b89d, #8a7140);
  }

  /* Service cards inside detail */
  .service-list {
    display: grid;
    gap: 1rem;
    margin: 2.5rem 0;
  }
  .service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.6rem 1.8rem;
    border: 1px solid rgba(138, 154, 123, 0.15);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.2rem;
    align-items: center;
    transition: all 0.3s;
  }
  .service-card:hover {
    border-color: var(--terracotta);
    transform: translateX(4px);
  }
  a.service-card-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
  }
  .service-num {
    font-family: var(--display);
    font-style: italic;
    font-size: 1.6rem;
    color: var(--terracotta);
    width: 42px;
    text-align: center;
  }
  .service-info h4 { font-size: 1.1rem; margin-bottom: 0.2rem; font-weight: 500; }
  .service-info p { font-size: 0.88rem; margin: 0; }
  .service-price {
    font-family: var(--display);
    font-size: 1.35rem;
    color: var(--ink);
    text-align: right;
  }
  .service-price small {
    display: block;
    font-family: var(--body);
    font-size: 0.72rem;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 0.2rem;
  }

  .package-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0 2.5rem;
  }
  .package {
    background: var(--ink);
    color: var(--cream);
    padding: 1.6rem;
    border-radius: 14px;
    position: relative;
  }
  .package h5 {
    font-family: var(--display);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--terracotta-soft);
    margin-bottom: 0.4rem;
  }
  .package-desc { font-size: 0.85rem; color: rgba(245, 240, 232, 0.7); margin-bottom: 0.8rem; }
  .package-price {
    font-family: var(--display);
    font-size: 1.6rem;
  }
  .package-price del {
    font-size: 0.9rem;
    color: rgba(245, 240, 232, 0.65);
    margin-right: 0.5rem;
    text-decoration: line-through;
  }

  /* Format options for B2B */
  .format-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
  }
  .format-card {
    padding: 1.5rem;
    border-radius: 14px;
    background: var(--cream);
    border: 1px solid rgba(138, 154, 123, 0.18);
  }
  .format-card-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--terracotta);
    color: var(--cream);
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
  }
  .format-card h5 {
    font-family: var(--display);
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
  }
  .format-card p { font-size: 0.88rem; margin: 0; }

  /* CTA buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 1.8rem;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.3, 1);
    border: 1px solid transparent;
    cursor: pointer;
    font-family: inherit;
  }
  .btn-primary {
    background: var(--ink);
    color: var(--cream);
  }
  .btn-primary:hover {
    background: var(--terracotta);
    transform: translateY(-2px);
    box-shadow: var(--shadow-med);
  }
  .btn-secondary {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
  }
  .btn-secondary:hover {
    background: var(--ink);
    color: var(--cream);
  }
  .btn-arrow {
    transition: transform 0.3s;
  }
  .btn:hover .btn-arrow { transform: translateX(4px); }

  .btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }

  /* ===== ZONE GEOGRAPHIQUE ===== */
  #zones {
    background: var(--ink);
    color: var(--cream);
    padding: 6rem 3rem;
    position: relative;
    overflow: hidden;
  }
  #zones::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 20% 30%, rgba(200, 117, 90, 0.15), transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(138, 154, 123, 0.12), transparent 50%);
  }
  .zones-inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  #zones .section-eyebrow { color: var(--terracotta-soft); }
  #zones .section-eyebrow::before { background: var(--terracotta-soft); }
  #zones h2 { color: var(--cream); }
  #zones .section-lede { color: rgba(245, 240, 232, 0.75); }

  .zones-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
  }

  .zones-list {
    display: grid;
    gap: 0.8rem;
  }
  .zone-item {
    padding: 1.4rem 1.8rem;
    background: rgba(245, 240, 232, 0.05);
    border: 1px solid rgba(245, 240, 232, 0.1);
    border-radius: 14px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.2rem;
    align-items: center;
    transition: all 0.3s;
  }
  .zone-item:hover {
    background: rgba(245, 240, 232, 0.08);
    border-color: var(--terracotta-soft);
  }
  .zone-num {
    font-family: var(--display);
    font-style: italic;
    color: var(--terracotta-soft);
    font-size: 1.4rem;
  }
  .zone-info strong {
    display: block;
    font-family: var(--display);
    font-size: 1.2rem;
    color: var(--cream);
    margin-bottom: 0.15rem;
  }
  .zone-info span {
    font-size: 0.85rem;
    color: rgba(245, 240, 232, 0.6);
  }
  .zone-distance {
    font-size: 0.82rem;
    color: rgba(245, 240, 232, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  /* Map illustration */
  .map-visual {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(245, 240, 232, 0.04);
    border: 1px solid rgba(245, 240, 232, 0.08);
    padding: 2rem;
  }

  /* ===== METHODE ===== */
  #methode {
    background: var(--cream);
    padding: 7rem 3rem;
  }
  .methode-inner { max-width: 1400px; margin: 0 auto; }

  .methode-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
  }
  .methode-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 5%;
    right: 5%;
    height: 1px;
    background: repeating-linear-gradient(to right, var(--sage) 0, var(--sage) 6px, transparent 6px, transparent 12px);
  }
  .step-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 18px;
    border: 1px solid rgba(138, 154, 123, 0.15);
    position: relative;
    z-index: 1;
  }
  .step-num {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--cream);
    border: 2px solid var(--terracotta);
    color: var(--terracotta);
    font-family: var(--display);
    font-size: 1.8rem;
    font-style: italic;
    display: grid;
    place-items: center;
    margin: 0 auto 1.2rem;
  }
  .step-card h4 {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 0.6rem;
    font-weight: 500;
  }
  .step-card p {
    text-align: center;
    font-size: 0.9rem;
    margin: 0;
  }

  /* ===== TEMOIGNAGES ===== */
  #temoignages {
    padding: 7rem 3rem;
    background: var(--white);
  }
  .testi-inner { max-width: 1400px; margin: 0 auto; }

  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .testi-card {
    padding: 2.2rem;
    border-radius: 20px;
    background: var(--cream);
    position: relative;
    border: 1px solid rgba(138, 154, 123, 0.12);
  }
  .testi-card::before {
    content: '"';
    position: absolute;
    top: 0.5rem; left: 1.5rem;
    font-family: var(--display);
    font-size: 5rem;
    line-height: 1;
    color: var(--terracotta);
    opacity: 0.25;
  }
  .testi-tag {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    padding: 0.25rem 0.7rem;
    border-radius: 100px;
    background: var(--sage-pale);
    color: var(--sage-deep);
    margin-bottom: 1rem;
    font-weight: 500;
  }
  .testi-card.entreprises .testi-tag { background: rgba(200, 117, 90, 0.15); color: var(--terracotta); }
  .testi-card.hotels .testi-tag { background: rgba(184, 153, 104, 0.18); color: #8a7140; }

  .testi-text {
    font-family: var(--display);
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--ink);
    margin-bottom: 1.5rem;
    font-weight: 400;
  }
  .testi-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(138, 154, 123, 0.18);
  }
  .testi-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--sage);
    color: var(--cream);
    display: grid;
    place-items: center;
    font-family: var(--display);
    font-style: italic;
    font-size: 1rem;
  }
  .testi-author-info strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 500;
  }
  .testi-author-info span {
    font-size: 0.8rem;
    color: var(--ink-soft);
  }

  /* ===== FAQ ===== */
  #faq {
    padding: 7rem 3rem;
    background: var(--beige);
  }
  .faq-inner {
    max-width: 900px;
    margin: 0 auto;
  }
  .faq-item {
    border-bottom: 1px solid rgba(45, 42, 38, 0.12);
    padding: 1.8rem 0;
    cursor: pointer;
  }
  .faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    font-family: var(--display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--ink);
  }
  .faq-toggle {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--cream);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: transform 0.3s, background 0.3s;
  }
  .faq-item.open .faq-toggle {
    transform: rotate(45deg);
    background: var(--terracotta);
    color: var(--cream);
  }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .faq-item.open .faq-a { max-height: 300px; }
  .faq-a p {
    padding-top: 1.2rem;
    color: var(--ink-soft);
  }

  /* ===== CONTACT / DEVIS ===== */
  #contact {
    padding: 7rem 3rem;
    background: var(--sage-deep);
    color: var(--cream);
    position: relative;
    overflow: hidden;
  }
  #contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 80% 20%, rgba(200, 117, 90, 0.18), transparent 50%);
  }
  .contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }
  #contact .section-eyebrow { color: var(--terracotta-soft); }
  #contact .section-eyebrow::before { background: var(--terracotta-soft); }
  #contact h2 { color: var(--cream); }
  #contact p { color: rgba(245, 240, 232, 0.85); }

  .contact-info {
    margin-top: 2.5rem;
  }
  .contact-line {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(245, 240, 232, 0.1);
  }
  .contact-line:last-child { border-bottom: none; }
  .contact-line svg {
    color: var(--terracotta-soft);
    flex-shrink: 0;
  }
  .contact-line-info strong {
    display: block;
    font-size: 1rem;
    color: var(--cream);
    margin-bottom: 0.15rem;
  }
  .contact-line-info span {
    font-size: 0.85rem;
    color: rgba(245, 240, 232, 0.65);
  }

  .contact-form {
    background: rgba(245, 240, 232, 0.05);
    border: 1px solid rgba(245, 240, 232, 0.1);
    border-radius: 22px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .form-field { margin-bottom: 1rem; }
  .form-field label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(245, 240, 232, 0.7);
    margin-bottom: 0.5rem;
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    width: 100%;
    background: rgba(245, 240, 232, 0.08);
    border: 1px solid rgba(245, 240, 232, 0.15);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    color: var(--cream);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s, background 0.2s;
  }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    outline: none;
    border-color: var(--terracotta-soft);
    background: rgba(245, 240, 232, 0.12);
  }
  .form-field textarea { resize: vertical; min-height: 100px; }

  .form-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    background: rgba(245, 240, 232, 0.05);
    padding: 0.35rem;
    border-radius: 100px;
  }
  .form-tab {
    flex: 1;
    padding: 0.6rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    color: rgba(245, 240, 232, 0.7);
    border: none;
    background: transparent;
    font-family: inherit;
  }
  .form-tab.active {
    background: var(--terracotta);
    color: var(--cream);
  }
  .form-submit {
    width: 100%;
    padding: 1.1rem;
    background: var(--cream);
    color: var(--ink);
    border: none;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: all 0.3s;
    font-family: inherit;
  }
  .form-submit:hover {
    background: var(--terracotta);
    color: var(--cream);
  }

  /* ===== FOOTER ===== */
  footer {
    background: var(--ink);
    color: var(--cream);
    padding: 4rem 3rem 2rem;
  }
  .footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }
  .footer-col h5 {
    font-family: var(--display);
    font-size: 1rem;
    font-style: italic;
    color: var(--terracotta-soft);
    margin-bottom: 1.2rem;
  }
  .footer-col ul { list-style: none; }
  .footer-col li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: rgba(245, 240, 232, 0.7);
  }
  .footer-col a {
    color: rgba(245, 240, 232, 0.7);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--terracotta-soft); }

  .footer-brand p {
    font-size: 0.92rem;
    color: rgba(245, 240, 232, 0.7);
    margin-top: 1rem;
    max-width: 320px;
  }
  .footer-socials {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
  }
  .footer-socials a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(245, 240, 232, 0.08);
    display: grid;
    place-items: center;
    transition: all 0.3s;
  }
  .footer-socials a:hover {
    background: var(--terracotta);
    transform: translateY(-2px);
  }

  .footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 240, 232, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgba(245, 240, 232, 0.65);
  }
  .footer-certs { display: flex; gap: 1.5rem; align-items: center; }
  .cert-badge {
    padding: 0.35rem 0.8rem;
    border: 1px solid rgba(245, 240, 232, 0.2);
    border-radius: 100px;
    font-size: 0.78rem;
  }

  /* ===== ANIMATIONS ===== */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .reveal {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
  }
  .reveal.d1 { animation-delay: 0.1s; }
  .reveal.d2 { animation-delay: 0.25s; }
  .reveal.d3 { animation-delay: 0.4s; }
  .reveal.d4 { animation-delay: 0.55s; }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  .hero-card-3 { animation: float 5s ease-in-out infinite; }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    /* NAV : menu burger */
    nav, nav.scrolled { padding: 1rem 1.5rem; }
    .menu-toggle {
      display: grid;
      place-items: center;
      width: 42px; height: 42px;
      border-radius: 12px;
      border: 1px solid rgba(138, 154, 123, 0.3);
      background: var(--white);
      color: var(--ink);
      cursor: pointer;
    }
    .nav-links {
      position: absolute;
      top: 100%; left: 0; right: 0;
      flex-direction: column;
      align-items: stretch;
      gap: 0.4rem;
      padding: 1.2rem 1.5rem 1.6rem;
      background: var(--cream);
      border-bottom: 1px solid rgba(138, 154, 123, 0.15);
      box-shadow: var(--shadow-med);
      transform: translateY(-12px);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s ease, transform 0.25s ease;
    }
    .nav-links.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }
    .nav-links li { width: 100%; }
    .nav-links a {
      display: block;
      padding: 0.85rem 1rem;
      border-radius: 10px;
      font-size: 1rem;
      text-align: center;
    }
    .nav-links a::after { display: none; }
    .nav-links a:hover { background: rgba(138, 154, 123, 0.1); color: var(--ink); }
    .nav-links .nav-cta {
      margin-top: 0.4rem;
      text-align: center;
    }
    .nav-links .nav-cta:hover { background: var(--terracotta); color: var(--cream) !important; }

    /* Hero, sections, layouts */
    .hero { grid-template-columns: 1fr; padding: 8rem 1.5rem 4rem; gap: 1.5rem; }
    .hero-visual { height: 450px; }

    /* Mobile : visuel hero entre le lede et les CTA paths */
    .hero-content { display: contents; }
    .hero-eyebrow { order: 1; margin-bottom: 0; }
    h1.hero-title { order: 2; margin-bottom: 0; }
    .hero-lede { order: 3; margin-bottom: 0.5rem; }
    .hero-visual { order: 4; margin: 0.5rem 0; }
    .hero-paths { order: 5; }
    .trust-bar { padding: 1.2rem 1.5rem; }
    .trust-inner { gap: 1.2rem 2rem; justify-content: center; }
    .section-padding { padding: 5rem 1.5rem; }
    .detail-section { padding: 5rem 1.5rem; }
    #methode { padding: 5rem 1.5rem; }
    #contact { padding: 5rem 1.5rem; }
    .offers-grid { grid-template-columns: 1fr; }
    .detail-grid, .detail-grid.reverse { grid-template-columns: 1fr; gap: 3rem; }
    .detail-visual { position: static; aspect-ratio: 5/3; max-height: 400px; }
    .zones-grid { grid-template-columns: 1fr; gap: 2rem; }
    .methode-steps { grid-template-columns: repeat(2, 1fr); }
    .methode-steps::before { display: none; }
    .qui-grid { grid-template-columns: 1fr; }
    .naturo-packs { grid-template-columns: 1fr; }
    .format-grid { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .contact-inner { grid-template-columns: 1fr; gap: 2rem; }

    /* Mobile : intro → formulaire → infos contact */
    .contact-intro { display: contents; }
    .contact-intro .section-eyebrow { order: 1; }
    .contact-intro .section-title { order: 2; }
    .contact-intro > p { order: 3; }
    .contact-form { order: 4; }
    .contact-info { order: 5; margin-top: 0; }
    .footer-inner { grid-template-columns: 1fr 1fr; padding: 0 1.5rem; gap: 2.5rem; }
    footer { padding: 4rem 0 2rem; }
  }

  @media (max-width: 720px) {
    /* HERO mobile : visuel plus compact, deux cartes */
    .hero { padding: 7rem 1.2rem 3rem; gap: 2.5rem; }
    .hero-visual { height: 380px; }
    .hero-card-1 { width: 75%; }
    .hero-card-2 { width: 60%; }
    .hero-lede { font-size: 1rem; margin-bottom: 2rem; }
    .hero-eyebrow { font-size: 0.72rem; }

    /* TRUST BAR : items en colonne, lisible */
    .trust-bar { padding: 1rem 1.2rem; }
    .trust-inner { flex-direction: column; gap: 0.7rem; }
    .trust-item { font-size: 0.82rem; }

    /* SECTIONS : padding réduit */
    .section-padding,
    .detail-section,
    #methode, #contact, #google-reviews, #blog, #instagram, #faq {
      padding-left: 1.2rem;
      padding-right: 1.2rem;
      padding-top: 4rem;
      padding-bottom: 4rem;
    }

    /* DETAIL : visuel + texte */
    .detail-visual { max-height: 320px; }

    /* OFFER CARDS : padding réduit */
    .offer-card { padding: 2rem 1.5rem; }
    .offer-illust { aspect-ratio: 16 / 10; }

    /* SERVICE CARDS : empilement vertical */
    .service-card {
      grid-template-columns: auto 1fr;
      grid-template-rows: auto auto;
      gap: 0.4rem 1rem;
      padding: 1.3rem 1.4rem;
    }
    .service-num { grid-row: 1 / 3; }
    .service-price {
      grid-column: 2;
      text-align: left;
      font-size: 1.15rem;
      margin-top: 0.3rem;
    }
    .service-price small { display: inline-block; margin-top: 0; margin-left: 0.4rem; }

    /* PACKAGES réflexo */
    .package-row { grid-template-columns: 1fr; }

    /* NATURO PACKS : padding + foot */
    .naturo-pack { padding: 1.5rem 1.4rem 1.3rem; }
    .naturo-pack-head h4 { font-size: 1.15rem; }
    .naturo-pack-foot { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
    .naturo-pack-foot .btn { width: 100%; justify-content: center; }
    .naturo-pack-badge { left: 1.4rem; font-size: 0.65rem; }

    /* QUI JE SUIS */
    .qui-card { padding: 1.8rem 1.5rem; }
    .qui-num { font-size: 2rem; }
    .qui-card h4 { font-size: 1.15rem; }

    /* FORMAT CARDS (entreprises) */
    .format-card { padding: 1.3rem; }

    /* CTA emphasis */
    .cta-emphasis { padding-top: 1.6rem; margin-top: 2rem; }
    .cta-emphasis::before { font-size: 0.85rem; left: 0.8rem; }
    .btn-row { gap: 0.7rem; }
    .btn, .btn-lg { width: 100%; justify-content: center; padding: 0.95rem 1.4rem; font-size: 0.95rem; }
    .btn-sm { width: auto; padding: 0.7rem 1.2rem; }

    /* PREST GROUP titles */
    .prest-group-title { font-size: 1.2rem; margin-top: 2rem; }

    /* CONTACT */
    .contact-form { padding: 1.6rem 1.3rem; }
    .form-row { grid-template-columns: 1fr; gap: 0.6rem; margin-bottom: 0.6rem; }
    .form-tabs { flex-wrap: wrap; }
    .form-tab { font-size: 0.78rem; padding: 0.55rem 0.6rem; }
    .contact-line { gap: 0.8rem; padding: 0.85rem 0; }
    .contact-line-info strong { font-size: 0.95rem; }

    /* FOOTER : 1 colonne */
    .footer-inner {
      grid-template-columns: 1fr;
      gap: 2rem;
      padding: 0 1.2rem;
      margin-bottom: 2rem;
    }
    footer { padding: 3.5rem 0 1.5rem; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 1.2rem; padding-top: 1.5rem; }
    .footer-certs { justify-content: center; flex-wrap: wrap; gap: 1rem; }

    /* FAQ */
    .faq-q { font-size: 0.95rem; padding: 1.1rem 1.2rem; }
    .faq-a { padding: 0 1.2rem 1.1rem; }
  }

  .form-note {
    font-size: 0.9rem;
    color: var(--ink-soft);
    margin-top: 1rem;
    text-align: center;
    min-height: 1.2em;
    padding: 0.6rem 0.8rem;
    border-radius: 10px;
    transition: background 0.3s, color 0.3s;
  }
  .form-note:empty { display: none; }
  .form-note-success {
    background: var(--sage-pale);
    color: var(--sage-deep);
    font-weight: 500;
  }
  .form-note-error {
    background: rgba(200, 117, 90, 0.12);
    color: var(--terracotta);
    font-weight: 500;
  }
  .hp-field { position: absolute; left: -9999px; }
  .form-submit:disabled { opacity: 0.6; cursor: wait; }

  /* ===== GOOGLE REVIEWS ===== */
  #google-reviews {
    padding: 6rem 3rem;
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }
  .google-inner { max-width: 1400px; margin: 0 auto; }

  .google-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .google-rating-card {
    background: var(--white);
    border: 1px solid rgba(138, 154, 123, 0.18);
    border-radius: 22px;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    box-shadow: var(--shadow-soft);
  }
  .google-logo {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--white);
    display: grid;
    place-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    flex-shrink: 0;
  }
  .google-rating-info {
    border-left: 1px solid rgba(138, 154, 123, 0.2);
    padding-left: 2rem;
  }
  .google-rating-num {
    font-family: var(--display);
    font-size: 2.8rem;
    line-height: 1;
    color: var(--ink);
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
  }
  .google-rating-num small {
    font-family: var(--body);
    font-size: 1rem;
    color: var(--ink-soft);
  }
  .google-stars {
    display: flex;
    gap: 2px;
    margin: 0.4rem 0 0.5rem;
  }
  .google-stars svg { color: #fbbc04; }
  .google-rating-label {
    font-size: 0.85rem;
    color: var(--ink-soft);
  }
  .google-rating-label a { color: var(--terracotta-text); text-decoration: none; font-weight: 500; }
  .google-rating-label a:hover { text-decoration: underline; }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .review-card {
    background: var(--white);
    border-radius: 18px;
    padding: 1.8rem;
    border: 1px solid rgba(138, 154, 123, 0.15);
    transition: all 0.3s;
  }
  .review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-med);
    border-color: rgba(200, 117, 90, 0.3);
  }

  .review-head {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
  }
  .review-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--sage);
    color: var(--cream);
    display: grid;
    place-items: center;
    font-family: var(--display);
    font-size: 1rem;
    font-weight: 500;
    flex-shrink: 0;
  }
  .review-meta strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--ink);
  }
  .review-meta span {
    font-size: 0.78rem;
    color: var(--ink-soft);
  }
  .review-stars {
    display: flex;
    gap: 1px;
    margin-bottom: 0.8rem;
  }
  .review-stars svg { color: #fbbc04; }

  .review-text {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--ink-soft);
  }

  .google-cta-row {
    margin-top: 2.5rem;
    text-align: center;
  }

  /* Empty state for connecting reviews */
  .review-card.placeholder {
    background: rgba(138, 154, 123, 0.06);
    border: 1px dashed rgba(138, 154, 123, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 200px;
  }
  .review-card.placeholder .placeholder-icon {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--white);
    display: grid;
    place-items: center;
    margin-bottom: 0.8rem;
    color: var(--sage);
  }
  .review-card.placeholder p {
    font-size: 0.85rem;
    color: var(--ink-soft);
    font-style: italic;
    margin: 0;
  }

  /* ===== BLOG ===== */
  #blog {
    padding: 7rem 3rem;
    background: var(--white);
  }
  .blog-inner { max-width: 1400px; margin: 0 auto; }

  .blog-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3.5rem;
  }
  .blog-header-row .section-header { margin-bottom: 0; }

  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
  }

  /* Blog page hero (full listing) */
  .blog-page-hero {
    padding: 9rem 3rem 3rem;
    background: linear-gradient(180deg, var(--sage-pale) 0%, var(--cream) 100%);
    position: relative;
  }
  .blog-page-hero-inner {
    max-width: 1400px;
    margin: 0 auto;
  }
  .blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--sage-deep);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 1.6rem;
    transition: color 0.2s;
  }
  .blog-back-link:hover { color: var(--terracotta); }
  .blog-back-link svg { transition: transform 0.3s; }
  .blog-back-link:hover svg { transform: translateX(-3px); }

  @media (max-width: 640px) {
    .blog-page-hero { padding: 7rem 1.5rem 2rem; }
  }

  .blog-card {
    background: var(--cream);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(138, 154, 123, 0.15);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.3, 1);
    display: flex;
    flex-direction: column;
  }
  .blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-deep);
    border-color: rgba(200, 117, 90, 0.3);
  }

  .blog-image {
    aspect-ratio: 5 / 3;
    overflow: hidden;
    position: relative;
  }
  .blog-image svg { width: 100%; height: 100%; display: block; }

  .blog-category {
    position: absolute;
    top: 1rem; left: 1rem;
    background: rgba(45, 42, 38, 0.85);
    color: var(--cream);
    backdrop-filter: blur(8px);
    padding: 0.4rem 0.9rem;
    border-radius: 100px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
  }

  .blog-content {
    padding: 1.6rem 1.8rem 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.78rem;
    color: var(--ink-soft);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  .blog-meta span { display: flex; align-items: center; gap: 0.4rem; }

  .blog-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    line-height: 1.3;
  }
  .blog-card p {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    flex: 1;
  }
  .blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--terracotta-text);
    font-size: 0.88rem;
    font-weight: 500;
    margin-top: auto;
  }
  .blog-link svg { transition: transform 0.3s; }
  .blog-card:hover .blog-link svg { transform: translateX(4px); }

  .blog-cta-row {
    margin-top: 3rem;
    text-align: center;
  }

  /* ===== INSTAGRAM ===== */
  #instagram {
    padding: 6rem 3rem;
    background: var(--beige);
  }
  .instagram-inner { max-width: 1400px; margin: 0 auto; }

  .instagram-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  .instagram-header .section-eyebrow {
    justify-content: center;
  }
  .instagram-handle {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--display);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--terracotta-text);
    text-decoration: none;
    margin-top: 1rem;
    transition: color 0.3s;
  }
  .instagram-handle:hover { color: var(--ink); }

  .instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.8rem;
  }

  .insta-tile {
    aspect-ratio: 1;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.3, 1);
    background: linear-gradient(135deg, var(--sage-soft), var(--sage-deep));
  }
  .insta-tile:nth-child(2) { background: linear-gradient(135deg, var(--terracotta-soft), var(--terracotta)); }
  .insta-tile:nth-child(3) { background: linear-gradient(135deg, #d4b89d, #8a7140); }
  .insta-tile:nth-child(4) { background: linear-gradient(135deg, var(--sage-soft), #6b7e5f); }
  .insta-tile:nth-child(5) { background: linear-gradient(135deg, var(--terracotta), #8a4f3c); }
  .insta-tile:nth-child(6) { background: linear-gradient(135deg, var(--sage-deep), #3d4a39); }
  .insta-tile:hover {
    transform: scale(1.04);
    z-index: 2;
  }
  .insta-tile svg { width: 100%; height: 100%; display: block; }

  .insta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 42, 38, 0.85) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 0.9rem;
    color: var(--cream);
    font-size: 0.78rem;
    line-height: 1.4;
  }
  .insta-tile:hover .insta-overlay { opacity: 1; }

  .insta-icon {
    position: absolute;
    top: 0.7rem; right: 0.7rem;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    width: 28px; height: 28px;
    display: grid;
    place-items: center;
    color: var(--ink);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .insta-tile:hover .insta-icon { opacity: 1; }

  .insta-cta {
    text-align: center;
    margin-top: 2.5rem;
  }

  /* Responsive additions */
  @media (max-width: 1024px) {
    .reviews-grid { grid-template-columns: 1fr 1fr; }
    .reviews-grid .review-card:nth-child(n+5) { display: none; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .instagram-grid { grid-template-columns: repeat(4, 1fr); }
  }
  @media (max-width: 720px) {
    .reviews-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .instagram-grid { grid-template-columns: repeat(3, 1fr); }
    .google-rating-card { flex-direction: column; gap: 1.2rem; padding: 1.5rem; }
    .google-rating-info { border-left: none; border-top: 1px solid rgba(138, 154, 123, 0.2); padding-left: 0; padding-top: 1rem; text-align: center; }
    .google-header { gap: 1.5rem; }
    #google-reviews, #blog, #instagram { padding: 5rem 1.5rem; }
  }

  /* ===== BLOG MODAL ===== */
  .blog-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 4vh 1rem;
    background: rgba(45, 42, 38, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .blog-modal.open { display: flex; opacity: 1; }
  .blog-modal-dialog {
    position: relative;
    background: var(--cream);
    color: var(--ink);
    width: 100%;
    max-width: 760px;
    border-radius: 18px;
    box-shadow: var(--shadow-deep);
    overflow: hidden;
    transform: translateY(16px);
    transition: transform 0.35s ease;
  }
  .blog-modal.open .blog-modal-dialog { transform: translateY(0); }
  .blog-modal-hero {
    position: relative;
    aspect-ratio: 16 / 7;
    background: var(--sage-pale);
    overflow: hidden;
  }
  .blog-modal-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .blog-modal-category {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    background: var(--white);
    color: var(--sage-deep);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    font-weight: 500;
  }
  .blog-modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease;
  }
  .blog-modal-close:hover { transform: scale(1.08); }
  .blog-modal-body {
    padding: 2.5rem 2.5rem 3rem;
  }
  .blog-modal-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    color: var(--ink-soft);
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  .blog-modal-meta span { display: flex; align-items: center; gap: 0.4rem; }
  .blog-modal-body h1.blog-modal-title {
    font-family: var(--display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.8rem;
    color: var(--ink);
  }
  .blog-modal-content { color: var(--ink); }
  .blog-modal-content p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--ink-soft);
    margin-bottom: 1.2rem;
  }
  .blog-modal-content h2 {
    font-family: var(--display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--sage-deep);
    margin: 2.2rem 0 0.9rem;
  }
  .blog-modal-content h3 {
    font-family: var(--display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--ink);
    margin: 1.6rem 0 0.7rem;
  }
  .blog-modal-content ul,
  .blog-modal-content ol {
    margin: 0 0 1.4rem 1.3rem;
    color: var(--ink-soft);
  }
  .blog-modal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
  }
  .blog-modal-content strong { color: var(--ink); font-weight: 600; }
  .blog-modal-content em { font-style: italic; }
  .blog-modal-content a {
    color: var(--terracotta);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .blog-modal-content blockquote {
    border-left: 3px solid var(--sage);
    padding: 0.4rem 0 0.4rem 1.2rem;
    margin: 1.6rem 0;
    font-style: italic;
    color: var(--ink-soft);
    background: rgba(232, 235, 226, 0.4);
    border-radius: 0 8px 8px 0;
  }
  .blog-modal-loading,
  .blog-modal-error {
    padding: 2rem 0;
    text-align: center;
    color: var(--ink-soft);
  }
  .blog-modal-error { color: var(--terracotta); }
  body.modal-open { overflow: hidden; }

  @media (max-width: 640px) {
    .blog-modal-body { padding: 1.8rem 1.4rem 2.2rem; }
    .blog-modal-hero { aspect-ratio: 16 / 9; }
    .blog-modal-category { top: 0.9rem; left: 0.9rem; font-size: 0.7rem; }
    .blog-modal-close { top: 0.9rem; right: 0.9rem; width: 36px; height: 36px; }
  }

  /* ===== PRESTATION GROUP HEADINGS (Particuliers) ===== */
  .prest-group-title {
    font-family: var(--display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--ink);
    margin: 2.5rem 0 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
  }
  .prest-group-title::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--terracotta);
  }
  .prest-group-title:first-of-type { margin-top: 0; }
  .prest-group-desc {
    color: var(--ink-soft);
    margin-bottom: 1.5rem;
    max-width: 640px;
  }

  /* ===== NATURO PACKS ===== */
  .naturo-packs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin: 1.5rem 0 2.5rem;
  }
  .naturo-pack {
    position: relative;
    background: var(--white);
    border: 1px solid rgba(138, 154, 123, 0.18);
    border-radius: 20px;
    padding: 1.8rem 1.8rem 1.5rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.3, 1), box-shadow 0.3s, border-color 0.3s;
  }
  .naturo-pack:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-med);
    border-color: var(--terracotta-soft);
  }
  .naturo-pack.featured {
    background: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
  }
  .naturo-pack-badge {
    position: absolute;
    top: -12px;
    left: 1.8rem;
    background: var(--terracotta-text);
    color: var(--cream);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 500;
    padding: 0.4rem 0.9rem;
    border-radius: 100px;
  }
  .naturo-pack-tag {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--terracotta-text);
    margin-bottom: 0.6rem;
    font-weight: 500;
  }
  .naturo-pack.featured .naturo-pack-tag { color: var(--terracotta-soft); }
  .naturo-pack-head h4 {
    font-family: var(--display);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 0.6rem;
  }
  .naturo-pack-head p {
    font-size: 0.92rem;
    color: var(--ink-soft);
    margin: 0;
  }
  .naturo-pack.featured .naturo-pack-head p { color: rgba(245, 240, 232, 0.78); }
  .naturo-pack-features {
    list-style: none;
    padding: 0;
    margin: 1.4rem 0 1.6rem;
    display: grid;
    gap: 0.55rem;
  }
  .naturo-pack-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.92rem;
    color: var(--ink);
  }
  .naturo-pack-features li svg {
    flex-shrink: 0;
    color: var(--sage-deep);
    background: var(--sage-pale);
    padding: 3px;
    border-radius: 50%;
    width: 22px;
    height: 22px;
  }
  .naturo-pack.featured .naturo-pack-features li { color: var(--cream); }
  .naturo-pack.featured .naturo-pack-features li svg {
    color: var(--cream);
    background: rgba(245, 240, 232, 0.12);
  }
  .naturo-pack-foot {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(138, 154, 123, 0.18);
  }
  .naturo-pack.featured .naturo-pack-foot { border-top-color: rgba(245, 240, 232, 0.12); }
  .naturo-pack-price {
    font-family: var(--display);
    font-size: 2rem;
    font-style: italic;
    color: var(--terracotta);
    line-height: 1;
  }
  .naturo-pack.featured .naturo-pack-price { color: var(--terracotta-soft); }

  /* ===== QUI JE SUIS GRID (remplace methode-steps en 3 colonnes) ===== */
  .qui-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .qui-card {
    background: var(--white);
    padding: 2.4rem 1.8rem;
    border-radius: 20px;
    border: 1px solid rgba(138, 154, 123, 0.18);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .qui-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-med);
  }
  .qui-num {
    font-family: var(--display);
    font-style: italic;
    font-size: 2.4rem;
    color: var(--terracotta);
    line-height: 1;
    margin-bottom: 1rem;
    display: block;
  }
  .qui-card h4 {
    font-family: var(--display);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: var(--ink);
  }
  .qui-card p {
    font-size: 0.95rem;
    color: var(--ink-soft);
    margin: 0;
    line-height: 1.65;
  }
  .qui-card strong { color: var(--ink); font-weight: 600; }

  /* ===== CTA renforcés ===== */
  .btn-lg {
    padding: 1.2rem 2.2rem;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(45, 42, 38, 0.18);
  }
  .btn-sm {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }
  .cta-emphasis {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px dashed rgba(138, 154, 123, 0.3);
    position: relative;
  }
  .cta-emphasis::before {
    content: 'Prêt(e) à commencer ?';
    position: absolute;
    top: -0.7rem;
    left: 1.2rem;
    background: inherit;
    padding: 0 0.8rem;
    font-family: var(--display);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--terracotta);
  }
  /* Fond hérité du parent : on force la couleur selon la section */
  #particuliers .cta-emphasis::before,
  #hotels .cta-emphasis::before { background: var(--cream); }
  #entreprises .cta-emphasis::before { background: var(--white); }

  @media (max-width: 900px) {
    .naturo-packs { grid-template-columns: 1fr; }
    .qui-grid { grid-template-columns: 1fr; }
  }
