:root {
      /* Ultra Zen — palette douce, lumineuse, accueillante */
      --bg-main: #fbfaf8;          /* ivoire très léger */
      --bg-alt: #f2eeea;           /* lin / beige rosé */
      --bg-alt-2: #e9e3df;         /* sable doux */
      --text-main: #363636;        /* contraste doux */
      --text-muted: #787878;
      --text-soft: #b7a5ad;        /* rose poudré */
      --border-soft: #d7cfd2;      /* rose-gris */
      --border-lighter: #eee9ec;   /* très clair */

      /* Accent plus zen (mauve rosé) */
      --accent-dark: #bfa3b2;

      /* Extras (optionnels) */
      --card-bg: rgba(255, 255, 255, 0.75);
      --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.06);
      --shadow-hover: 0 24px 70px rgba(0, 0, 0, 0.08);
      --radius-lg: 22px;
      --radius-md: 16px;
      --radius-sm: 12px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.6;
      background: var(--bg-main);
      color: var(--text-main);
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
    }

    /* Container & layout utilities */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .section-padding {
      padding: 80px 0;
    }

    @media (min-width: 1024px) {
      .section-padding {
        padding: 100px 0;
      }
    }

    /* Typography */
    .hero-large {
      font-family: 'Fraunces', serif;
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 600;
  color: var(--text-main);
    }

    .heading-1 {
      font-size: 2.25rem;
      font-weight: 300;
      line-height: 1.2;
      color: var(--text-main);
    }

    .heading-2 {
      font-size: 1.5rem;
      font-weight: 500;
      color: var(--text-main);
    }

    .heading-3 {
      font-size: 1.1rem;
      font-weight: 500;
      color: var(--text-main);
    }

    .body-large {
      font-size: 1.05rem;
      color: var(--text-muted);
    }

    .body-regular {
      font-size: 0.98rem;
      color: var(--text-muted);
    }

    .body-small {
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    .italic {
      font-style: italic;
    }

/* Galerie plus compacte et propre */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Sur mobile : 2 colonnes */
@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* Corrige les deux photos côte à côte sur mobile */
@media (max-width: 600px) {
  .two-photos img {
    height: 150px !important; /* plus petite hauteur */
    object-fit: cover;
  }
}


    /* Buttons */
    .btn-primary,
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 24px;
      font-size: 0.95rem;
      text-decoration: none;
      border-radius: 0;
      cursor: pointer;
      border: 1px solid transparent;
      transition: all 0.2s ease;
      background: transparent;
    }

    .btn-primary {
      background: var(--accent-dark);
      color: #fff;
      border-color: var(--accent-dark);
    }

    .btn-primary:hover {
      background: #000;
      border-color: #000;
    }

    .btn-secondary {
      border-color: var(--accent-dark);
      color: var(--accent-dark);
    }

    .btn-secondary:hover {
      background: var(--accent-dark);
      color: #fff;
    }

    /* Cards & hover effect */
    .card {
      background: #fffef2;
      border: 1px solid var(--border-soft);
      padding: 24px 20px;
      position: relative;
    }

    .card-highlight {
      border-width: 2px;
    }

    .hover-lift {
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }

    .hover-lift:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    }

    /* HEADER */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      transition: all 0.3s ease;
      background: transparent;
    }

    header.header-scrolled {
      background: rgba(255, 254, 242, 0.95);
      backdrop-filter: blur(6px);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    }

    .nav-bar {
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    @media (min-width: 1024px) {
      .nav-bar {
        height: 88px;
      }
    }

    .logo {
      font-size: 1.6rem;
      font-weight: 300;
      letter-spacing: 0.04em;
      color: var(--text-main);
      text-decoration: none;
    }

    .logo span:last-child {
      font-weight: 500;
    }

    .nav-links {
      display: none;
      gap: 28px;
      align-items: center;
    }

    .nav-link {
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--text-main);
      text-decoration: none;
      position: relative;
      padding-bottom: 2px;
    }

    .nav-link::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 1px;
      background: var(--text-main);
      transition: width 0.25s ease;
    }

    .nav-link:hover::after {
      width: 100%;
    }

    .nav-actions {
      display: none;
      align-items: center;
      gap: 18px;
    }

    .nav-icon-link {
      text-decoration: none;
      font-size: 0.95rem;
      color: var(--text-main);
      opacity: 0.85;
      transition: opacity 0.2s ease;
    }

    .nav-icon-link:hover {
      opacity: 1;
    }

    .mobile-menu-button {
      background: none;
      border: none;
      padding: 6px;
      font-size: 1.4rem;
      cursor: pointer;
      color: var(--text-main);
    }

    @media (min-width: 1024px) {
      .nav-links,
      .nav-actions {
        display: flex;
      }
      .mobile-menu-button {
        display: none;
      }
    }

    /* Mobile menu */
    .mobile-menu {
      position: fixed;
      top: 72px;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--bg-main);
      transform: translateX(100%);
      transition: transform 0.3s ease;
      z-index: 40;
    }

    .mobile-menu.open {
      transform: translateX(0);
    }

    .mobile-menu-inner {
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 24px;
      padding: 32px 24px;
    }

    .mobile-menu-link {
      font-size: 1.5rem;
      text-decoration: none;
      color: var(--text-main);
    }

    .mobile-menu-social {
      margin-top: 16px;
      font-size: 1.1rem;
      color: var(--text-main);
    }

    @media (min-width: 1024px) {
      .mobile-menu {
        display: none;
      }
    }

    /* HERO */
    .hero-section {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      background: var(--bg-main);
      overflow: hidden;
    }

    .hero-bg .bg-shape {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.35;
    }

    .hero-bg .shape-1 {
      top: 80px;
      right: 80px;
      width: 350px;
      height: 350px;
      background: #f6f5e8;
    }

    .hero-bg .shape-2 {
      bottom: 80px;
      left: 80px;
      width: 300px;
      height: 300px;
      background: #ebeade;
    }

    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      padding-top: 120px;
      padding-bottom: 40px;
    }

    @media (min-width: 1024px) {
      .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        min-height: 100vh;
        align-items: center;
        padding-top: 140px;
      }
    }

    .hero-subtitle {
      font-size: 0.78rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      font-weight: 500;
      color: var(--text-soft);
      margin-bottom: 14px;
}

    .hero-description {
      font-size: 1.05rem;
      max-width: 480px;
      margin-bottom: 28px;
      color: var(--text-muted);
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }
/* Bouton fixe mobile */
.fixed-cta-mobile {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  text-align: center;
  padding: 14px 20px;
  font-size: 0.95rem;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

/* On cache le bouton sur tablette / desktop */
@media (min-width: 768px) {
  .fixed-cta-mobile {
    display: none;
  }
}

    .hero-image-container {
      position: relative;
    }

    .hero-image-wrapper {
      position: relative;
      overflow: hidden;
      aspect-ratio: 4 / 5;
      background: var(--bg-alt);
    }

    @media (min-width: 1024px) {
      .hero-image-wrapper {
        aspect-ratio: 3 / 4;
      }
    }

    .hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-image-gradient {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 35%;
      background: linear-gradient(to top, rgba(255, 254, 242, 0.6), transparent);
    }

    .hero-badge {
      position: absolute;
      bottom: -20px;
      left: -20px;
      background: var(--bg-main);
      border: 1px solid var(--border-soft);
      padding: 20px 22px;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    }

    .hero-badge-number {
      font-size: 2rem;
      margin: 0;
      font-weight: 300;
    }

    .hero-badge-text {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin: 4px 0 0;
    }

    .scroll-indicator {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--text-main);
      display: none;
    }

    @media (min-width: 1024px) {
      .scroll-indicator {
        display: block;
      }
    }

    /* GENERIC GRID helpers */
    .two-col-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
      align-items: center;
    }

    @media (min-width: 1024px) {
      .two-col-grid {
        grid-template-columns: 1fr 1fr;
        gap: 56px;
      }
    }

    /* About */
    .bg-alt {
      background: var(--bg-alt);
    }

    .about-image-wrapper {
      position: relative;
      overflow: hidden;
      aspect-ratio: 4 / 5;
    }

    .about-image-border {
      position: absolute;
      width: 128px;
      height: 128px;
      border: 1px solid var(--border-soft);
      bottom: -32px;
      right: -32px;
      display: none;
    }

    @media (min-width: 1024px) {
      .about-image-border {
        display: block;
      }
    }

    /* Highlights grid */
    .highlights-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
      margin-top: 32px;
    }

    @media (min-width: 640px) {
      .highlights-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    .icon-circle {
      width: 48px;
      height: 48px;
      border-radius: 0;
      border: 1px solid var(--border-soft);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
      font-size: 1.1rem;
      color: var(--text-soft);
    }

    /* Coach section */
    .coach-image-wrapper {
      position: relative;
      overflow: hidden;
      aspect-ratio: 4 / 5;
      background: var(--bg-alt);
    }

    .coach-badge {
      position: absolute;
      bottom: -20px;
      right: -20px;
      background: var(--bg-main);
      border: 1px solid var(--border-soft);
      padding: 20px 22px;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    }

    .badge-number {
      font-size: 2rem;
      margin: 0;
      font-weight: 300;
    }

    .badge-text {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin: 4px 0 0;
    }

    .coach-mission {
      margin-top: 20px;
      padding: 18px 20px;
      background: var(--bg-alt);
      border-left: 4px solid var(--text-soft);
      font-style: italic;
      font-size: 0.95rem;
      color: var(--text-muted);
    }

    .coach-values {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      margin-top: 22px;
      text-align: center;
    }

    .coach-value-label {
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    /* Services */
    .services-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }

    @media (min-width: 768px) {
      .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    /* Pricing */
    .tabs {
      display: flex;
      justify-content: center;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 32px;
    }

    .tab-button {
      padding: 10px 20px;
      font-size: 0.9rem;
      border-radius: 0;
      border: 1px solid var(--border-soft);
      background: transparent;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .tab-button.active {
      background: var(--accent-dark);
      color: #fff;
      border-color: var(--accent-dark);
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }

    @media (min-width: 768px) {
      .pricing-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    .pricing-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--text-soft);
      color: #fff;
      padding: 3px 10px;
      font-size: 0.7rem;
      letter-spacing: 0.16em;
    }

    .pricing-price {
      margin-bottom: 18px;
    }

    .pricing-price-main {
      font-size: 2.5rem;
      font-weight: 300;
      color: var(--text-main);
    }

    .pricing-price-euro {
      font-size: 1.5rem;
      margin-left: 2px;
    }

    .pricing-period {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-left: 6px;
    }

    /* Schedule */
    .schedule-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
    }

    @media (min-width: 768px) {
      .schedule-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
      }
    }

    .schedule-day {
      background: var(--bg-alt);
      border: 1px solid var(--border-lighter);
      padding: 16px;
      display: flex;
      flex-direction: column;
    }

    .schedule-day-title {
      font-size: 1.1rem;
      font-weight: 400;
      text-align: center;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--border-soft);
      margin-bottom: 12px;
    }

    .schedule-time {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 6px 8px;
      background: var(--bg-main);
      border: 1px solid var(--border-lighter);
      font-size: 0.9rem;
      margin-bottom: 8px;
    }

    .schedule-time span {
      font-weight: 500;
    }

    .schedule-empty {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      color: #bcbcb4;
      font-style: italic;
    }

    .schedule-note {
      margin-top: 18px;
      padding: 16px 18px;
      background: var(--bg-alt);
      border: 1px solid var(--border-lighter);
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    @media (min-width: 768px) {
      .schedule-note {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
      }
    }

    /* Gallery */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
    }

    @media (min-width: 1024px) {
      .gallery-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }

    .gallery-item-large {
      grid-column: span 2;
      grid-row: span 2;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.05);
    }

    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: rgba(51, 51, 51, 0);
      transition: background 0.3s ease;
    }

    .gallery-item:hover .gallery-overlay {
      background: rgba(51, 51, 51, 0.18);
    }

    /* Lightbox */
    .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.9);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 16px;
      z-index: 60;
    }

    .lightbox.open {
      display: flex;
    }

    .lightbox img {
      max-width: 100%;
      max-height: 90vh;
      object-fit: contain;
    }

    .lightbox-close {
      position: absolute;
      top: 16px;
      right: 16px;
      font-size: 1.8rem;
      color: #fff;
      cursor: pointer;
    }

    /* Testimonials */
    .testimonials-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }

    @media (min-width: 768px) {
      .testimonials-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    .testimonial-quote-mark {
      position: absolute;
      top: -12px;
      left: 24px;
      width: 32px;
      height: 32px;
      background: var(--text-soft);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
    }

    .testimonial-stars {
      display: flex;
      gap: 4px;
      margin-top: 12px;
      margin-bottom: 16px;
    }

    .testimonial-star {
      font-size: 0.9rem;
      color: var(--text-soft);
    }

    .testimonial-text {
      font-style: italic;
      font-size: 0.95rem;
      color: var(--text-muted);
      margin-bottom: 16px;
    }

    /* Contact */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
    }

    @media (min-width: 1024px) {
      .contact-grid {
        grid-template-columns: 1.1fr 1fr;
      }
    }

    .contact-detail-row {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .contact-icon-box {
      width: 48px;
      height: 48px;
      border: 1px solid var(--border-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 1.1rem;
      color: var(--text-soft);
    }

    .contact-card {
      background: var(--bg-main);
      border: 1px solid var(--border-soft);
      padding: 24px;
    }

    @media (min-width: 1024px) {
      .contact-card {
        padding: 32px;
      }
    }

    .contact-form-group {
      margin-bottom: 16px;
    }

    .contact-label {
      display: block;
      font-size: 0.9rem;
      font-weight: 500;
      margin-bottom: 6px;
      color: var(--text-main);
    }

    .contact-input,
    .contact-textarea {
      width: 100%;
      padding: 10px 12px;
      border: 1px solid var(--border-soft);
      background: transparent;
      font-size: 0.95rem;
      font-family: inherit;
      outline: none;
      transition: border-color 0.2s ease;
    }

    .contact-input:focus,
    .contact-textarea:focus {
      border-color: var(--accent-dark);
    }

    .contact-textarea {
      resize: none;
      min-height: 140px;
    }

    .contact-success {
      text-align: center;
      padding: 24px;
      font-size: 0.95rem;
    }

    /* Map wrapper */
    .map-wrapper {
      margin-top: 24px;
      background: var(--bg-alt-2);
      border: 1px solid var(--border-soft);
      aspect-ratio: 16 / 9;
      overflow: hidden;
    }

    .map-wrapper iframe {
      width: 100%;
      height: 100%;
      border: 0;
      filter: grayscale(0.6);
    }
/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.faq-item {
  background: var(--bg-alt);
  border: 1px solid var(--border-lighter);
  border-radius: 18px;
  padding: 24px;
}

.faq-item h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.faq-item p {
  color: var(--text-muted);
  line-height: 1.6;
}


    /* FOOTER */
    footer {
      background: #d9c6cf;
      color: #ffffff;
      margin-top: 40px;
    }

    .footer-main {
      padding: 60px 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
    }

    @media (min-width: 768px) {
      .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
      }
    }

    .footer-text-muted {
      color: #bcbbb4;
      font-size: 0.9rem;
    }

    .footer-nav {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-nav li {
      margin-bottom: 8px;
    }

    .footer-nav a {
      text-decoration: none;
      color: #bcbbb4;
      font-size: 0.9rem;
    }

    .footer-nav a:hover {
      color: #fff;
    }

    .footer-bottom {
      border-top: 1px solid #4a4a4a;
      padding: 14px 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
      justify-content: space-between;
      align-items: center;
    }

    @media (min-width: 768px) {
      .footer-bottom {
        flex-direction: row;
      }
    }

    .footer-top-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: #bcbbb4;
      font-size: 0.9rem;
      cursor: pointer;
    }

    .footer-top-link:hover {
      color: #fff;
    }

    /* Section headers */
    .section-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 32px;
    }

    .section-tag {
      font-size: 0.75rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-soft);
      margin-bottom: 8px;
    }

    /* Responsive tweaks */
    @media (max-width: 767px) {
      .hero-large,
      .heading-1 {
        font-size: 1.8rem;
      }
      .hero-grid {
        padding-top: 110px;
      }
      .hero-badge {
        bottom: -16px;
        left: 8px;
      }
    }
.testimonial-tagline {
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  color: #6d6c58;
  letter-spacing: 0.5px;
  margin: 0 0 10px 0;
}

.testimonial-quote-mark {
  position: relative;       /* empêche le chevauchement dans la bordure */
  display: block;
  font-size: 14px;          /* taille plus petite */
  line-height: 1.4;         /* meilleure lisibilité */
  font-weight: 300;
  font-style: italic;
  color: #6d6c58;
  margin-bottom: 15px;      /* espace sous le titre */
  margin-top: 10px;         /* espace au-dessus pour qu’il descende dans la carte */
  letter-spacing: 0.5px;
}
h1 {
  font-family: 'Fraunces', serif !important;
  font-weight: 600 !important;
}

/* Section coach / présentation */
.coach-intro {
  max-width: 760px;
  margin: 0 auto 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.coach-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.coach-block {
  background: #ffffff;
  border: 1px solid var(--border-lighter);
  border-radius: 18px;
  padding: 20px 22px;
}

.coach-block ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 0 0;
}

.coach-block li {
  margin-bottom: 6px;
  color: var(--text-muted);
}

/* Sur mobile : une seule colonne */
@media (max-width: 767px) {
  .coach-grid {
    grid-template-columns: 1fr;
  }
}


/* === Ultra Zen additions === */
body{
  background:
    radial-gradient(1200px 800px at 15% 10%, rgba(191, 163, 178, 0.18), transparent 55%),
    radial-gradient(1000px 700px at 85% 20%, rgba(173, 204, 198, 0.18), transparent 55%),
    radial-gradient(1000px 700px at 35% 90%, rgba(244, 210, 214, 0.18), transparent 60%),
    var(--bg-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Cartes plus accueillantes */
.card,
.contact-card,
.coach-block,
.faq-item,
.schedule-day{
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border-color: var(--border-lighter);
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  backdrop-filter: blur(6px);
}

/* Hover plus doux */
.hover-lift:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(191, 163, 178, 0.55);
}

/* Boutons plus "zen" (pill + glow très léger) */
.btn-primary,
.btn-secondary{
  border-radius: 999px;
  padding: 13px 26px;
}

.btn-primary{
  background: linear-gradient(135deg, rgba(191,163,178,1), rgba(173,204,198,1));
  border-color: transparent;
  box-shadow: 0 10px 26px rgba(191,163,178,0.22);
}

.btn-primary:hover{
  filter: brightness(0.98);
  box-shadow: 0 14px 34px rgba(191,163,178,0.28);
}

.btn-secondary{
  border-color: rgba(191,163,178,0.55);
  color: var(--text-main);
  background: rgba(255,255,255,0.55);
}

.btn-secondary:hover{
  background: rgba(191,163,178,0.16);
  color: var(--text-main);
}

/* Lignes et séparateurs plus légers */
.nav-link::after{ background: rgba(54,54,54,0.55); }
.schedule-day-title{ border-bottom-color: var(--border-lighter); }
.schedule-time{ border-color: var(--border-lighter); }

/* HERO shapes plus colorées et plus floues */
.hero-bg .bg-shape{ filter: blur(90px); opacity: 0.45; }
.hero-bg .shape-1{ background: rgba(191,163,178,0.55); }
.hero-bg .shape-2{ background: rgba(173,204,198,0.55); }

.hero-image-wrapper,
.about-image-wrapper,
.coach-image-wrapper{
  border-radius: var(--radius-lg);
}

/* Badges plus "soft" */
.hero-badge,
.coach-badge{
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.78);
  box-shadow: var(--shadow-soft);
}

/* Footer plus chaleureux */
footer{
  background: linear-gradient(135deg, #cdb7c3, #c0d9d2);
}
.footer-bottom{ border-top: 1px solid rgba(255,255,255,0.35); }
.footer-nav a, .footer-text-muted, .footer-top-link{ color: rgba(255,255,255,0.82); }
.footer-nav a:hover, .footer-top-link:hover{ color: #ffffff; }

/* CTA mobile plus accueillant */
.fixed-cta-mobile{
  border-radius: 999px !important;
  background: linear-gradient(135deg, rgba(191,163,178,1), rgba(173,204,198,1));
  border: 0;
  color: #fff;
}


/* === Well-being optimization pack (zen+) === */

/* Smoother typographic rhythm */
:root{
  --tracking-wide: 0.18em;
  --line-relaxed: 1.75;
}

/* Global text feel */
body{
  line-height: var(--line-relaxed);
}

p, .body-regular, .body-large, .body-small{
  letter-spacing: 0.01em;
}

/* Titles: softer, more airy */
.hero-large{
  letter-spacing: -0.01em;
}

.heading-1, .heading-2, .heading-3{
  letter-spacing: -0.01em;
}

.section-tag, .hero-subtitle{
  letter-spacing: var(--tracking-wide);
}

/* Links and buttons: gentle underline + focus ring */
a{
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:focus-visible,
button:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.contact-input:focus-visible,
.contact-textarea:focus-visible{
  outline: 0;
  box-shadow: 0 0 0 4px rgba(191,163,178,0.22);
  border-color: rgba(191,163,178,0.55);
}

/* Header: softer glass & border */
header.header-scrolled{
  background: rgba(251,250,248,0.82);
  border-bottom: 1px solid rgba(216,207,212,0.35);
}

/* Section separators: calmer */
.divider{
  opacity: 0.7;
  border-color: var(--border-lighter);
}

/* Cards: more breathing room */
.card{
  padding: 28px 24px;
}

/* Rounded visuals everywhere */
.hero-image-wrapper,
.about-image-wrapper,
.coach-image-wrapper,
.map-wrapper,
.gallery-item,
.contact-card,
.card,
.coach-block,
.faq-item,
.schedule-day{
  border-radius: var(--radius-lg);
}

.gallery-item img,
.hero-image,
.about-image,
.coach-image{
  border-radius: var(--radius-lg);
}

/* Inputs: friendly, pill-ish */
.contact-input,
.contact-textarea{
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.65);
  border-color: var(--border-lighter);
}

.contact-input:hover,
.contact-textarea:hover{
  border-color: rgba(191,163,178,0.35);
}

/* CTA mobile: more "app-like" */
.fixed-cta-mobile{
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Schedule: softer blocks */
.schedule-time{
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
}

/* Testimonials: warmer quote mark */
.testimonial-quote-mark{
  background: rgba(191,163,178,0.85);
}

/* Icons: rounded */
.icon-circle,
.contact-icon-box{
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
  border-color: var(--border-lighter);
}

/* Subtle float animation for hero shapes (prefers-reduced-motion respected) */
@media (prefers-reduced-motion: no-preference){
  .hero-bg .shape-1{ animation: floaty1 10s ease-in-out infinite; }
  .hero-bg .shape-2{ animation: floaty2 12s ease-in-out infinite; }
  @keyframes floaty1{
    0%,100%{ transform: translate3d(0,0,0); }
    50%{ transform: translate3d(-18px, 10px, 0); }
  }
  @keyframes floaty2{
    0%,100%{ transform: translate3d(0,0,0); }
    50%{ transform: translate3d(14px, -12px, 0); }
  }
}

/* Softer gallery hover */
.gallery-item:hover img{ transform: scale(1.035); }
.gallery-item:hover .gallery-overlay{ background: rgba(54,54,54,0.10); }

/* Lightbox: less aggressive black */
.lightbox{ background: rgba(18,18,18,0.92); }

