/* Playfair Display */
  @font-face { font-family:'Playfair Display'; font-weight:400; font-style:normal; font-display:swap; src:url('fonts/playfair-display-400.woff2') format('woff2'); }
  @font-face { font-family:'Playfair Display'; font-weight:400; font-style:italic; font-display:swap; src:url('fonts/playfair-display-400i.woff2') format('woff2'); }
  @font-face { font-family:'Playfair Display'; font-weight:600; font-style:normal; font-display:swap; src:url('fonts/playfair-display-600.woff2') format('woff2'); }
  @font-face { font-family:'Playfair Display'; font-weight:700; font-style:normal; font-display:swap; src:url('fonts/playfair-display-700.woff2') format('woff2'); }
  /* Nunito */
  @font-face { font-family:'Nunito'; font-weight:400; font-style:normal; font-display:swap; src:url('fonts/nunito-400.woff2') format('woff2'); }
  @font-face { font-family:'Nunito'; font-weight:500; font-style:normal; font-display:swap; src:url('fonts/nunito-500.woff2') format('woff2'); }
  @font-face { font-family:'Nunito'; font-weight:600; font-style:normal; font-display:swap; src:url('fonts/nunito-600.woff2') format('woff2'); }
  @font-face { font-family:'Nunito'; font-weight:700; font-style:normal; font-display:swap; src:url('fonts/nunito-700.woff2') format('woff2'); }


  :root {
    --sage: #A8B8A5;
    --forest: #4F6F52;
    --sand: #F4EFE7;
    --wood: #C8A98D;
    --text: #4A4A4A;
    --text-secondary: #5A5A5A;
    --white: #FAF9F6;
    --deep: #2E4A31;
  }

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

  /* ── MODAL POLITIQUE ── */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(46,74,49,0.5);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 24px;
  }
  .modal-overlay.open { display: flex; }
  .modal-box {
    background: var(--white);
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    padding: 52px 56px 48px;
    position: relative;
    animation: fadeUp 0.3s ease both;
    scrollbar-width: thin;
    scrollbar-color: var(--sage) transparent;
  }
  .modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(168,184,165,0.35);
  }
  .modal-header-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--wood);
    margin-bottom: 8px;
  }
  .modal-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--deep);
    line-height: 1.2;
  }
  .modal-date {
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-top: 6px;
  }
  .modal-close-btn {
    flex-shrink: 0;
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(168,184,165,0.5);
    background: transparent;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
    color: var(--text);
  }
  .modal-close-btn:hover { background: rgba(168,184,165,0.2); }
  .modal-close-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
  .modal-section { margin-bottom: 28px; }
  .modal-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--deep);
    margin-bottom: 12px;
    padding-left: 12px;
    border-left: 2px solid var(--sage);
  }
  .modal-section p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 10px;
  }
  .modal-section ul {
    padding-left: 1.2rem;
    margin-bottom: 10px;
  }
  .modal-section ul li {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 4px;
  }
  .modal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    margin: 10px 0;
  }
  .modal-table th {
    text-align: left;
    font-weight: 600;
    color: var(--forest);
    padding: 8px 12px;
    background: rgba(168,184,165,0.15);
    border-bottom: 1px solid rgba(168,184,165,0.3);
  }
  .modal-table td {
    padding: 8px 12px;
    border-bottom: 1px solid rgba(168,184,165,0.2);
    color: var(--text-secondary);
    vertical-align: top;
  }
  .modal-badge {
    display: inline-block;
    font-size: 0.75rem;
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: 600;
    background: rgba(79,111,82,0.12);
    color: var(--forest);
  }
  .modal-link { color: var(--forest); text-decoration: underline; background: none; border: 0; padding: 0; font: inherit; cursor: pointer; }
  .modal-footer-note {
    font-size: 0.78rem;
    color: var(--text-secondary);
    border-top: 1px solid rgba(168,184,165,0.3);
    padding-top: 16px;
    margin-top: 8px;
    font-style: italic;
  }

  body {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
  }

  /* ── HEADER ── */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 60px;
    border-bottom: 1px solid rgba(168,184,165,0.25);
    transition: box-shadow 0.3s;
  }
  header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(250,249,246,0.93);
    backdrop-filter: blur(12px);
    z-index: -1;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }
  .logo img { height: 44px; width: auto; }
  .logo-text {
    font-family: 'Nunito', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--forest);
    letter-spacing: 0.03em;
  }

  nav {
    display: flex;
    align-items: center;
    gap: 36px;
  }
  nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.2s;
  }
  nav a:hover { color: var(--forest); }
  nav a.active {
    color: var(--forest);
    font-weight: 700;
    position: relative;
  }
  nav a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0; right: 0;
    height: 2px;
    background: var(--forest);
    border-radius: 2px;
  }

  .btn-primary {
    background: var(--forest);
    color: var(--white);
    border: none;
    padding: 11px 26px;
    border-radius: 30px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: background 0.25s, transform 0.2s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--deep); transform: translateY(-1px); }

  /* ── HERO ── */
  #accueil {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('paysage.png'); /* fallback anciens navigateurs */
    background-image: image-set(url('paysage.webp') type('image/webp'), url('paysage.png') type('image/png'));
    background-size: cover;
    background-position: center 60%;
    background-repeat: no-repeat;
  }
  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      105deg,
      rgba(250,249,246,0.88) 0%,
      rgba(250,249,246,0.72) 45%,
      rgba(250,249,246,0.15) 100%
    );
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin-left: 10%;
    padding-top: 40px;
    animation: fadeUp 0.9s ease both;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }


  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.18;
    color: var(--deep);
    margin-bottom: 22px;
  }
  .hero-title em { font-style: italic; color: var(--wood); }

  .hero-sub {
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 460px;
  }

  /* ── SECTIONS ── */
  section { padding: 96px 60px; scroll-margin-top: 80px; }

  .section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--wood);
    margin-bottom: 14px;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--deep);
    line-height: 1.25;
    max-width: 540px;
  }

  /* ── PROBLÉMATIQUES ── */
  #problematiques { background: var(--sand); }

  .prob-header {
    max-width: 1100px;
    margin: 0 auto 56px;
    text-align: center;
  }
  .prob-header .section-title {
    margin-bottom: 16px;
  }

  .prob-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
  }

  .prob-bubble {
    display: flex;
    align-items: flex-end;
    gap: 14px;
  }
  .prob-bubble:nth-child(even) { flex-direction: row-reverse; }

  .prob-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .prob-bubble:nth-child(odd)  .prob-avatar { background: rgba(168,184,165,0.45); }
  .prob-bubble:nth-child(even) .prob-avatar { background: rgba(200,169,141,0.45); }

  .prob-avatar svg {
    width: 20px; height: 20px;
    stroke: var(--forest); fill: none;
    stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  }

  .prob-bubble-text {
    position: relative;
    white-space: normal;
    background: var(--white);
    padding: 18px 24px;
    box-shadow: 0 4px 16px rgba(79,111,82,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .prob-bubble:nth-child(odd)  .prob-bubble-text {
    border-radius: 20px 20px 20px 4px;
    border: 1px solid rgba(168,184,165,0.4);
    background: var(--white);
  }
  .prob-bubble:nth-child(even) .prob-bubble-text {
    border-radius: 20px 20px 4px 20px;
    border: 1px solid rgba(200,169,141,0.4);
    background: rgba(200,169,141,0.07);
  }

  .prob-bubble-text:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(79,111,82,0.13);
  }
  .prob-bubble-text p {
    font-size: 1rem;
    line-height: 1.65;
    font-weight: 500;
    color: var(--text);
    font-style: italic;
  }
  .prob-bubble-text p::before { content: ''; }
  .prob-bubble-text p::after  { content: ''; }

  .prob-transition {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    max-width: 900px;
    margin: 44px auto 0;
    text-align: center;
  }
  .prob-transition-q {
    font-size: 1.05rem;
    font-weight: 400;
    font-style: italic;
    color: var(--forest);
    margin: 0;
  }
  .prob-transition-a {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--forest);
    margin: 0;
  }

  /* ── ACCOMPAGNEMENT / SERVICES ── */
  #services { background: var(--white); }

  .accom-inner { max-width: 1100px; margin: 0 auto; }

  .accom-header {
    max-width: 1100px;
    margin: 0 auto 64px;
    text-align: center;
  }
  .accom-header .section-title {
    margin-bottom: 16px;
  }

  .accom-sub {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-secondary);
    align-self: center;
  }

  .accom-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .accom-card {
    background: var(--sand);
    border-radius: 20px;
    padding: 32px 40px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .accom-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 4px;
    background: var(--forest);
  }
  .accom-card:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 32px rgba(79,111,82,0.1);
  }

  .accom-card-body {
    flex: 1;
  }

  .accom-title-group {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
  }

  .accom-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(79,111,82,0.1);
  }
  .accom-icon svg {
    width: 26px; height: 26px;
    stroke: var(--forest); fill: none;
    stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  }

  .accom-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--deep);
    margin-bottom: 0;
  }
  .accom-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 10px;
    padding-left: 76px;
  }
  .accom-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--forest);
    padding-left: 76px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(79,111,82,0.18);
  }
  .accom-check-circle {
    width: 22px; height: 22px;
    background: rgba(79,111,82,0.12);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .accom-check-circle svg {
    width: 12px; height: 12px;
    stroke: var(--forest); fill: none;
    stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  }

  /* ── EXPERTISE ── */
  #apropos {
    background: var(--forest);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  #apropos::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 360px; height: 360px;
    background: rgba(168,184,165,0.12);
    border-radius: 50%;
  }
  #apropos::after {
    content: '';
    position: absolute;
    bottom: -60px; left: 20%;
    width: 240px; height: 240px;
    background: rgba(200,169,141,0.1);
    border-radius: 50%;
  }

  .expertise-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .expertise-header {
    text-align: center;
    margin-bottom: 56px;
  }

  .expertise-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
  }

  .expertise-header .section-title { color: var(--white); margin: 0 auto 0; text-align: center; max-width: 100%; }
  .expertise-header .section-tag { color: var(--wood); }
  .expertise-left .section-title { color: var(--white); margin-bottom: 24px; }
  .expertise-left .section-tag { color: var(--wood); }

  /* ── PHOTO À PROPOS ── */
  .expertise-right-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 0;
  }
  .expertise-portrait {
    width: 340px;
    height: 420px;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    display: block;
    border: 2px solid rgba(168,184,165,0.3);
    box-shadow:
      0 0 0 10px rgba(168,184,165,0.1),
      0 20px 44px rgba(0,0,0,0.22);
    transition: transform 0.4s ease;
  }
  .expertise-portrait:hover {
    transform: scale(1.03);
  }

  .expertise-text {
    font-size: 0.975rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.8);
    margin-bottom: 28px;
  }

  .expertise-quote {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 48px 52px;
    position: relative;
  }
  .quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: rgba(200,169,141,0.5);
    line-height: 1;
    position: absolute;
  }
  .quote-mark:not(.close) {
    top: 16px;
    left: 24px;
  }
  .quote-mark.close {
    bottom: 4px;
    right: 24px;
  }
  .expertise-quote p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.9);
    text-align: center;
  }

  /* ── CTA / CONTACT ── */
  #contact {
    background: var(--sand);
    text-align: center;
  }
  .cta-inner {
    max-width: 780px;
    margin: 0 auto;
  }
  .cta-inner .section-title {
    margin: 0 auto 16px;
    text-align: center;
    max-width: 100%;
  }
  .cta-sub {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.7;
  }

  /* ── FOOTER ── */
  footer {
    background: #2A3D2C;
    color: rgba(255,255,255,0.65);
    padding: 20px 60px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.875rem;
  }
  .footer-bar {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  .footer-logo {
    height: 52px;
    width: auto;
    display: block;
    flex-shrink: 0;
  }
  .footer-sep {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.2);
  }
  .footer-link {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
    background: none;
    border: 0;
    padding: 0;
    font-family: inherit;
    cursor: pointer;
  }
  .footer-link:hover { color: var(--sage); }
  .footer-copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
  }

  .footer-legal {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .social-row { display: flex; gap: 10px; }
  .social-icon {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    cursor: pointer;
    text-decoration: none;
    line-height: 1;
    vertical-align: middle;
  }
  .social-icon:hover { background: rgba(168,184,165,0.3); }
  .social-icon svg {
    width: 16px; height: 16px;
    stroke: rgba(255,255,255,0.75); fill: none;
    stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
    display: block;
  }
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
  .reveal-delay-5 { transition-delay: 0.5s; }

  .contact-form {
    margin-top: 32px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
  }
  .form-group label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--forest);
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    border: 1.5px solid rgba(168,184,165,0.6);
    border-radius: 12px;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder { color: #B0B0B0; }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--forest);
    box-shadow: 0 0 0 3px rgba(79,111,82,0.1);
  }
  .form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234F6F52' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
  }
  .form-group textarea { resize: vertical; min-height: 110px; }

  /* ── BURGER MENU ── */
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px; height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    position: relative;
    z-index: 120;
  }
  .burger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--forest);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
    transform-origin: center;
  }
  .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── TABLETTE : bulles sur une seule ligne sur grand écran seulement ── */
  @media (min-width: 900px) {
    .prob-bubble-text { white-space: nowrap; }
  }

  /* ── RESPONSIVE MOBILE ── */
  @media (max-width: 768px) {

    /* Header */
    header { padding: 14px 20px; }

    .burger {
      display: flex;
      min-width: 44px;
      min-height: 44px;
    }

    nav {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(250,249,246,0.98);
      backdrop-filter: blur(16px);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: clamp(20px, 5vh, 40px);
      z-index: 110;
      padding: 0 20px;
    }
    nav.open { display: flex; }
    nav a {
      font-size: 1.25rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      min-height: 44px;
      display: flex;
      align-items: center;
    }
    nav a.active::after { display: none; }

    /* Logo */
    .logo img { width: 140px !important; height: auto !important; }

    /* Boutons — cibles tactiles 44px minimum */
    .btn-primary {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    /* Sections */
    section { padding: 64px 20px; }

    /* Hero */
    .hero-content {
      margin-left: 0;
      padding: 100px 20px 40px;
      max-width: 100%;
    }
    .hero-bg {
      background-position: center top;
    }
    .hero-bg::after {
      background: linear-gradient(
        180deg,
        rgba(250,249,246,0.92) 0%,
        rgba(250,249,246,0.75) 60%,
        rgba(250,249,246,0.3) 100%
      );
    }

    /* Bulles problématiques — alternance gauche/droite conservée */
    .prob-bubble-text { max-width: calc(100% - 54px) !important; white-space: normal !important; }
    .prob-transition { padding: 16px 20px; }
    .prob-transition-q { font-size: 0.95rem; }
    .prob-transition-a { font-size: 1.15rem; }

    /* Cards services */
    .accom-card {
      padding: 20px 16px;
    }
    .accom-card p,
    .accom-card .reunion-list,
    .accom-card .accom-benefit {
      padding-left: 0;
    }

    /* Option A mobile : icône réduite, titre + prix en colonne */
    .accom-card .accom-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      flex-shrink: 0;
    }
    .accom-title-group {
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      gap: 3px;
    }

    /* Expertise */
    .expertise-body {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .expertise-right-col {
      order: -1;
      padding-top: 0;
    }
    .expertise-portrait {
      width: 220px;
      height: 270px;
    }

    /* Formulaire */
    .form-row { grid-template-columns: 1fr; }
    .btn-submit { width: 100%; min-width: unset; }

    /* Footer mobile — layout colonne centré */
    footer { padding: 28px 20px 24px; }

    .footer-bar {
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }
    .footer-sep { display: none; }

    .footer-logo { height: 40px; }

    /* Icônes sociales — cibles tactiles 44 px */
    .social-row { gap: 12px; }
    .social-icon {
      width: 44px;
      height: 44px;
    }

    /* Liens légaux + copyright — colonne centrée */
    .footer-legal {
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }

    .footer-link {
      font-size: 0.82rem;
      padding: 4px 0;
    }
    .footer-copy { font-size: 0.75rem; }

    /* Modal → bottom sheet */
    .modal-overlay {
      align-items: flex-end;
      padding: 0;
    }
    .modal-box {
      border-radius: 24px 24px 0 0;
      max-height: 90svh;
      max-height: 90vh; /* fallback */
      padding: 32px 24px 28px;
      animation: slideUp 0.35s ease both;
    }
  }

  @keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ── NOTE DE BAS DE TARIFS ── */
  .price-footnote {
    font-size: 0.72rem;
    color: var(--text-secondary);
    opacity: 0.65;
    margin-top: 20px;
    text-align: left;
    font-style: italic;
  }

  /* ── PRICE BADGE ── */
  .price-badge {
    font-size: 0.9rem;
    font-weight: 400;
    font-style: italic;
    color: var(--forest);
    white-space: nowrap;
  }

  .accom-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
  }

  /* ── LISTE SERVICES ── */
  .reunion-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 8px 0;
    padding: 0 0 0 76px;
  }
  .reunion-item {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1rem;
  }
  .reunion-item::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--forest);
    font-weight: 700;
  }
  /* Variante pour les items avec label textuel (ex : Simple —, Structuré —) */
  .reunion-list--labeled .reunion-item {
    padding-left: 0;
  }
  .reunion-list--labeled .reunion-item::before {
    content: none;
  }
  .reunion-label {
    font-weight: 700;
    color: var(--deep);
  }

  /* ── BOUTONS VARIANTES ── */
  .btn-hero {
    font-size: 1rem;
    padding: 14px 32px;
  }

  /* ── SECTION TITLE CENTER ── */
  .section-title-center {
    text-align: center;
    margin: 0 auto;
    max-width: none;
  }

  /* ── FORMULAIRE — validation inline ── */
  .field-error {
    display: none;
    font-size: 0.75rem;
    color: #c0392b;
    margin-top: 2px;
  }
  .field-error.visible { display: block; }

  .form-group input.invalid,
  .form-group select.invalid,
  .form-group textarea.invalid {
    border-color: #c0392b;
    box-shadow: 0 0 0 3px rgba(192,57,43,0.08);
  }
  .form-group input.valid,
  .form-group select.valid,
  .form-group textarea.valid {
    border-color: var(--forest);
  }

  .form-feedback {
    display: none;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 4px;
  }
  .form-feedback.visible { display: block; }
  .form-success {
    background: rgba(79,111,82,0.1);
    color: var(--forest);
    border: 1px solid rgba(79,111,82,0.3);
  }
  .form-error {
    background: rgba(192,57,43,0.08);
    color: #c0392b;
    border: 1px solid rgba(192,57,43,0.2);
  }

  /* ── MENTION reCAPTCHA (obligatoire si badge masqué) ── */
  .recaptcha-notice {
    font-size: 0.72rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.6;
    opacity: 0.7;
  }
  .recaptcha-notice a {
    color: var(--forest);
    text-decoration: underline;
  }

  /* ── BADGE reCAPTCHA masqué (mention textuelle présente dans le formulaire) ── */
  .grecaptcha-badge { visibility: hidden !important; }

  /* ── HONEYPOT anti-spam ── */
  .honeypot {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    pointer-events: none;
  }

  /* ── LOGO FALLBACK ── */
  .logo-text-fallback { display: none; }

  /* ── STRONG DEEP ── */
  .strong-deep { color: var(--deep); }

  /* ── SKIP LINK — accessibilité clavier ── */
  .skip-link {
    position: absolute;
    left: -9999px;
    top: 8px;
    z-index: 999;
    background: var(--forest);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
  }
  .skip-link:focus {
    left: 8px;
  }

  /* ── ACCESSIBILITÉ : mouvements réduits ── */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .reveal {
      opacity: 1;
      transform: none;
      transition: none;
    }
  }

  /* ── UTILITAIRE — nowrap ── */
  .nowrap { white-space: nowrap; }
