  :root {
    --beige: #f5f0e8;
    --beige-dark: #e8dece;
    --vert: #2d5a3d;
    --vert-clair: #4a7c5e;
    --vert-pale: #c8dbc0;
    --bois: #8b6b4a;
    --bois-clair: #c4a882;
    --or: #c9a84c;
    --text: #2a2a2a;
    --text-light: #6b6b6b;

    /* Variables utilisées par la modale des mentions légales */
    --cream: var(--beige);
    --sand-light: var(--beige-dark);
    --sand: var(--bois-clair);
    --earth-dark: var(--vert);
    --sage: var(--vert-clair);
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--beige);
    color: var(--text);
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }

  /* ── TEXTURE OVERLAY ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.5;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 4rem;
    background: rgba(245,240,232,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(45,90,61,0.12);
    transition: all 0.3s ease;
  }

  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--vert);
    letter-spacing: 0.05em;
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--vert); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0 4rem;
    padding-top: 80px;
    gap: 4rem;
    position: relative;
    overflow: hidden;
  }

  .hero::after {
    content: '';
    position: absolute;
    right: -10%;
    top: -20%;
    width: 70%;
    height: 140%;
    background: radial-gradient(ellipse at center, var(--vert-pale) 0%, transparent 70%);
    opacity: 0.3;
    pointer-events: none;
  }

  .hero-content { position: relative; z-index: 2; }

  .hero-tag {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--bois);
    background: rgba(139,107,74,0.1);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.8rem;
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--vert);
    margin-bottom: 1rem;
    animation: fadeUp 0.8s 0.15s ease forwards;
    opacity: 0;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--bois);
  }

  .hero-subtitle {
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--vert-clair);
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s 0.25s ease forwards;
    opacity: 0;
  }

  .hero-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 480px;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.8s 0.35s ease forwards;
    opacity: 0;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    animation: fadeUp 0.8s 0.45s ease forwards;
    opacity: 0;
  }

  .btn-primary {
    background: var(--vert);
    color: white;
    padding: 0.9rem 2.2rem;
    border: none;
    border-radius: 2px;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    display: inline-block;
  }

  .btn-primary:hover { background: var(--vert-clair); transform: translateY(-1px); }

  .btn-secondary {
    color: var(--vert);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid var(--vert);
    padding-bottom: 2px;
    transition: color 0.2s;
  }

  .hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1.2s 0.3s ease forwards;
    opacity: 0;
  }

  .logo-circle {
    width: min(380px, 90%);
    height: min(380px, 90%);
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 80px rgba(45,90,61,0.12), 0 8px 20px rgba(45,90,61,0.08);
    padding: 2rem;
    text-align: center;
  }

  .logo-img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    margin-bottom: 1rem;
  }

  .opening-badge {
    background: var(--or);
    color: white;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    margin-top: 0.5rem;
  }

  /* ── DECORATION LEAVES ── */
  .leaf-deco {
    position: absolute;
    opacity: 0.06;
    pointer-events: none;
    font-size: 8rem;
  }

  /* ── SECTION BASE ── */
  section {
    padding: 3rem 4rem;
    position: relative;
  }

  .section-label {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--bois);
    margin-bottom: 0.8rem;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 300;
    color: var(--vert);
    line-height: 1.1;
    margin-bottom: 1rem;
  }

  .section-title em { font-style: italic; color: var(--bois); }

  .section-intro {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 600px;
    margin-bottom: 3.5rem;
  }

  /* ── CONCEPT ── */
  .concept {
    background: white;
  }

  .concept-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 3rem;
  }

  .concept-card {
    background: var(--beige);
    padding: 3rem 2.5rem;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
  }

  .concept-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 3px;
    background: var(--vert);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
  }

  .concept-card:hover::before { transform: scaleX(1); }
  .concept-card:hover { background: var(--beige-dark); }

  .card-icon {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    display: block;
  }

  .card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--vert);
    margin-bottom: 1rem;
  }

  .card-text {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--text-light);
  }

  /* ── SERVICES ── */
  .services {
    background: var(--vert);
    color: white;
  }

  .services .section-title { color: var(--beige); }
  .services .section-label { color: var(--vert-pale); }
  .services .section-intro { color: rgba(255,255,255,0.65); }

  .services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5px;
    background: rgba(255,255,255,0.08);
  }

  .service-item {
    background: var(--vert);
    padding: 2.5rem 3rem;
    border: 1px solid rgba(255,255,255,0.08);
    transition: background 0.3s;
  }

  .service-item:hover { background: var(--vert-clair); }

  .service-num {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--vert-pale);
    margin-bottom: 0.8rem;
  }

  .service-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: white;
    margin-bottom: 0.8rem;
  }

  .service-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
  }

  /* ── SÉANCES & TARIFS (mêmes couleurs que le Bar à Shakes) ── */
  #seances,
  #tarifs {
    background: white;
    color: var(--text);
  }

  #seances .section-title,
  #tarifs .section-title { color: var(--vert); }

  #seances .section-label,
  #tarifs .section-label { color: var(--bois); }

  #seances .section-intro,
  #tarifs .section-intro { color: var(--text-light); }

  #seances .services-list,
  #tarifs .services-list { background: var(--beige-dark); }

  #seances .service-item,
  #tarifs .service-item {
    background: var(--beige);
    border: 1px solid rgba(45,90,61,0.08);
  }

  #seances .service-item:hover,
  #tarifs .service-item:hover { background: var(--beige-dark); }

  #seances .service-num,
  #tarifs .service-num { color: var(--vert); }

  #seances .service-name,
  #tarifs .service-name { color: var(--vert); }

  #seances .service-desc,
  #tarifs .service-desc { color: var(--text-light); }

  #tarifs .espace-card {
    background: var(--beige);
    border-left: 3px solid var(--vert);
    box-shadow: none;
  }

  #tarifs .espace-name { color: var(--vert); }
  #tarifs .espace-desc,
  #tarifs .pills-list li { color: var(--text-light); }

  /* ── SÉANCES & TARIFS : version compacte ── */
  #seances,
  #tarifs {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  #seances .section-intro,
  #tarifs .section-intro { margin-bottom: 2rem; }

  #seances .services-list {
    grid-template-columns: repeat(4, 1fr);
  }

  #seances .service-item {
    padding: 1.5rem 1.5rem;
  }

  #seances .service-num { margin-bottom: 0.5rem; }

  #seances .service-name {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
  }

  #seances .service-desc {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  #tarifs .espace-grid {
    grid-template-columns: repeat(5, 1fr);
    margin-top: 1.5rem;
    gap: 1rem;
  }

  #tarifs .espace-card { padding: 1.3rem 1rem; }
  #tarifs .espace-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
  #tarifs .espace-name { font-size: 1rem; margin-bottom: 0.3rem; }

  #tarifs .pills-list li {
    padding: 0.5rem 0;
    font-size: 0.8rem;
    gap: 0.6rem;
  }

  #tarifs .divider { margin: 1rem 0; }
  #tarifs .text-note-spaced { margin-bottom: 1.5rem; }
  #tarifs .hero-actions { margin-top: 0.5rem; margin-bottom: 0.8rem; }
  #tarifs > .section-intro:last-child { margin-bottom: 0; }

  /* ── NOS SERVICES : version compacte ── */
  #services {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  #services .section-intro { margin-bottom: 2rem; }

  #services .services-list {
    grid-template-columns: repeat(3, 1fr);
  }

  #services .service-item {
    padding: 1.8rem 1.8rem;
  }

  #services .service-num { margin-bottom: 0.5rem; }

  #services .service-name {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  #services .service-desc {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  /* ── HERBALIFE ── */
  .herbalife {
    background: var(--beige-dark);
  }

  .herb-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .herb-visual {
    background: var(--vert-pale);
    border-radius: 4px;
    padding: 4rem 3rem;
    text-align: center;
  }

  .herb-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--vert);
    margin-bottom: 1rem;
  }

  .herb-tagline {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--vert-clair);
  }

  .pills-list {
    list-style: none;
    margin-top: 2rem;
  }

  .pills-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(45,90,61,0.1);
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
  }

  .pills-list li::before {
    content: '✦';
    color: var(--vert);
    font-size: 0.6rem;
    margin-top: 0.35rem;
    flex-shrink: 0;
  }

  /* ── BAR À SHAKE ── */
  .bar {
    background: white;
  }

  .bar-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: start;
  }

  .bar-menu {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .menu-item {
    background: var(--beige);
    padding: 1.8rem;
    border-radius: 4px;
    border-left: 3px solid var(--vert);
  }

  .menu-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--vert);
    margin-bottom: 0.4rem;
  }

  .menu-item-desc {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
  }

  /* ── ESPACE ── */
  .espace {
    background: var(--beige);
  }

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

  .espace-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(45,90,61,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .espace-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(45,90,61,0.12);
  }

  .espace-icon { font-size: 2.5rem; margin-bottom: 1rem; }

  .espace-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--vert);
    margin-bottom: 0.5rem;
  }

  .espace-desc {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.6;
  }

  /* ── HORAIRES ── */
  .horaires {
    background: var(--beige-dark);
  }

  .horaires-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--vert);
    margin: 3rem 0 1.5rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid rgba(45,90,61,0.12);
  }

  .horaires-detail .horaires-subtitle { margin-top: 3.5rem; }

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

  .horaire-card {
    background: white;
    border-radius: 4px;
    padding: 1.8rem;
    border-left: 3px solid var(--vert);
  }

  .horaire-card.horaire-ferme {
    border-left-color: var(--bois);
    opacity: 0.8;
  }

  .horaire-jours {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.6rem;
  }

  .horaire-heures {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--vert);
    margin-bottom: 0.7rem;
  }

  .horaire-note {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.6;
  }

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

  .prestation-card {
    background: white;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(45,90,61,0.06);
  }

  .prestation-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }

  .prestation-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--vert);
    margin-bottom: 0.5rem;
  }

  .prestation-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.65;
  }

  /* ── EQUIPE ── */
  .equipe {
    background: var(--vert);
    color: white;
    text-align: center;
  }

  .equipe .section-title { color: var(--beige); text-align: center; }
  .equipe .section-label { color: var(--vert-pale); text-align: center; }
  .equipe .section-intro { color: rgba(255,255,255,0.6); text-align: center; margin: 0 auto 3rem; }

  .team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    max-width: 900px;
    margin: 0 auto;
  }

  .team-card {
    background: rgba(255,255,255,0.06);
    padding: 3rem 3rem;
    border: 1px solid rgba(255,255,255,0.08);
  }

  .team-photo-wrap {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid rgba(255,255,255,0.2);
  }

  .team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
  }

  .team-photo-left { object-position: 20% top; }
  .team-photo-right { object-position: 80% top; }

  .team-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: white;
    margin-bottom: 0.3rem;
  }

  .team-role {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--vert-pale);
    margin-bottom: 1.2rem;
  }


  .team-bio {
    font-size: 0.87rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.6);
  }
  .team-bio a {
    color: var(--vert-pale);
    text-decoration: underline;
  }

  .team-bio a:hover {
    color: var(--beige-dark);
  }
  /* ── CONTACT ── */
  .contact {
    background: var(--beige-dark);
  }

  .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }

  .contact-info { margin-top: 2rem; }

  .info-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
  }

  .info-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--vert);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
  }

  .info-text h4 {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--vert);
    margin-bottom: 0.2rem;
  }

  .info-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
  }
  .info-text a {
    color: var(--vert);
    text-decoration: underline;
  }
  .info-text a:hover {
    color: var(--bois);
  }
  .contact-form { margin-top: 2rem; }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

  .form-group { margin-bottom: 1.2rem; }

  .form-group label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--vert);
    margin-bottom: 0.4rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    background: white;
    border: 1px solid rgba(45,90,61,0.15);
    border-radius: 2px;
    padding: 0.8rem 1rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-color: var(--vert);
  }

  .form-group textarea { height: 120px; resize: vertical; }

  /* ── FOOTER ── */
  footer {
    background: #1a3528;
    color: rgba(255,255,255,0.5);
    padding: 3rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--vert-pale);
  }

  .footer-tagline {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 0.2rem;
    color: rgba(255,255,255,0.3);
  }

  .footer-tagline a {
    color: var(--beige);
    text-decoration: underline;
  }

  .footer-tagline a:hover {
    color: var(--bois);
  }

  footer p { font-size: 0.8rem; }

  /* ── MODALE ── */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #E9E9DD;
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.35s ease;
  }
  .modal-overlay.active { display: flex; opacity: 1; }

  .modal-box {
    background: var(--cream);
    border-radius: 16px;
    width: 92%;
    max-width: 780px;
    max-height: 88vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    animation: modalIn 0.4s ease;
  }
  .modal-close {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: flex-end;
    padding: 1rem 1.5rem 0;
    background: linear-gradient(var(--cream) 70%, transparent);
  }
  .modal-close button {
    background: var(--sand-light);
    border: none;
    border-radius: 50%;
    width: 40px; height: 40px;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--earth-dark);
    transition: background 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .modal-close button:hover { background: var(--sand); transform: scale(1.1); }

  .modal-header {
    text-align: center;
    padding: 1.5rem 2.5rem 2rem;
    border-bottom: 1px solid var(--sand-light);
  }
  .modal-header .eyebrow { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--sage); margin-bottom: 0.8rem; display: block; }
  .modal-header h1 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 400; color: var(--earth-dark); line-height: 1.2; }
  .modal-header h1 em { font-style: italic; color: var(--sage); }
  .modal-header .lead { margin-top: 1rem; font-size: 0.92rem; color: var(--text-light); max-width: 560px; margin-left: auto; margin-right: auto; }

  .modal-content { padding: 2rem 2.5rem 3rem; }
  .modal-content section { margin-bottom: 0.2rem; }

  .modal-content h2 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--earth-dark);
    margin-bottom: 0.6rem;
  }

  .modal-content h2 .num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--sage);
    color: white;
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .modal-content section p {
    font-size: 0.88rem;
    line-height: 1.75;
    color: var(--text-light);
    margin-bottom: 0.5rem;
  }

  .modal-content section p:last-child { margin-bottom: 0; }
  .modal-content section p strong { color: var(--text); }

  .modal-content section a {
    color: var(--sage);
    text-decoration: underline;
  }

  .info-block {
    background: var(--cream);
    border-radius: 8px;
    padding: 1.2rem 1.5rem;
    margin-top: 0.8rem;
  }

  .info-block dl {
    display: grid;
    grid-template-columns: 180px 1fr;
    row-gap: 0.6rem;
    column-gap: 1rem;
  }

  .info-block dt {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
  }

  .info-block dd {
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.6;
  }

  .info-block dd a { color: var(--earth-dark); text-decoration: underline; }

  .updated {
    text-align: center;
    font-size: 0.78rem;
    font-style: italic;
    color: var(--text-light);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--sand-light);
  }


  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* ── DIVIDER ── */
  .divider {
    width: 50px;
    height: 2px;
    background: var(--vert);
    margin: 1.5rem 0;
  }

  .divider-gold { background: var(--or); }

  /* ── UTILITAIRES (ex-styles inline) ── */
  .logo-circle-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--vert);
    font-weight: 600;
  }

  .logo-circle-tagline {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 0.3rem;
  }

  .section-intro-tight { margin-bottom: 1.5rem; }

  .herb-quote-wrap {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(45,90,61,0.15);
  }

  .herb-quote {
    font-size: 0.85rem;
    color: var(--vert-clair);
    line-height: 1.8;
    font-style: italic;
  }

  .text-note {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--text-light);
  }

  .text-note-spaced { margin-bottom: 2.5rem; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 1rem 2rem; }
    .nav-links { display: none; }

    section { padding: 4rem 2rem; }

    .hero {
      grid-template-columns: 1fr;
      padding: 6rem 2rem 3rem;
      text-align: center;
    }

    .hero-actions { justify-content: center; }
    .hero-desc { margin: 0 auto 2rem; }

    .concept-grid { grid-template-columns: 1fr; gap: 2px; }
    .services-list { grid-template-columns: 1fr; }
    #services .services-list { grid-template-columns: 1fr; }
    .herb-layout { grid-template-columns: 1fr; gap: 2rem; }
    .bar-layout { grid-template-columns: 1fr; gap: 2rem; }
    .bar-menu { grid-template-columns: 1fr; }
    .espace-grid { grid-template-columns: 1fr 1fr; }
    #tarifs .espace-grid { grid-template-columns: 1fr; }
    .horaires-grid { grid-template-columns: 1fr; }
    .prestation-grid { grid-template-columns: 1fr; }
    .info-block dl { grid-template-columns: 1fr; row-gap: 0.2rem; }
    .info-block dd { margin-bottom: 0.6rem; }
    .team-grid { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    footer { flex-direction: column; text-align: center; }
  }
