/* =============================================================
   Coaching en Mathématiques — Feuille de styles principale
   Sommaire :
     0. Polices de la charte (@font-face)
     1. Variables (design tokens)
     2. Réinitialisation & base
     3. Utilitaires & mise en page
     4. Typographie
     5. Boutons
     6. En-tête / navigation
     7. Pied de page & lien « Accueil »
     8. Composants d'accueil (hero, profil, domaines, approche, services, contact)
     9. Pages internes (en-tête de page, domaines, approche, services, à propos)
   Les adaptations responsives se trouvent dans responsive.css.
   ============================================================= */

/* ---------- 0. Polices de la charte (@font-face) ----------
   Polices non disponibles sur Google Fonts : les fichiers doivent
   être déposés dans assets/fonts/ (format .woff2 recommandé, .woff
   en repli). Tant qu'ils sont absents, les polices de repli définies
   dans les variables ci-dessous (Archivo, Mulish, Oswald, Yellowtail)
   prennent automatiquement le relais — l'affichage reste donc correct.
   Pour un rendu net des graisses (titres en gras notamment), il est
   possible d'ajouter un @font-face par graisse fournie. */
@font-face {
  font-family: "Telegraf";
  src: url("../assets/fonts/telegraf.woff2") format("woff2"),
       url("../assets/fonts/telegraf.woff") format("woff");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Telegraf";
  src: url("../assets/fonts/telegraf_ultrabold.woff2") format("woff2"),
       url("../assets/fonts/telegraf_ultrabold.woff") format("woff");
  font-weight: 100 900;
  font-style: extra bold;
  font-display: swap;
}

@font-face {
  font-family: "Telegraf";
  src: url("../assets/fonts/telegraf_bold.woff2") format("woff2"),
       url("../assets/fonts/telegraf_bold.woff") format("woff");
  font-weight: 100 900;
  font-style: bold;
  font-display: swap;
}

@font-face {
  font-family: "Telegraf";
  src: url("../assets/fonts/telegraf_ultralight.woff2") format("woff2"),
       url("../assets/fonts/telegraf_ultralight.woff") format("woff");
  font-weight: 100 900;
  font-style: extra light;
  font-display: swap;
}

@font-face {
  font-family: "Telegraf";
  src: url("../assets/fonts/telegraf_medium.woff2") format("woff2"),
       url("../assets/fonts/telegraf_medium.woff") format("woff");
  font-weight: 100 900;
  font-style: medium;
  font-display: swap;
}

@font-face {
  font-family: "Telegraf";
  src: url("../assets/fonts/telegraf_black.woff2") format("woff2"),
       url("../assets/fonts/telegraf_black.woff") format("woff");
  font-weight: 100 900;
  font-style: black;
  font-display: swap;
}


@font-face {
  font-family: "Garet";
  src: url("../assets/fonts/garet.woff2") format("woff2"),
       url("../assets/fonts/garet.woff") format("woff");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}



@font-face {
  font-family: "Bobby Jones Condensed Soft";
  src: url("../assets/fonts/bobby-jones-condensed-soft.woff2") format("woff2"),
       url("../assets/fonts/bobby-jones-condensed-soft.woff") format("woff");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rebel";
  src: url("../assets/fonts/rebel.woff2") format("woff2"),
       url("../assets/fonts/rebel.woff") format("woff");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Greatvibes";
  src: url("../assets/fonts/greatvibes.woff2") format("woff2"),
       url("../assets/fonts/greatvibes.woff") format("woff");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- 1. Variables ---------------------------------- */
:root {
  /* Couleurs de marque (extraites de la maquette) */
  --coral: #ff877d;
  --coral-dark: #f26f63;
  --navy: #0b6380;
  --navy-2: #225b7c;
  --navy-dark: #084f68;
  --pink: #ffeaea;
  --blue-soft: #cde1e7;
  --logo-blue: #2673a6;
  --blue-accent: #1f84c5;   /* bleu vif d'accent (texte mis en évidence, listes) */

  /* Neutres */
  --ink: #12181d;
  --text: #26333b;
  --white: #ffffff;
  --line: rgba(18, 24, 29, .14);
  --line-light: rgba(255, 255, 255, .32);

  /* États des champs de formulaire */
  --focus: #2673a6;
  --error: #e11d28;
  --error-soft: #ff5a5f;

  /* Typographie — police de la charte en 1er, repli Google Fonts ensuite */
  --font-display: "Telegraf", "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;   /* titres (toutes pages) */
  --font-body: "Garet", "Mulish", system-ui, -apple-system, "Segoe UI", sans-serif;           /* textes, menu + éléments d'accent (boutons, étiquettes, tarifs, listes) */
  --font-condensed: "Bobby Jones Condensed Soft", "Oswald", "Archivo Narrow", system-ui, sans-serif; /* « Coaching en » */
  --font-brush: "Rebel", "Yellowtail", cursive;                                                /* « Mathématiques » */
  --font-script: "Greatvibes", cursive;

  /* Espacements */
  --space-1: .5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-7: 6rem;

  /* Divers */
  --maxw: 1180px;
  --radius: 3px;
  --radius-lg: 10px;
  --shadow: 0 18px 40px rgba(11, 99, 128, .12);
  --transition: 180ms ease;
}

/* ---------- 2. Réinitialisation & base -------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

img {
  height: auto;
}


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

ul {
  list-style: none;
  padding: 0;
}

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 2px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

/* ---------- 3. Utilitaires & mise en page ----------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.section {
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.section--pink {
  background-color: var(--pink);
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  padding: .75rem 1.25rem;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  transition: top var(--transition);
}

.skip-link:focus {
  top: 1rem;
}

/* ---------- 4. Typographie -------------------------------- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -.01em;
}

.page-title {
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 900;
  letter-spacing: -.02em;
  margin-bottom: var(--space-4);
}

.section-title {
  font-size: clamp(2rem, 4.6vw, 3.3rem);
  margin-bottom: var(--space-3);
}

.section--navy .section-title,
.section--navy h3 {
  color: var(--white);
}

.lead {
  font-size: 1.125rem;
  max-width: none;
  text-align: justify;
  hyphens: auto;
}

.kicker {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.text-coral {
  color: var(--coral);
}

.text-navy {
  color: var(--navy);
}

p + p {
  margin-top: var(--space-2);
}

strong {
  font-weight: 700;
}

/* ---------- 5. Boutons ------------------------------------ */
.btn {
  --btn-fg: var(--white);
  --btn-bg: var(--coral);
  --btn-bd: var(--coral);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.9rem;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--btn-fg);
  background-color: var(--btn-bg);
  border: 2px solid var(--btn-bd);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform var(--transition), background-color var(--transition),
    color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(11, 99, 128, .18);
}

.btn:active {
  transform: translateY(0);
}

/* Plein coral, texte blanc */
.btn--coral {
  --btn-fg: var(--white);
  --btn-bg: var(--coral);
  --btn-bd: var(--coral);
}

.btn--coral:hover {
  --btn-bg: var(--coral-dark);
  --btn-bd: var(--coral-dark);
}

/* Plein coral, texte foncé (sur fond navy) */
.btn--coral-ink {
  --btn-fg: var(--navy-dark);
  --btn-bg: var(--coral);
  --btn-bd: var(--coral);
}

.btn--coral-ink:hover {
  --btn-bg: var(--coral-dark);
  --btn-bd: var(--coral-dark);
}

/* Contour foncé */
.btn--outline {
  --btn-fg: var(--ink);
  --btn-bg: transparent;
  --btn-bd: var(--ink);
}

.btn--outline:hover {
  --btn-fg: var(--white);
  --btn-bg: var(--ink);
}

/* Contour coral */
.btn--outline-coral {
  --btn-fg: var(--coral-dark);
  --btn-bg: transparent;
  --btn-bd: var(--coral);
}

.btn--outline-coral:hover {
  --btn-fg: var(--white);
  --btn-bg: var(--coral);
}

/* Contour clair (sur fond navy) */
.btn--outline-light {
  --btn-fg: var(--white);
  --btn-bg: transparent;
  --btn-bd: var(--line-light);
}

.btn--outline-light:hover {
  --btn-fg: var(--navy);
  --btn-bg: var(--white);
  --btn-bd: var(--white);
}

/* ---------- 6. En-tête / navigation ----------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  min-height: 5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--logo-blue);
}

.brand__logo {
  width: 46px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
}

.nav__link {
  font-family: var(--font-body); /* menu en Garet (comme les textes) */
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink);
  padding-block: .4rem;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.nav__link:hover {
  color: var(--coral-dark);
}

.nav__link[aria-current="page"] {
  color: var(--coral);
  border-bottom-color: var(--coral);
}

/* Bouton hamburger (caché sur desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ---------- 7. Pied de page & lien « Accueil » ------------ */
.back-home {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .1rem;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--coral);
  transition: color var(--transition), transform var(--transition);
}

.back-home:hover {
  color: var(--coral-dark);
  transform: translateY(-2px);
}

.back-home__icon {
  width: 26px;
  height: 26px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding-block: var(--space-4);
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.site-footer__copy {
  font-size: .9rem;
  color: var(--text);
}

/* Barre d'actions en bas des pages internes */
.page-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-6);
}

.page-actions .back-home {
  margin-left: auto;
}

/* ---------- 8. Composants d'accueil ----------------------- */
/* Hero */
.hero {
  text-align: center;
  padding-block: clamp(2.5rem, 6vw, 5rem) clamp(3rem, 7vw, 5.5rem);

}

.hero__wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.hero__top {
  font-family: var(--font-condensed);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: clamp(2.4rem, 8vw, 8rem);
  color: var(--coral);
}

.hero__script {
  font-family: var(--font-brush);
  font-weight: 400;
  font-size: clamp(3.4rem, 13vw, 8.5rem);
  color: var(--navy);
  margin-top: -.04em;
  padding-inline: .1em;
}

/* Bloc à deux colonnes réutilisable (profil, contact, à propos) */
.split {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.round-illus {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
}

.round-illus img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}





/* Section profil */
/* 1. Base : La grille "split" devient flexible */
.split {
  display: grid;
  /* Sur grand écran : colonne image fixe (380px) + colonne texte qui prend le reste */
  grid-template-columns: minmax(280px, 380px) 1fr; 
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  /* Suppression des largeurs fixes ici */
}

/* 2. Spécifique "Mon Profil" : Ajustement des proportions */
.split.profile {
  /* Sur ordinateur : image un peu plus large (420px), texte à droite */
  grid-template-columns: minmax(380px, 450px) 1fr;
  /* Suppression de width: 400px et width: 550px */
}

/* 3. Contenu de l'image (intro) */
.profile__intro {
  /* Suppression de width: 400px et des marges négatives */
  text-align: left;
  /* Ajout d'une marge supérieure normale */
  margin-bottom: 2rem; 
}

.profile__intro .section-title {
  /* Remplacement de margin-top: -140px par un espacement positif */
  margin-bottom: 1.5rem;
  margin-top: 0;
}

.profile__intro .round-illus {
  /* L'image est déjà responsive via .round-illus img { width: 100% } */
  max-width: 280px;
  margin: 0 auto; /* Centrer l'image */
  /* Suppression de margin-top: 40px et margin-top: 90px */
  margin-bottom: 1.5rem;
}

.profile__intro .profile__logo {
  /* Suppression de margin-top: 90px */
  margin-top: 0;
  margin-bottom: 1.5rem;
}

/* 4. Contenu du texte */
.profile__text {
  /* Suppression de width: 550px et height: 60% */
  /* Le texte prendra la largeur de la colonne grid (1fr) */
  max-width: 300ch; /* Limite la longueur des lignes pour la lisibilité */
  text-align: justify;
  margin-bottom: 2rem;
}

.profile .btn {
  margin-top: 1.5rem;
}

/* 5. MEDIA QUERY MOBILE (< 980px) */
@media (max-width: 980px) {
  .split,
  .split.profile {
    /* Sur tablette/mobile : une seule colonne */
    grid-template-columns: 1fr;
    /* L'image passe au-dessus du texte */
    align-items: start; 
  }

  .profile__intro,
  .profile__text {
    width: 100%; /* Force la largeur à 100% de la colonne */
    text-align: left; /* Le texte est justifié sur ordi, aligné à gauche sur mobile pour la lisibilité */
  }

  .profile__intro .section-title {
    margin-bottom: 1rem;
  }
  
  .profile__intro .round-illus {
    max-width: 200px; /* Image un peu plus petite sur mobile */
    margin-bottom: 1rem;
  }
}



/* Section domaines (aperçu, navy) */
.domains__grid {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 580px);
  justify-content: space-between;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.domains__intro .section-title {
	margin-top: -30px;
  margin-bottom: var(--space-4);
}

.domains__braces {
  width: 100%;
  max-width: 320px;
  margin-top: 3rem;
}

.domains__item {
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--line-light);
  margin-bottom: var(--space-3);
}

.domains__item:last-of-type {
  border-bottom: 0;
}

.domains__item h3 {
  font-size: 1.35rem;
  margin-bottom: .35rem;
}

.domains__item p {
  color: rgba(255, 255, 255, .82);
}

.domains .btn {
  margin-top: var(--space-2);
}

/* Section approche (aperçu, pink) */
.approach__grid {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 550px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
margin-bottom: -60px;
}

.container .section-title {
  margin-bottom: var(--space-4);
}

.arrow-list {
  display: grid;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.35rem;
	
}

.arrow-list li {
  display: flex;
  align-items: baseline;
  gap: .7rem;
  color: var(--ink);
}

/* La flèche est plus grosse que le texte et hérite de sa couleur (cf. maquette) */
.arrow-list li::before {
  content: "\2192";
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1;
}

/* Couleurs fidèles à la maquette : bleu / noir / bleu / noir / bleu / corail */
.arrow-list li:nth-child(odd) {
  color: var(--blue-accent);
}

.arrow-list li:first-child {
  color: var(--coral);
}

.approach__illus {
  /* Ajustez la taille maximale de l'image pour qu'elle corresponde à la liste */
  max-width: 100%; 
  max-height: 400px; /* Exemple : réglez cette valeur selon la hauteur de votre liste */
  width: auto;
  height: 65%;
  
  /* Pour aligner le bas de l'image avec le bas de la liste si nécessaire */
  display: flex;
  align-items: flex-end; 
}

.approach__illus img {
  display: block;
  max-width: 55%;
  height: auto;
}
.approach__illus .btn {
  align-self: flex-end;
}


/* Section services (aperçu) */
.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.check-list {
  display: grid;
  gap: .5rem;
  margin-block: var(--space-3);
}

.check-list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: var(--navy);
}

.services__photo img {
  width: 100%;
}

/* Section contact (navy) */
.contact__grid {
  display: grid;
  grid-template-columns: minmax(200px, 300px) 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.contact__card {
  text-align: center;
}


.contact__card .contact__prof {
  text-align: center;
margin-top:-10px;
}

.contact__card .round-illus {
  margin-bottom: var(--space-2);
}

.contact__name {
  font-weight: 700;
  color: var(--coral);
text-align: center;
font-family:rebel;
font-size:40px;
}

.contact__title-row {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}

.contact__title-row .brand__logo {
  width: 52px;
  color: var(--pink);
}

.contact__title-row .section-title {
  margin-bottom: 0;
  line-height: 1;
}

.form {
  margin-top: var(--space-4);
}

.form__row {
  margin-bottom: var(--space-3);
}

.form__label {
  display: block;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .5rem;
}

.form__control {
  width: 100%;
  padding: .85rem 1rem;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--radius);
  color: var(--ink);
  transition: border-color var(--transition);
}

.form__control:focus,
.form__control:focus-visible {
  outline: none;
  border-color: var(--focus);
  box-shadow: 0 0 0 3px rgba(38, 115, 166, .35);
}

textarea.form__control {
  min-height: 8rem;
  resize: vertical;
}

.form__control[aria-invalid="true"] {
  border-color: var(--error);
}

.form__control[aria-invalid="true"]:focus {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(225, 29, 40, .32);
}

.form__error {
  display: block;
  min-height: 1.2em;
  margin-top: .35rem;
  font-size: .9rem;
  color: var(--error-soft);
  font-weight: 700;
}

.form__feedback {
  margin-top: var(--space-2);
  padding: var(--space-2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .12);
  font-weight: 600;
}

.form__feedback[hidden] {
  display: none;
}

.form__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
}

/* ---------- 9. Pages internes ----------------------------- */
.page-head {
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
}

/* -- Domaines d'intervention -- */

h2 {
font-size: 40px;
}

.domain-row {
  display: grid;
  grid-template-columns: 38% 1fr;
  margin-bottom: var(--space-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.domain-row__label {
  display: flex;
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.25rem, 2.4vw, 1.9rem);
  line-height: 1.15;
}

/* Le titre reprend la couleur de l'étiquette (blanc) au lieu du noir par défaut */
.domain-row__label h2 {
  color: inherit;
}

.domain-row__body {
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.domain-row__body ul {
  display: grid;
  gap: .5rem;
  margin-top: var(--space-2);
  list-style: disc;
  padding-left: 1.2rem;
}

.domain-row__body p + p {
  margin-top: var(--space-2);
}

/* Variantes de couleur */
.domain-row--coral .domain-row__label {
  background: var(--coral);
  color: var(--white);
}

.domain-row--coral .domain-row__body {
  background: var(--pink);
  color: var(--text);
}

.domain-row--navy .domain-row__label {
  background: var(--navy-2);
  color: var(--white);
}

.domain-row--navy .domain-row__body {
  background: var(--blue-soft);
  color: var(--ink);
}

/* -- Approche pédagogique -- */
.article {
  max-width: none;
}

.article p {
  text-align: justify;
}

.article__block {
  margin-top: var(--space-4);
}

.article__block h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--coral);
  margin-bottom: .5rem;
}

/* -- Services et prestations -- */
.locations {
  margin-block: var(--space-3) var(--space-5);
}

.locations ul {
  list-style: disc;
  padding-left: 1.3rem;
  display: grid;
  gap: .4rem;
  margin-top: .5rem;
}

.price-center {
  display: flex;
  justify-content: center;
  text-transform: uppercase;

}

.price-duo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-3);
  text-transform: uppercase;

}

.price-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-3);
}

.price-card {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--radius-lg);
  text-align: center;
}

.price-card--navy {
  background: var(--navy);
  color: var(--white);
}

.price-card--coral {
  background: var(--coral);
  color: var(--white);
}

.price-card--wide {
  width: min(100%, 420px);
}

.price-card__title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--coral);
  margin-bottom: var(--space-2);
}

.price-card--coral .price-card__title {
  color: var(--white);
}

.price-card__title::after {
  content: "";
  display: block;
  width: 60%;
  height: 2px;
  margin: var(--space-2) auto 0;
  background: currentColor;
  opacity: .55;
}

.price-card__meta {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .95rem;
  line-height: 1.5;
}

.price-card__meta + .price-card__meta {
  margin-top: var(--space-3);
}

.price-card__nocaps {
  text-transform: none;
}

.price-card__icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin-block: var(--space-2);
  font-family: var(--font-body);
  font-weight: 700;
}

.price-card__icons svg {
  width: 30px;
  height: 30px;
  fill: var(--ink);
}

.price-list {
  display: grid;
  gap: .45rem;
  margin-top: var(--space-2);
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: .9rem;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: .5rem;
}

.price-row__lead {
  flex: 1;
  border-bottom: 2px dotted currentColor;
  opacity: .5;
  transform: translateY(-.25em);
}

.price-note {
  margin-top: var(--space-2);
  font-size: 1.05rem;
}

.price-footer {
  text-align: center;
  margin-top: var(--space-5);
}

.price-footer__from {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--ink);
  margin-bottom: var(--space-3);
}

/* -- À propos -- */
.about__title .script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--coral);
  font-size: 1.3em;
  margin-left: .2em;
  letter-spacing: 0;
}

.round-illus {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
margin-bottom: 100px;
}

.about__text {
	text-align:justify;
}

.about__text .btn {
  margin-top: var(--space-5);
}
