/*
Theme Name: Ekaterina Kudinova Coaching Mental
Theme URI: 
Author: Ekaterina Kudinova
Description: Thème vitrine premium pour coach mental spécialisée dans l'accompagnement des sportifs.
Version: 1.3.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: ekaterina-kudinova
*/

:root {
  --ink: #111827;
  --forest: #16233a;
  --teal: #16233a;
  --clay: #f28c28;
  --burgundy: #16233a;
  --paper: #f5f1e8;
  --soft: #d9b88f;
  --white: #fffdf8;
  --muted: #667085;
  --line: rgba(17, 24, 39, 0.14);
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.admin-bar .site-header {
  top: 32px;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-shell {
  position: relative;
  overflow: hidden;
}

.floating-ball {
  position: fixed;
  right: clamp(18px, 3vw, 54px);
  top: 42vh;
  z-index: 8;
  width: clamp(46px, 5vw, 76px);
  aspect-ratio: 1;
  pointer-events: none;
  border-radius: 50%;
  opacity: var(--ball-opacity, 0);
  transform: translate3d(var(--ball-x, 0), var(--ball-y, 0), 0) rotate(var(--ball-rotate, 0deg));
  transition: transform 180ms ease-out, opacity 180ms ease;
  background-image: var(--ball-image);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.16);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 253, 248, 0.18);
  background: rgba(22, 35, 58, 0.92);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-size: 1.05rem;
  font-weight: 800;
}

.brand span {
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.93rem;
}

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

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  background: var(--clay);
  color: var(--white);
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: #de7818;
}

.button.secondary {
  border-color: rgba(255, 253, 248, 0.32);
  background: rgba(255, 253, 248, 0.08);
}

.button.secondary:hover {
  background: rgba(255, 253, 248, 0.16);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  color: var(--white);
  background: var(--teal);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(17, 24, 39, 0.97) 0%, rgba(17, 24, 39, 0.9) 36%, rgba(17, 24, 39, 0.58) 58%, rgba(17, 24, 39, 0.24) 78%, rgba(17, 24, 39, 0.12) 100%), var(--hero-image);
  background-size: cover;
  background-position: center right;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 22vh;
  background: linear-gradient(180deg, rgba(245, 241, 232, 0), var(--paper));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 98px 0 118px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--clay);
  font-size: 0.77rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Arial, Helvetica, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.45rem, 4.8vw, 4.4rem);
  font-weight: 800;
}

h2 {
  max-width: 780px;
  font-size: clamp(2rem, 3.6vw, 4rem);
  font-weight: 800;
}

h3 {
  font-size: 1.28rem;
  font-weight: 800;
}

.hero-copy,
.hero-intro {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 253, 248, 0.82);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
}

.hero-intro {
  display: grid;
  gap: 10px;
}

.hero-intro p {
  margin: 0;
  text-align: justify;
  text-align-last: left;
}

.hero-intro strong {
  color: var(--white);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.section {
  padding: 78px 0;
}

.section.alt {
  background: var(--white);
}

.approach-feature {
  background: var(--teal);
  color: var(--white);
  text-align: center;
}

.approach-content {
  max-width: 980px;
  margin: 0 auto;
}

.approach-content .eyebrow {
  color: var(--clay);
}

.approach-content h2 {
  max-width: none;
  color: var(--white);
  font-size: clamp(2.6rem, 5.4vw, 5.4rem);
  line-height: 1;
  margin-bottom: 42px;
}

.approach-divider {
  display: none;
}

.approach-content p:not(.eyebrow) {
  max-width: 1040px;
  margin: 0 auto;
  color: rgba(255, 253, 248, 0.76);
  font-size: clamp(1.06rem, 1.55vw, 1.34rem);
  line-height: 1.58;
}

.approach-content p + p {
  margin-top: 26px;
}

.approach-button {
  min-width: 210px;
  margin-top: 58px;
  background: var(--clay);
  color: var(--ink);
}

.approach-button:hover {
  background: #de7818;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 72px;
  align-items: end;
  margin-bottom: 38px;
}

.lead {
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 820px;
  text-align: justify;
  text-align-last: left;
}

.section-intro {
  max-width: 820px;
  margin: 0 auto 38px;
}

.section-intro .lead {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.48;
  text-align: justify;
  text-align-last: left;
}

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 28px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  background: rgba(255, 253, 248, 0.74);
}

.audience-grid {
  align-items: stretch;
}

.audience-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 0;
}

.image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(17, 24, 39, 0.12);
  background:
    linear-gradient(135deg, rgba(36, 87, 197, 0.34), rgba(242, 140, 40, 0.24)),
    linear-gradient(180deg, rgba(255, 253, 248, 0.45), rgba(17, 24, 39, 0.08));
}

.audience-image {
  background-image:
    linear-gradient(180deg, rgba(17, 24, 39, 0.05), rgba(17, 24, 39, 0.36)),
    var(--card-image, var(--hero-image));
  background-size: cover;
}

.image-pro {
  background-position: 74% 42%;
}

.image-amateur {
  background-position: 54% 48%;
}

.image-entourage {
  background-position: 86% 46%;
}

.pricing-grid {
  align-items: stretch;
  padding-top: 28px;
}

.pricing-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.08);
}

.pricing-icon {
  position: absolute;
  top: -34px;
  left: 50%;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--soft);
  color: var(--forest);
  font-weight: 900;
}

.pricing-body {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 70px 34px 30px;
  text-align: left;
}

.pricing-body h3 {
  margin-top: 4px;
}

.pricing-body > p:not(.price) {
  text-align: justify;
  text-align-last: left;
}

.price {
  margin: 20px 0 18px;
  color: var(--ink);
}

.price strong {
  display: inline-block;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-weight: 700;
}

.pricing-button {
  width: 100%;
  margin: 30px 0 0;
  background: var(--forest);
}

.pricing-list {
  display: grid;
  gap: 13px;
  margin: 0 -34px -30px;
  padding: 30px 34px 34px;
  background: var(--forest);
  color: rgba(255, 253, 248, 0.82);
  list-style: none;
}

.pricing-card:nth-child(2) .pricing-button,
.pricing-card:nth-child(2) .pricing-list {
  transform: translateY(26px);
}

.pricing-list li {
  position: relative;
  padding-left: 24px;
  text-align: left;
}

.pricing-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clay);
}

.card.dark {
  border-color: rgba(255, 253, 248, 0.14);
  background: var(--forest);
  color: var(--white);
}

.card .tag {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.card.dark .tag {
  color: var(--clay);
}

.card p {
  margin: 14px 0 0;
  color: var(--muted);
  text-align: justify;
  text-align-last: left;
}

.card.dark p {
  color: rgba(255, 253, 248, 0.72);
}

.split {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 58px;
  align-items: center;
}

#a-propos {
  padding-top: 48px;
}

.portrait-panel {
  min-height: 560px;
  display: grid;
  align-content: end;
  border-radius: var(--radius);
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.08), rgba(17, 24, 39, 0.82)),
    var(--hero-image);
  background-size: cover;
  background-position: 65% center;
  color: var(--white);
  box-shadow: var(--shadow);
}

.portrait-panel p {
  max-width: 420px;
  margin: 12px 0 0;
  color: rgba(255, 253, 248, 0.76);
}

.photo-placeholder {
  min-height: 680px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.54);
  background-size: cover;
  background-position: center;
  color: rgba(17, 24, 39, 0.54);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.photo-placeholder.has-photo {
  background-image: var(--photo-image);
}

.photo-placeholder.has-photo span,
.result-photo.has-photo span {
  display: none;
}

.scroll-photo {
  transform: translate3d(0, var(--scroll-shift, 0), 0);
  transition: transform 120ms linear;
  will-change: transform;
}

.split p:not(.eyebrow):not(.lead) {
  margin: 18px 0 0;
  color: var(--muted);
  text-align: justify;
  text-align-last: left;
}

.split .lead {
  text-align: justify;
  text-align-last: left;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  text-align: left;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.74em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--clay);
}

.process {
  counter-reset: step;
}

.process .card {
  position: relative;
  padding-top: 64px;
}

.process .card::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 22px;
  left: 26px;
  color: var(--clay);
  font-weight: 900;
}

.band {
  background: var(--ink);
  color: var(--white);
}

.band .lead,
.band .card p {
  color: rgba(255, 253, 248, 0.72);
}

.band .card {
  border-color: rgba(255, 253, 248, 0.13);
  background: rgba(255, 253, 248, 0.06);
}

.quote {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.12;
}

.result-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 96px;
  align-items: center;
}

.result-copy h2 {
  max-width: 620px;
  font-size: clamp(2.4rem, 4.5vw, 4.8rem);
  text-transform: uppercase;
}

.result-line {
  width: 84px;
  height: 6px;
  margin: 34px 0 48px;
  background: var(--soft);
}

.result-copy p:not(.eyebrow) {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.68;
  text-align: justify;
  text-align-last: left;
}

.result-copy p + p {
  margin-top: 26px;
}

.result-copy strong {
  color: var(--forest);
}

.result-photo {
  min-height: 560px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.62);
  background-size: cover;
  background-position: center;
  color: rgba(17, 24, 39, 0.54);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.result-photo.has-photo {
  background-image: var(--photo-image);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-photo {
    transform: none;
    transition: none;
  }

  .floating-ball {
    transform: none;
    transition: none;
  }
}

.faq {
  display: grid;
  gap: 14px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.faq summary {
  cursor: pointer;
  padding: 24px 26px;
  font-weight: 800;
  text-align: left;
}

.faq details p {
  margin: 0;
  padding: 0 26px 26px;
  color: var(--muted);
  text-align: left;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--forest);
  color: var(--white);
}

.contact-panel p {
  color: rgba(255, 253, 248, 0.72);
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: var(--radius);
  padding: 14px 15px;
  background: rgba(255, 253, 248, 0.08);
  color: var(--white);
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 253, 248, 0.54);
}

.shortcode-form p {
  margin: 0;
}

.shortcode-form label {
  color: rgba(255, 253, 248, 0.78);
  font-weight: 700;
}

.shortcode-form input[type="submit"],
.shortcode-form button {
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  background: var(--clay);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.site-footer {
  padding: 48px 0;
  background: var(--teal);
  color: rgba(255, 253, 248, 0.72);
}

.footer-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-location,
.footer-center,
.footer-contact {
  display: grid;
  min-height: 0;
  align-content: start;
  gap: 14px;
}

.footer-logo {
  width: min(230px, 100%);
  height: 150px;
  object-fit: contain;
  object-position: left center;
  opacity: 0.72;
  filter: invert(1);
  mix-blend-mode: screen;
}

.footer-location strong,
.footer-center strong {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-location span,
.footer-center span,
.footer-contact span {
  color: rgba(255, 253, 248, 0.68);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-location p,
.footer-center p {
  margin: 0;
}

.footer-center p {
  max-width: 430px;
  font-size: 1.02rem;
}
.footer-button {
    width: max-content;
    margin-top: auto;
    background: #ff8618;
    color: #ffffff;
    border-color: #ff8618;
}

.footer-button:hover {
    background: #e9750d;
    color: #ffffff;
    border-color: #e9750d;
}

.footer-contact {
  gap: 14px;
}

.footer-contact a {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  color: rgba(255, 253, 248, 0.78);
}

.footer-contact a:hover {
  color: var(--clay);
}

.footer-contact a span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.14);
  color: var(--white);
  font-size: 0.72rem;
}

.footer-legal {
  display: inline-flex !important;
  grid-template-columns: none !important;
  margin-top: auto;
  color: rgba(255, 253, 248, 0.62) !important;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.legal-page {
  background: var(--paper);
}

.legal-container {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
}

.legal-container h1 {
  max-width: 860px;
  margin-bottom: 28px;
  color: var(--ink);
}

.legal-content {
  display: grid;
  gap: 18px;
  margin-top: 42px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.legal-content h2 {
  margin-top: 18px;
  color: var(--teal);
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin: 0;
  color: var(--muted);
  text-align: justify;
  text-align-last: left;
}

.legal-content a {
  color: var(--teal);
  font-weight: 800;
}

.articles-page {
  background: var(--paper);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.article-card,
.empty-articles {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.article-image {
  display: block;
  aspect-ratio: 4 / 3;
  background: var(--teal);
  overflow: hidden;
}

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

.article-body {
  padding: 28px;
}

.article-body time {
  display: block;
  margin-bottom: 14px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-body h2 {
  font-size: 1.35rem;
}

.article-body p {
  margin: 16px 0 0;
  color: var(--muted);
}

.article-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--teal);
  font-weight: 800;
}

.empty-articles {
  max-width: 760px;
  padding: 42px;
}

.empty-articles h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.empty-articles p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 900px) {
  .nav {
    min-height: auto;
    padding: 16px 0;
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero::before {
    background-image: linear-gradient(180deg, rgba(17, 24, 39, 0.94) 0%, rgba(17, 24, 39, 0.76) 52%, rgba(17, 24, 39, 0.52) 100%), var(--hero-image);
    background-position: 62% center;
  }

  .floating-ball {
    display: none;
  }

  .section-head,
  .split,
  .grid-2,
  .grid-3,
  .grid-4,
  .contact-panel,
  .articles-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .portrait-panel {
    min-height: 460px;
  }

  .footer-inner {
    gap: 34px;
  }
}

@media (max-width: 560px) {
  .nav {
    width: min(100% - 24px, 1180px);
  }

  .button {
    width: 100%;
  }

  .hero-inner,
  .container,
  .footer-inner {
    width: min(100% - 24px, 1180px);
  }

  .hero-inner {
    padding: 78px 0 92px;
  }

  .card,
  .contact-panel {
    padding: 22px;
  }

  .footer-inner {
    align-items: start;
  }
}

/* =========================================================
   EK 1.3.0 — final layout corrections
   These rules replace the previous Customizer "Additional CSS".
   ========================================================= */

/* APPROCHE — compact centered reading width */
#approche .approach-content > p:not(.eyebrow) {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-align-last: center;
  line-height: 1.65;
}

#approche .approach-content > p:not(.eyebrow) + p:not(.eyebrow) {
  margin-top: 18px;
}

/* POUR QUI — equal cards and buttons aligned at the bottom */
#pour-qui .audience-grid {
  align-items: stretch;
}

#pour-qui .audience-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#pour-qui .audience-card > p {
  margin-bottom: 24px;
}

#pour-qui .audience-button {
  width: 100%;
  margin-top: auto;
  text-align: center;
}

/* QUI SUIS-JE — keep the title visually balanced */
#a-propos h2 {
  font-size: clamp(2.25rem, 3.2vw, 3.7rem);
  line-height: 1.04;
}

/* MES ACCOMPAGNEMENTS */
#accompagnement h2 {
  font-size: clamp(2.3rem, 3.2vw, 3.8rem);
  line-height: 1.04;
}

#accompagnement .pricing-grid {
  align-items: stretch;
  grid-auto-rows: 1fr;
  padding-top: 0;
}

#accompagnement .pricing-card {
  height: 100%;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

#accompagnement .pricing-icon,
#accompagnement .pricing-body h3 {
  display: none !important;
}

#accompagnement .pricing-body {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 40px 34px 0;
}

#accompagnement .pricing-body .tag {
  margin-bottom: 0;
  color: var(--ink);
}

#accompagnement .price {
  margin: 38px 0 38px;
}

#accompagnement .price strong {
  font-size: clamp(2.7rem, 4vw, 3.55rem);
  white-space: nowrap;
}

#accompagnement .pricing-body > p:not(.price) {
  min-height: 105px;
  margin: 0 0 8px;
  text-align: justify;
  text-align-last: left;
}

#accompagnement .pricing-button {
  width: 100%;
  margin: 0 0 14px;
  transform: none !important;
  background: var(--clay) !important;
  border-color: var(--clay) !important;
  color: var(--white) !important;
}

#accompagnement .pricing-button:hover {
  transform: translateY(-1px) !important;
  background: #de7818 !important;
  border-color: #de7818 !important;
}

#accompagnement .pricing-card:nth-child(2) .pricing-button,
#accompagnement .pricing-card:nth-child(2) .pricing-list {
  transform: none !important;
}

#accompagnement .pricing-list {
  height: 300px;
  min-height: 300px;
  box-sizing: border-box;
  margin: 0 -34px;
  padding: 30px 34px 34px;
  align-content: start;
}

/* RESULTAT — same headline scale as Accompagnements */
#resultats h2 {
  font-size: clamp(2.3rem, 3.2vw, 3.8rem);
  line-height: 1.04;
}

#resultats .result-copy {
  max-width: 760px;
}

/* FAQ — slightly more compact */
#faq .faq {
  gap: 12px;
}

#faq .faq summary {
  padding: 20px 24px;
}

#faq .faq details p {
  padding: 0 24px 22px;
}

/* Responsive corrections for the custom blocks */
@media (max-width: 900px) {
  #accompagnement .pricing-body {
    padding: 34px 28px 0;
  }

  #accompagnement .pricing-list {
    height: auto;
    min-height: 0;
    margin: 0 -28px;
  }

  #accompagnement .pricing-body > p:not(.price) {
    min-height: 0;
  }

  #a-propos h2,
  #accompagnement h2,
  #resultats h2 {
    font-size: clamp(2rem, 8vw, 3.2rem);
  }
	/* CONTACT — уменьшить расстояние перед footer */

#contact {
	
  padding-bottom: 28px;
}
	/* MOBILE — APPROCHE */
@media (max-width: 768px) {

    #approche {
        padding: 70px 0 60px;
    }

    #approche .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    #approche .eyebrow {
        text-align: center;
        font-size: 0.85rem;
        letter-spacing: 0.14em;
        margin-bottom: 18px;
    }

    #approche h2 {
        text-align: center;
        font-size: clamp(2.4rem, 11vw, 3.4rem);
        line-height: 1;
        margin-bottom: 42px;
    }

    #approche .lead,
    #approche p {
        text-align: left;
        font-size: 1.05rem;
        line-height: 1.65;
    }

    #approche p {
        margin-bottom: 24px;
    }

}
	
	/* MOBILE — APPROCHE spacing */
@media (max-width: 768px) {

    #approche {
        padding-top: 55px !important;
        padding-bottom: 55px !important;
    }

    #approche .container {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    #approche .button {
        margin-top: 28px !important;
    }
}
	
	@media (max-width: 768px) {

  #approche h2 {
    margin-bottom: 28px !important;
  }

  #approche .approach-button {
    margin-top: 22px !important;
  }

}
	
/* MOBILE — POUR QUI */
@media screen and (max-width: 768px) {

    #pour-qui .section-intro .lead {
        text-align: left !important;
        text-align-last: left !important;
        word-spacing: normal !important;
        letter-spacing: normal !important;
    }

    #pour-qui .audience-grid .audience-card > p {
        text-align: left !important;
        text-align-last: left !important;
        word-spacing: normal !important;
        letter-spacing: normal !important;
    }

}
	
	/* MOBILE — QUI SUIS-JE */
@media screen and (max-width: 768px) {

    /* весь блок компактнее */
    #a-propos {
        padding-top: 38px !important;
        padding-bottom: 42px !important;
    }

    /* уменьшаем расстояние от предыдущего блока до фото */
    #a-propos .split {
        gap: 28px !important;
    }

    /* фото на мобильном ниже */
    #a-propos .photo-placeholder {
        min-height: 460px !important;
        height: 460px !important;
        margin-bottom: 0 !important;
        background-position: center 25% !important;
    }

    /* текст ближе к фотографии */
    #a-propos .photo-placeholder + div {
        margin-top: 0 !important;
    }

    #a-propos .eyebrow {
        margin-bottom: 16px !important;
    }

    /* уменьшаем огромный заголовок */
    #a-propos h2 {
        font-size: 2.55rem !important;
        line-height: 1.06 !important;
        margin-bottom: 26px !important;
    }

    /* убираем растягивание слов */
    #a-propos p,
    #a-propos .lead {
        text-align: left !important;
        text-align-last: left !important;
        word-spacing: normal !important;
        letter-spacing: normal !important;
    }

    /* чуть компактнее абзацы */
    #a-propos p {
        margin-bottom: 20px !important;
        line-height: 1.62 !important;
    }

    /* список ближе к тексту */
    #a-propos .check-list {
        margin-top: 24px !important;
        margin-bottom: 0 !important;
        gap: 16px !important;
    }

    /* меньше пустоты после блока перед Mes accompagnements */
    #a-propos + #accompagnement {
        padding-top: 46px !important;
    }
}
	
	/* MOBILE — ABOUT + ACCOMPAGNEMENTS */
@media screen and (max-width: 768px) {

  /* QUI SUIS-JE — ещё компактнее */
  #a-propos {
    padding-top: 24px !important;
    padding-bottom: 28px !important;
  }

  #a-propos .split {
    gap: 20px !important;
  }

  #a-propos .photo-placeholder {
    margin-bottom: 0 !important;
  }

  #a-propos .check-list {
    margin-top: 18px !important;
  }

  /* MES ACCOMPAGNEMENTS — одна колонка */
  #accompagnement .section-head {
    display: block !important;
  }

  #accompagnement .section-head > div,
  #accompagnement .section-head .lead {
    width: 100% !important;
    max-width: none !important;
  }

  #accompagnement .section-head .lead {
    margin-top: 20px !important;
    text-align: left !important;
    text-align-last: left !important;
    word-spacing: normal !important;
  }

  #accompagnement h2 {
    font-size: 2.55rem !important;
    line-height: 1.04 !important;
    margin-bottom: 0 !important;
  }

  #a-propos + #accompagnement {
    padding-top: 34px !important;
  }
}
	
	/* MOBILE — ACCOMPAGNEMENTS HEADER FIX */
@media screen and (max-width: 768px) {

  #accompagnement .section-head {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    gap: 18px !important;
  }

  #accompagnement .section-head > div,
  #accompagnement .section-head > p,
  #accompagnement .section-head .lead {
    width: 100% !important;
    max-width: 100% !important;
  }

  #accompagnement .section-head .lead {
    margin: 0 !important;
    text-align: left !important;
    text-align-last: left !important;
    word-spacing: normal !important;
  }

  #accompagnement h2 {
    font-size: 2.35rem !important;
    line-height: 1.05 !important;
  }
}
	
	@media (max-width: 768px) {

    /* MES ACCOMPAGNEMENTS */
    section#accompagnement .container .section-head {
        display: block !important;
        grid-template-columns: 1fr !important;
    }

    section#accompagnement .container .section-head > div {
        display: block !important;
        width: 100% !important;
        max-width: none !important;
    }

    section#accompagnement .container .section-head > .lead {
        display: block !important;
        width: 100% !important;
        max-width: none !important;
        margin: 22px 0 0 0 !important;

        text-align: left !important;
        text-align-last: left !important;
    }

    section#accompagnement .container .section-head h2 {
        width: 100% !important;
        max-width: none !important;
        margin-bottom: 0 !important;
    }
}
	
	@media (max-width: 768px) {

    /* MES ACCOMPAGNEMENTS */
    section#accompagnement .container .section-head {
        display: block !important;
        grid-template-columns: 1fr !important;
    }

    section#accompagnement .container .section-head > div {
        display: block !important;
        width: 100% !important;
        max-width: none !important;
    }

    section#accompagnement .container .section-head > .lead {
        display: block !important;
        width: 100% !important;
        max-width: none !important;
        margin: 22px 0 0 0 !important;

        text-align: left !important;
        text-align-last: left !important;
    }

    section#accompagnement .container .section-head h2 {
        width: 100% !important;
        max-width: none !important;
        margin-bottom: 0 !important;
    }
}
	
	/* MOBILE — PRICING CARDS CLEANUP */
@media screen and (max-width: 768px) {

  #accompagnement .pricing-card {
    margin-bottom: 26px !important;
  }

  #accompagnement .pricing-body {
    padding: 28px 24px 0 !important;
  }

  #accompagnement .pricing-body > p:not(.price) {
    text-align: left !important;
    text-align-last: left !important;
    word-spacing: normal !important;
    min-height: 0 !important;
    margin-bottom: 18px !important;
  }

  #accompagnement .price {
    margin: 28px 0 26px !important;
  }

  #accompagnement .pricing-list {
    padding: 26px 24px 30px !important;
    margin-left: -24px !important;
    margin-right: -24px !important;
  }

  #accompagnement .pricing-list li {
    line-height: 1.45 !important;
  }
}
	
	/* MOBILE — COMPACT PRICING CARDS */
@media screen and (max-width: 768px) {

  #accompagnement .pricing-body {
    padding: 24px 24px 0 !important;
  }

  #accompagnement .pricing-body .tag {
    margin-bottom: 10px !important;
  }

  #accompagnement .price {
    margin: 14px 0 18px !important;
  }

  #accompagnement .price strong {
    line-height: 1 !important;
  }

  #accompagnement .pricing-body > p:not(.price) {
    margin-bottom: 18px !important;
    min-height: 0 !important;
  }

  #accompagnement .pricing-button {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  #accompagnement .pricing-list {
    height: auto !important;
    min-height: 0 !important;
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  #accompagnement .pricing-list li {
    margin-bottom: 14px !important;
  }

  #accompagnement .pricing-list li:last-child {
    margin-bottom: 0 !important;
  }
}
	
	/* MOBILE — RESULTATS */
@media screen and (max-width: 768px) {

  #resultats {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  #resultats .result-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 26px !important;
  }

  #resultats .result-copy {
    width: 100% !important;
    max-width: none !important;
  }

  #resultats .eyebrow {
    margin-bottom: 14px !important;
  }

  #resultats h2 {
    font-size: 2.5rem !important;
    line-height: 1.04 !important;
    margin-bottom: 20px !important;
    max-width: none !important;
  }

  #resultats .result-line {
    margin: 18px 0 24px !important;
  }

  #resultats .result-copy p {
    text-align: left !important;
    text-align-last: left !important;
    word-spacing: normal !important;
    letter-spacing: normal !important;
    line-height: 1.62 !important;
    margin-bottom: 18px !important;
  }

  #resultats .result-photo {
    order: 2 !important;
    width: 100% !important;
    height: 420px !important;
    min-height: 420px !important;
    margin: 0 !important;
    background-position: center 30% !important;
    border-radius: 14px !important;
  }
}
	
	/* MOBILE — RESULTATS TITLE SMALLER */
@media screen and (max-width: 768px) {

  #resultats h2 {
    font-size: 2.2rem !important;
    line-height: 1.03 !important;
  }

  #resultats .result-line {
    margin: 14px 0 20px !important;
  }

  #resultats .result-copy p {
    margin-bottom: 16px !important;
  }

  #resultats .result-photo {
    height: 360px !important;
    min-height: 360px !important;
  }
}
	
	/* MOBILE — FAQ */
@media screen and (max-width: 768px) {

  #faq {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }

  #faq .section-head {
    display: block !important;
  }

  #faq .section-head .lead {
    margin-top: 18px !important;
    text-align: left !important;
    text-align-last: left !important;
    word-spacing: normal !important;
  }

  #faq .faq {
    margin-top: 28px !important;
  }

  #faq details {
    margin-bottom: 12px !important;
  }

  #faq summary {
    padding: 18px 20px !important;
    line-height: 1.35 !important;
  }

  #faq details p {
    padding: 0 20px 20px !important;
    margin: 0 !important;
    line-height: 1.55 !important;
    text-align: left !important;
    text-align-last: left !important;
    word-spacing: normal !important;
  }
}
	
	/* MOBILE — CONTACT */
@media screen and (max-width: 768px) {

  #contact {
    padding-top: 28px !important;
    padding-bottom: 24px !important;
  }

  #contact .contact-panel {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 26px 22px !important;
  }

  #contact .contact-panel > div:first-child {
    width: 100% !important;
  }

  #contact .eyebrow {
    margin-bottom: 12px !important;
  }

  #contact h2 {
    font-size: 2.35rem !important;
    line-height: 1.06 !important;
    margin-bottom: 16px !important;
  }

  #contact .contact-panel > div:first-child p {
    margin-bottom: 14px !important;
    line-height: 1.55 !important;
  }

  #contact .contact-form {
    gap: 10px !important;
  }

  #contact .contact-form input,
  #contact .contact-form textarea,
  #contact .contact-form select {
    padding: 14px 15px !important;
    min-height: 54px !important;
  }

  #contact .contact-form textarea {
    min-height: 140px !important;
  }

  #contact .contact-form button,
  #contact .contact-form input[type="submit"] {
    min-height: 54px !important;
    margin-top: 4px !important;
  }
}