:root {
  --ink: #24313b;
  --muted: #5d6a72;
  --paper: #fffaf2;
  --white: #ffffff;
  --coral: #ff6b57;
  --teal: #12a7a5;
  --yellow: #ffd166;
  --green: #7bc96f;
  --blue: #3677d8;
  --rose: #ffe3dd;
  --line: rgba(36, 49, 59, 0.14);
  --shadow: 0 18px 42px rgba(36, 49, 59, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem clamp(1rem, 4vw, 3.5rem);
  background: rgba(255, 250, 242, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--coral), var(--teal));
  border-radius: 8px;
  font-weight: 800;
}

.brand-logo {
  width: 3.25rem;
  height: 3.25rem;
  flex: 0 0 auto;
  border-radius: 8px;
  object-fit: contain;
  background: var(--white);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav a {
  border-radius: 8px;
  padding: 0.65rem 0.8rem;
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
  background: rgba(18, 167, 165, 0.12);
}

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

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.65rem 0.8rem;
  color: var(--ink);
  background: var(--white);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 4vw, 3.5rem);
}

.page-hero {
  padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 4vw, 3.5rem);
  background:
    linear-gradient(120deg, rgba(255, 107, 87, 0.18), rgba(18, 167, 165, 0.18)),
    var(--paper);
}

.page-hero > * {
  width: min(980px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.page-hero h1 {
  max-width: 13ch;
}

.page-hero p:last-child {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.16rem;
}

.page-contact {
  width: auto;
  min-height: calc(100vh - 6rem);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.98) 0%, rgba(255, 250, 242, 0.88) 43%, rgba(255, 250, 242, 0.28) 100%),
    linear-gradient(180deg, rgba(36, 49, 59, 0.1), rgba(36, 49, 59, 0.28));
}

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

.hero-content {
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1.2rem;
  max-width: 13ch;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 0.96;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 620px;
  color: #3c4b54;
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 2rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border: 0;
  border-radius: 8px;
  padding: 0.85rem 1.05rem;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 12px 24px rgba(255, 107, 87, 0.25);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.button.call {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 12px 24px rgba(255, 209, 102, 0.28);
}

.quick-intro {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: min(1180px, calc(100% - 2rem));
  margin: -3rem auto 0;
  position: relative;
  z-index: 2;
}

.quick-intro div {
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quick-intro strong,
.quick-intro span {
  display: block;
}

.quick-intro strong {
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.quick-intro span {
  color: var(--muted);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  max-width: 620px;
  margin: 0;
}

.hero-stats div {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-stats dt {
  font-weight: 900;
}

.hero-stats dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.reassurance {
  background: #f1fbf9;
}

.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.reassurance-grid article {
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.reassurance-grid article:nth-child(1) {
  border-top: 8px solid var(--coral);
}

.reassurance-grid article:nth-child(2) {
  border-top: 8px solid var(--teal);
}

.reassurance-grid article:nth-child(3) {
  border-top: 8px solid var(--green);
}

.reassurance-grid p {
  color: var(--muted);
}

.section,
.intro,
.contact {
  padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1rem, 4vw, 3.5rem);
}

.section-grid,
.split,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.section-grid,
.section-heading,
.cards,
.split,
.timeline,
.resource-grid,
.contact {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.intro p:last-child,
.section-heading p,
.split p,
.contact p {
  color: var(--muted);
  font-size: 1.05rem;
}

.intro .eyebrow,
.intro p:last-child {
  color: rgba(255, 255, 255, 0.76);
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading h2 {
  max-width: 760px;
}

.section-heading p {
  max-width: 760px;
}

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

.card {
  min-height: 250px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.card-icon {
  display: inline-grid;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 1.2rem;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  font-weight: 900;
}

.card.coral .card-icon {
  background: var(--coral);
}

.card.teal .card-icon {
  background: var(--teal);
}

.card.yellow .card-icon {
  color: var(--ink);
  background: var(--yellow);
}

.card.green .card-icon {
  background: var(--green);
}

.card p {
  color: var(--muted);
}

.about {
  background:
    linear-gradient(180deg, rgba(18, 167, 165, 0.08), rgba(255, 250, 242, 0)),
    var(--paper);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1rem;
  width: min(1180px, 100%);
  margin: 0 auto 1rem;
}

.about-layout.bottom {
  margin-top: 1rem;
}

.about-panel {
  padding: clamp(1.2rem, 3vw, 2rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-panel h3 {
  margin-bottom: 0.75rem;
}

.about-panel p {
  color: var(--muted);
}

.about-panel p:last-child {
  margin-bottom: 0;
}

.about-panel.accent {
  border-top: 8px solid var(--coral);
}

.teal-panel {
  border-top: 8px solid var(--teal);
}

.yellow-panel {
  border-top: 8px solid var(--yellow);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  width: min(1180px, 100%);
  margin: 1rem auto;
}

.proof-grid div {
  min-height: 155px;
  padding: 1rem;
  background: var(--ink);
  border-radius: 8px;
  color: var(--white);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  margin-bottom: 0.55rem;
  color: var(--yellow);
  font-size: 1.05rem;
}

.proof-grid span {
  color: rgba(255, 255, 255, 0.78);
}

.moment-strip,
.service-moments {
  display: grid;
  gap: 1rem;
  width: min(1180px, 100%);
  margin: 2rem auto 0;
}

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

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

.moment-card,
.section-visual {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.moment-card img,
.section-visual img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.moment-card img {
  height: clamp(220px, 24vw, 320px);
}

.section-visual {
  margin-top: 1.4rem;
}

.split .section-visual {
  grid-column: 2;
}

.section-visual img {
  height: clamp(260px, 30vw, 420px);
}

.moment-card figcaption,
.section-visual figcaption {
  padding: 0.9rem 1rem;
  color: var(--muted);
  font-weight: 900;
}

.section-visual figcaption strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--ink);
}

.values-block {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: center;
  width: min(1180px, 100%);
  margin: 1rem auto;
  padding: clamp(1.2rem, 4vw, 2.2rem);
  background: #f1fbf9;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.values-block p {
  color: var(--muted);
}

.value-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.value-list li {
  padding: 0.8rem 0.9rem;
  background: var(--white);
  border-left: 6px solid var(--green);
  border-radius: 8px;
  color: var(--muted);
  font-weight: 700;
}

.split {
  align-items: center;
}

.method-list {
  display: grid;
  gap: 0.8rem;
}

.method-list div {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 8px solid var(--teal);
  border-radius: 8px;
}

.method-list strong {
  color: var(--coral);
}

.method-list span {
  color: var(--muted);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list.compact {
  align-self: start;
}

.service-list li {
  position: relative;
  min-height: 4rem;
  padding: 0.9rem 0.95rem 0.9rem 2.6rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-weight: 700;
}

.service-list li::before {
  position: absolute;
  left: 0.85rem;
  top: 1rem;
  width: 0.85rem;
  height: 0.85rem;
  content: "";
  border-radius: 999px;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(255, 107, 87, 0.14);
}

.service-detail {
  background: #f7fff4;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.service-cards article {
  padding: 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-cards article:nth-child(4n + 1) {
  border-top: 8px solid var(--coral);
}

.service-cards article:nth-child(4n + 2) {
  border-top: 8px solid var(--teal);
}

.service-cards article:nth-child(4n + 3) {
  border-top: 8px solid var(--yellow);
}

.service-cards article:nth-child(4n + 4) {
  border-top: 8px solid var(--green);
}

.service-cards h3 {
  margin-bottom: 0.65rem;
}

.service-cards p {
  color: var(--muted);
}

.service-cards p:last-child {
  margin-bottom: 0;
}

.timeline-section {
  background: #f1fbf9;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  list-style: none;
}

.timeline li {
  padding: 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.timeline span {
  display: inline-grid;
  width: 2.3rem;
  height: 2.3rem;
  margin-bottom: 1rem;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}

.timeline p {
  color: var(--muted);
}

.resources {
  background: var(--rose);
}

.cabinet-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1rem;
  width: min(1180px, 100%);
  margin: 2rem auto 0;
}

.cabinet-photo {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cabinet-photo img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.cabinet-photo figcaption {
  padding: 0.9rem 1rem;
  color: var(--muted);
  font-weight: 900;
}

.cabinet-notes {
  display: grid;
  gap: 1rem;
}

.cabinet-notes article {
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cabinet-notes article:nth-child(1) {
  border-left: 8px solid var(--teal);
}

.cabinet-notes article:nth-child(2) {
  border-left: 8px solid var(--green);
}

.cabinet-notes article:nth-child(3) {
  border-left: 8px solid var(--coral);
}

.cabinet-notes p,
.cabinet-closing {
  color: var(--muted);
}

.cabinet-closing {
  width: min(1180px, 100%);
  margin: 1rem auto 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.8rem;
  width: min(1180px, 100%);
  margin: 1rem auto 0;
}

.gallery-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1rem, 4vw, 3rem);
  width: min(1180px, 100%);
  margin: 2rem auto 0;
  align-items: end;
}

.gallery-header h3 {
  margin-bottom: 0;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.gallery-header p {
  margin-bottom: 0;
  color: var(--muted);
}

.photo-grid figure {
  position: relative;
  grid-column: span 4;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.photo-grid figure:nth-child(1),
.photo-grid figure:nth-child(4) {
  grid-column: span 6;
}

.photo-grid figure:nth-child(2),
.photo-grid figure:nth-child(3),
.photo-grid figure:nth-child(5),
.photo-grid figure:nth-child(6) {
  grid-column: span 4;
}

.gallery-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.photo-grid img {
  width: 100%;
  height: clamp(240px, 28vw, 360px);
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.photo-grid figure:nth-child(2) img {
  object-position: center 58%;
}

.photo-grid figure:nth-child(7) img {
  object-position: center 46%;
}

.photo-grid figure:nth-child(5) img {
  object-position: center 54%;
}

.photo-grid figure:nth-child(6) img {
  object-position: center 42%;
}

.photo-grid figure:hover img,
.photo-grid figure:focus-within img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.025);
}

.photo-grid figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 1rem;
  color: var(--white);
  background: linear-gradient(180deg, rgba(36, 49, 59, 0), rgba(36, 49, 59, 0.82));
  font-size: 0.92rem;
  font-weight: 900;
}

.gallery-link:focus-visible {
  outline: 4px solid var(--yellow);
  outline-offset: -4px;
}

.gallery-dialog {
  position: relative;
  width: min(1040px, calc(100% - 2rem));
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.gallery-dialog::backdrop {
  background: rgba(36, 49, 59, 0.72);
}

.gallery-dialog img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: var(--ink);
}

.gallery-dialog figcaption {
  padding: 1rem 3.5rem 1rem 1rem;
  color: var(--muted);
  font-weight: 900;
}

.gallery-close {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

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

.resource-grid a {
  min-height: 170px;
  padding: 1.25rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
}

.resource-grid strong,
.resource-grid span {
  display: block;
}

.resource-grid strong {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.resource-grid span {
  color: var(--muted);
}

.contact {
  align-items: center;
  background: var(--ink);
  color: var(--white);
}

.contact .eyebrow,
.contact p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0.85rem;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.contact-card {
  display: grid;
  gap: 0.9rem;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.contact-item {
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.contact-item span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-item strong,
.contact-item a {
  color: var(--white);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 900;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-item a:hover,
.contact-item a:focus-visible {
  color: var(--yellow);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1rem, 4vw, 3.5rem);
  color: var(--muted);
  background: var(--white);
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
}

.legal-hero h1 {
  max-width: none;
}

.legal-content {
  display: grid;
  gap: 1rem;
  width: min(980px, 100%);
  margin-inline: auto;
}

.legal-content article {
  padding: 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-content p {
  color: var(--muted);
}

.legal-content .todo {
  color: #8a5a00;
  background: rgba(255, 209, 102, 0.22);
  border-left: 5px solid var(--yellow);
  padding: 0.8rem;
  border-radius: 8px;
  font-weight: 700;
}

.project-hero {
  background:
    linear-gradient(120deg, rgba(255, 209, 102, 0.28), rgba(18, 167, 165, 0.18)),
    var(--paper);
}

.project-section {
  background: var(--paper);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.process-steps li,
.goal-grid article,
.tool-grid article {
  padding: 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.process-steps span {
  display: inline-grid;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 0.8rem;
  place-items: center;
  color: var(--white);
  background: var(--coral);
  border-radius: 999px;
  font-weight: 900;
}

.process-steps strong,
.tool-grid strong {
  display: block;
  margin-bottom: 0.45rem;
}

.process-steps p,
.goal-grid p,
.tool-grid span {
  color: var(--muted);
}

.public-section {
  background: #f1fbf9;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.tag-cloud span {
  display: inline-flex;
  padding: 0.7rem 0.85rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

.goals-section {
  background: var(--rose);
}

.goal-grid,
.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.goal-grid article:nth-child(3n + 1) {
  border-top: 8px solid var(--coral);
}

.goal-grid article:nth-child(3n + 2) {
  border-top: 8px solid var(--teal);
}

.goal-grid article:nth-child(3n + 3) {
  border-top: 8px solid var(--green);
}

.tools-section {
  background: var(--paper);
}

.tool-grid article {
  border-left: 8px solid var(--yellow);
}

.workshops-highlight {
  background: #f7fff4;
}

.mission-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mission-list li {
  padding: 0.9rem 1rem;
  color: var(--muted);
  background: var(--white);
  border-left: 8px solid var(--teal);
  border-radius: 8px;
  font-weight: 800;
}

.project-cta {
  width: auto;
}

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    inset: 100% 1rem auto 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.7rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .section-grid,
  .about-layout,
  .values-block,
  .gallery-header,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .split .section-visual {
    grid-column: auto;
  }

  .cards,
  .proof-grid,
  .service-cards,
  .moment-strip,
  .service-moments,
    .quick-intro,
    .reassurance-grid,
    .process-steps,
  .goal-grid,
  .tool-grid,
  .timeline,
    .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .photo-grid figure,
  .photo-grid figure:nth-child(1),
  .photo-grid figure:nth-child(2),
  .photo-grid figure:nth-child(3),
  .photo-grid figure:nth-child(4),
  .photo-grid figure:nth-child(5) {
    grid-column: span 3;
  }

  .cabinet-showcase {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding-top: 4rem;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(255, 250, 242, 0.96) 0%, rgba(255, 250, 242, 0.88) 58%, rgba(255, 250, 242, 0.55) 100%);
  }

  h1 {
    max-width: none;
    font-size: 2.65rem;
  }

  .hero-stats,
  .quick-intro,
  .cards,
  .proof-grid,
  .moment-strip,
  .service-moments,
  .value-list,
  .service-cards,
    .reassurance-grid,
    .process-steps,
  .goal-grid,
  .tool-grid,
  .timeline,
    .resource-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid figure,
  .photo-grid figure:nth-child(1),
  .photo-grid figure:nth-child(2),
  .photo-grid figure:nth-child(3),
  .photo-grid figure:nth-child(4),
  .photo-grid figure:nth-child(5) {
    grid-column: auto;
  }

  .photo-grid img {
    height: 260px;
  }

  .method-list div {
    grid-template-columns: 1fr;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}

.home-hero,
.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 6rem) clamp(1rem, 4vw, 3.5rem);
  background: linear-gradient(120deg, rgba(255, 209, 102, 0.25), rgba(18, 167, 165, 0.16)), var(--paper);
}

.home-hero {
  min-height: 78vh;
}

.hero-copy {
  width: min(720px, 100%);
  max-width: 100%;
  min-width: 0;
  justify-self: end;
}

.hero-copy h1 {
  max-width: 12ch;
}

.hero-copy p {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.14rem;
}

.hero-photo {
  margin: 0;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: clamp(360px, 50vw, 620px);
  object-fit: cover;
}

.content-section {
  background: var(--paper);
}

.content-grid {
  display: grid;
  gap: 1rem;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.content-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.54fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  min-height: 220px;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 8px solid var(--teal);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.content-block.coral {
  border-left-color: var(--coral);
}

.content-block.teal {
  border-left-color: var(--teal);
}

.content-block.yellow {
  border-left-color: var(--yellow);
}

.content-block.green {
  border-left-color: var(--green);
}

.content-block p,
.content-block li {
  color: var(--muted);
}

.content-block ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.content-block li {
  padding: 0.7rem 0.8rem;
  background: #f7fff4;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.content-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.content-photo img {
  width: 100%;
  height: clamp(220px, 24vw, 320px);
  object-fit: cover;
}

.comparison-table {
  width: 100%;
  margin-top: 1.25rem;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.comparison-table table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 0.8rem 0.9rem;
  border-bottom: 1px solid var(--line);
  text-align: center;
  vertical-align: middle;
  color: var(--ink);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
}

.comparison-table thead th {
  position: sticky;
  top: 0;
  background: #e8f5f2;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.comparison-table tbody th {
  background: #fffaf0;
  font-weight: 900;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.related-section {
  background: #f1fbf9;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.link-card {
  display: grid;
  gap: 0.55rem;
  min-height: 190px;
  padding: 1.15rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.link-card:hover,
.link-card:focus-visible {
  transform: translateY(-2px);
}

.link-card span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.link-card strong {
  font-size: 1.25rem;
}

.link-card em {
  color: var(--muted);
  font-style: normal;
}

.directory-section {
  background: var(--rose);
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.directory-grid section {
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.directory-grid ul {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.directory-grid a {
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.directory-grid a:hover,
.directory-grid a:focus-visible,
.nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(255, 209, 102, 0.28);
}

@media (max-width: 920px) {
  .home-hero,
  .page-hero {
    display: block;
  }

  .hero-photo {
    margin-top: 1.5rem;
  }

  .content-block,
  .link-grid,
  .directory-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .content-block ul {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: none;
  }
}
/* Refonte visuelle ludique - 2026-06-28 */
:root {
  --ink: #1f3135;
  --muted: #52656b;
  --paper: #fff8ec;
  --white: #ffffff;
  --coral: #f2665e;
  --teal: #2aa6a1;
  --yellow: #f6c54f;
  --green: #8abc5b;
  --blue: #5a86d6;
  --rose: #fff0f0;
  --mint: #ecfbf5;
  --lavender: #f3f0ff;
  --line: rgba(31, 49, 53, 0.12);
  --shadow: 0 16px 34px rgba(31, 49, 53, 0.10);
  --soft-shadow: 0 10px 24px rgba(31, 49, 53, 0.08);
}

body {
  background:
    linear-gradient(180deg, #fff8ec 0%, #f2fbf8 38%, #fff7ee 68%, #f8f4ff 100%);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
}

h1,
h2,
h3,
.brand strong,
.link-card strong {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 14ch;
  font-size: clamp(2.35rem, 5.8vw, 5.2rem);
  line-height: 1;
}

h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.9rem);
}

.site-header {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 22px rgba(31, 49, 53, 0.06);
}

.brand-logo,
.brand-mark {
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(42, 166, 161, 0.16);
}

.nav a {
  position: relative;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.45);
}

.nav a:hover,
.nav a:focus-visible,
.nav a[aria-current="page"] {
  border-color: rgba(42, 166, 161, 0.18);
  background: rgba(236, 251, 245, 0.92);
}

.home-hero,
.page-hero {
  position: relative;
  grid-template-columns: minmax(0, 0.88fr) minmax(290px, 1.02fr);
  gap: clamp(1.4rem, 4.5vw, 5rem);
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(255, 240, 214, 0.95), rgba(236, 251, 245, 0.95) 47%, rgba(255, 240, 240, 0.9)),
    var(--paper);
}

.home-hero::before,
.page-hero::before {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  content: "";
  background:
    linear-gradient(90deg, rgba(242, 102, 94, 0.10), rgba(246, 197, 79, 0.12), rgba(42, 166, 161, 0.10));
  clip-path: polygon(0 28%, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.hero-copy,
.hero-photo {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 2rem;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.7rem;
  color: #116b69;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(42, 166, 161, 0.18);
  border-radius: 8px;
  letter-spacing: 0;
}

.slogan {
  max-width: 620px;
  margin: -0.35rem 0 1rem;
  color: #0f6f6c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 700;
  line-height: 1.28;
}

.hero-copy > p:not(.eyebrow):not(.slogan) {
  color: #41565c;
  font-size: 1.12rem;
}

.hero-photo {
  border: 6px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  box-shadow: 0 24px 54px rgba(31, 49, 53, 0.16);
  transform: rotate(0.7deg);
}

.hero-photo img {
  height: clamp(300px, 43vw, 560px);
}

.button {
  border-radius: 8px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--coral), #e45a75);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.76);
}

.quick-intro {
  gap: 0.8rem;
}

.quick-intro div {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(31, 49, 53, 0.10);
  box-shadow: var(--soft-shadow);
}

.quick-intro div::before {
  display: block;
  width: 2.4rem;
  height: 0.45rem;
  margin-bottom: 0.75rem;
  border-radius: 8px;
  content: "";
  background: var(--teal);
}

.quick-intro div:nth-child(2)::before {
  background: var(--coral);
}

.quick-intro div:nth-child(3)::before {
  background: var(--yellow);
}

.section {
  padding-top: clamp(3rem, 7vw, 5rem);
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.content-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0)),
    transparent;
}

.section-heading {
  width: min(980px, 100%);
}

.section-heading h2 {
  max-width: 17ch;
}

.content-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.35rem);
}

.content-block {
  position: relative;
  grid-column: span 6;
  grid-template-columns: 1fr;
  align-items: start;
  min-height: 0;
  overflow: hidden;
  padding: clamp(1rem, 2.2vw, 1.55rem);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(31, 49, 53, 0.10);
  border-top: 7px solid var(--teal);
  border-left: 1px solid rgba(31, 49, 53, 0.10);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.content-block::after {
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: 3.6rem;
  height: 3.6rem;
  content: "";
  background: linear-gradient(135deg, rgba(42, 166, 161, 0.12), rgba(246, 197, 79, 0.12));
  border-radius: 8px;
  transform: rotate(8deg);
  pointer-events: none;
}

.content-block.coral {
  border-top-color: var(--coral);
}

.content-block.teal {
  border-top-color: var(--teal);
}

.content-block.yellow {
  border-top-color: var(--yellow);
}

.content-block.green {
  border-top-color: var(--green);
}

.content-block:nth-child(5n + 1) {
  grid-column: span 7;
}

.content-block:nth-child(5n + 2) {
  grid-column: span 5;
}

.content-block.has-table,
.content-block.photo-wide,
.content-block:nth-child(6n) {
  grid-column: span 12;
}

.content-block.photo-wide {
  grid-template-columns: minmax(0, 0.98fr) minmax(260px, 0.74fr);
}

.content-block.photo-wide.is-reversed {
  grid-template-columns: minmax(260px, 0.74fr) minmax(0, 0.98fr);
}

.content-block.is-reversed .content-photo {
  order: -1;
}

.content-block.no-photo {
  background: rgba(255, 255, 255, 0.70);
}

.content-block h2 {
  margin-bottom: 0.7rem;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.content-block p,
.content-block li {
  color: #53666c;
}

.content-block ul {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.45rem;
}

.content-block li {
  padding: 0.55rem 0.7rem;
  background: rgba(236, 251, 245, 0.82);
  border-color: rgba(42, 166, 161, 0.14);
  font-size: 0.94rem;
}

.content-block.coral li {
  background: rgba(255, 240, 240, 0.88);
  border-color: rgba(242, 102, 94, 0.16);
}

.content-block.yellow li {
  background: rgba(255, 248, 223, 0.92);
  border-color: rgba(246, 197, 79, 0.20);
}

.content-block.green li {
  background: rgba(241, 250, 232, 0.90);
  border-color: rgba(138, 188, 91, 0.18);
}

.content-photo {
  align-self: stretch;
  border: 5px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(31, 49, 53, 0.10);
}

.content-photo img {
  height: 210px;
}

.content-block.photo-small .content-photo {
  max-width: 360px;
}

.content-block.photo-small .content-photo img {
  height: 180px;
}

.content-block.photo-tall .content-photo img {
  height: 290px;
}

.content-block.photo-wide .content-photo img {
  height: min(360px, 34vw);
}

.content-block:nth-child(4n + 1) .content-photo {
  transform: rotate(-0.6deg);
}

.content-block:nth-child(4n + 3) .content-photo {
  transform: rotate(0.6deg);
}

.comparison-table {
  background: rgba(255, 255, 255, 0.92);
}

.related-section {
  background: linear-gradient(180deg, rgba(236, 251, 245, 0.86), rgba(255, 255, 255, 0.36));
}

.directory-section {
  background: linear-gradient(180deg, rgba(255, 240, 240, 0.86), rgba(255, 248, 223, 0.62));
}

.link-card,
.directory-grid section,
.contact-card {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
}

.link-card {
  border-top: 6px solid var(--teal);
}

.link-card:nth-child(3n + 2) {
  border-top-color: var(--coral);
}

.link-card:nth-child(3n + 3) {
  border-top-color: var(--yellow);
}

.contact {
  background:
    linear-gradient(135deg, rgba(42, 166, 161, 0.12), rgba(242, 102, 94, 0.10)),
    var(--white);
}

.site-footer {
  background: #1f3135;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a {
  color: #fff;
}

@media (max-width: 1100px) {
  .content-block,
  .content-block:nth-child(5n + 1),
  .content-block:nth-child(5n + 2),
  .content-block:nth-child(6n) {
    grid-column: span 12;
  }
}

@media (max-width: 920px) {
  .home-hero,
  .page-hero,
  .content-block.photo-wide,
  .content-block.photo-wide.is-reversed {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    transform: none;
  }

  .content-block.is-reversed .content-photo {
    order: 0;
  }

  .content-photo img,
  .content-block.photo-tall .content-photo img,
  .content-block.photo-wide .content-photo img {
    height: clamp(190px, 48vw, 300px);
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: clamp(2rem, 13vw, 3.1rem);
  }

  .slogan {
    font-size: 1.12rem;
  }

  .quick-intro {
    margin-top: -1.5rem;
  }

  .content-block {
    padding: 1rem;
  }
}
/* Ajustement des hauteurs pour laisser respirer la page */
.home-hero,
.page-hero {
  min-height: auto;
  padding-top: clamp(2.6rem, 5vw, 4.2rem);
  padding-bottom: clamp(3rem, 5.5vw, 4.6rem);
}

.home-hero {
  min-height: min(720px, 74vh);
}

.hero-photo img {
  height: clamp(250px, 35vw, 455px);
}

.page-hero .hero-photo img {
  height: clamp(230px, 30vw, 410px);
}

.hero-actions {
  margin: 1.4rem 0 0;
}
/* Hero plus compact et plus lisible */
.hero-copy h1,
.page-hero h1 {
  max-width: 18ch;
  font-size: clamp(2.15rem, 4.6vw, 4.1rem);
}

.home-hero,
.page-hero {
  padding-top: clamp(2rem, 3.6vw, 3.2rem);
  padding-bottom: clamp(2.4rem, 4vw, 3.6rem);
}

.home-hero {
  min-height: min(650px, 68vh);
}

.hero-photo img {
  height: clamp(230px, 30vw, 390px);
}

.page-hero .hero-photo img {
  height: clamp(220px, 27vw, 360px);
}

.quick-intro {
  margin-top: -2.2rem;
}
/* Cartes d'introduction légèrement remontées sous le hero */
.quick-intro {
  margin-top: clamp(-6rem, -8vw, -4rem);
}

@media (max-width: 920px) {
  .quick-intro {
    margin-top: -1.2rem;
  }
}
/* Ajustement final pour voir la suite dès le premier écran */
.quick-intro {
  margin-top: -7.4rem;
}

@media (max-width: 920px) {
  .quick-intro {
    margin-top: -1.2rem;
  }
}
/* Empêche les cartes de s'étirer en gros pavés */
.content-grid {
  align-items: start;
}

.content-block {
  height: fit-content;
}
/* Les blocs illustrés deviennent des lignes lisibles avec photo latérale */
.content-block.photo-wide,
.content-block.photo-small,
.content-block.photo-tall,
.content-block.photo-soft {
  grid-column: span 12;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.46fr);
}

.content-block.photo-wide.is-reversed,
.content-block.photo-small.is-reversed,
.content-block.photo-tall.is-reversed,
.content-block.photo-soft.is-reversed {
  grid-template-columns: minmax(220px, 0.46fr) minmax(0, 1fr);
}

.content-block.photo-small .content-photo {
  max-width: none;
}

.content-block.photo-small .content-photo img,
.content-block.photo-tall .content-photo img,
.content-block.photo-soft .content-photo img {
  height: clamp(190px, 22vw, 285px);
}

@media (max-width: 920px) {
  .content-block.photo-wide,
  .content-block.photo-small,
  .content-block.photo-tall,
  .content-block.photo-soft,
  .content-block.photo-wide.is-reversed,
  .content-block.photo-small.is-reversed,
  .content-block.photo-tall.is-reversed,
  .content-block.photo-soft.is-reversed {
    grid-template-columns: 1fr;
  }
}
/* Hero mobile plus compact */
@media (max-width: 640px) {
  .home-hero,
  .page-hero {
    padding-top: 1.35rem;
    padding-bottom: 2rem;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(1.85rem, 10vw, 2.55rem);
    line-height: 1.04;
  }

  .slogan {
    margin-bottom: 0.7rem;
    font-size: 1rem;
  }

  .hero-copy > p:not(.eyebrow):not(.slogan) {
    font-size: 1rem;
  }

  .hero-actions {
    gap: 0.55rem;
    margin-top: 1rem;
  }

  .hero-photo {
    margin-top: 1rem;
  }

  .hero-photo img,
  .page-hero .hero-photo img {
    height: clamp(175px, 48vw, 220px);
  }
}
/* Inspiration douce et distincte : site ressource complet */
.site-header {
  border-bottom: 0;
}

.brand {
  padding: 0.22rem 0.45rem 0.22rem 0.25rem;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(42, 166, 161, 0.12);
  border-radius: 8px;
}

.brand strong {
  color: #173f44;
  font-size: 1.1rem;
}

.brand small {
  color: #587077;
}

.nav {
  padding: 0.25rem;
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid rgba(31, 49, 53, 0.08);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(31, 49, 53, 0.06);
}

.nav a {
  padding-inline: 0.72rem;
  font-size: 0.95rem;
}

.home-hero,
.page-hero {
  background:
    radial-gradient(circle at 9% 17%, rgba(255, 255, 255, 0.72) 0 13%, transparent 14%),
    radial-gradient(circle at 90% 18%, rgba(246, 197, 79, 0.20) 0 9%, transparent 10%),
    linear-gradient(135deg, #effbf8 0%, #fff9ed 43%, #fff1f1 100%);
}

.home-hero::before,
.page-hero::before {
  background: linear-gradient(90deg, rgba(42, 166, 161, 0.15), rgba(255, 255, 255, 0.48), rgba(242, 102, 94, 0.10));
}

.hero-photo {
  border-width: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.slogan {
  padding-left: 0.85rem;
  border-left: 5px solid var(--yellow);
}

.quick-intro div {
  border-top: 5px solid var(--teal);
}

.quick-intro div:nth-child(2) {
  border-top-color: var(--coral);
}

.quick-intro div:nth-child(3) {
  border-top-color: var(--yellow);
}

.reference-hub {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(236, 251, 245, 0.72)),
    transparent;
}

.need-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.need-grid a {
  position: relative;
  display: grid;
  gap: 0.65rem;
  min-height: 230px;
  padding: 1.2rem;
  overflow: hidden;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(31, 49, 53, 0.10);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  text-decoration: none;
}

.need-grid a::after {
  position: absolute;
  right: -1.6rem;
  bottom: -1.8rem;
  width: 6.5rem;
  height: 6.5rem;
  content: "";
  background: rgba(42, 166, 161, 0.10);
  border-radius: 8px;
  transform: rotate(12deg);
}

.need-grid a:nth-child(2)::after {
  background: rgba(242, 102, 94, 0.11);
}

.need-grid a:nth-child(3)::after {
  background: rgba(246, 197, 79, 0.16);
}

.need-grid a:nth-child(4)::after {
  background: rgba(90, 134, 214, 0.12);
}

.need-grid span {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  color: #0d6967;
  background: #e6fbf6;
  border-radius: 8px;
  font-weight: 900;
}

.need-grid strong {
  position: relative;
  z-index: 1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.34rem;
  line-height: 1.12;
}

.need-grid em {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-style: normal;
}

.content-block {
  backdrop-filter: blur(10px);
}

.content-block h2::after {
  display: block;
  width: 3rem;
  height: 0.32rem;
  margin-top: 0.65rem;
  content: "";
  background: currentColor;
  border-radius: 8px;
  opacity: 0.18;
}

.directory-section .section-heading h2 {
  max-width: 22ch;
}

.directory-grid section {
  border-top: 5px solid rgba(42, 166, 161, 0.45);
}

.directory-grid section:nth-child(2n) {
  border-top-color: rgba(242, 102, 94, 0.45);
}

.directory-grid section:nth-child(3n) {
  border-top-color: rgba(246, 197, 79, 0.70);
}

@media (max-width: 1100px) {
  .need-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .brand {
    background: transparent;
    border: 0;
    padding: 0;
  }

  .nav {
    border-radius: 8px;
  }

  .need-grid {
    grid-template-columns: 1fr;
  }

  .need-grid a {
    min-height: 0;
  }
}
/* Accueil mobile : laisser apparaître la suite sous le hero */
@media (max-width: 640px) {
  .home-hero + .quick-intro {
    margin-top: -4.4rem;
  }
}
/* Accueil référence sans émoticônes */
.home-hero {
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.1fr);
}

.home-hero .slogan {
  display: none;
}

.home-proof div strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.home-audience {
  background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(236,251,245,.65));
}

.home-audience .section-heading {
  padding: clamp(1.3rem, 3vw, 2rem);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(31,49,53,.1);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.service-showcase,
.trust-grid,
.testimonial-grid {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  gap: 1rem;
}

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

.service-showcase a {
  display: grid;
  overflow: hidden;
  min-height: 100%;
  color: var(--ink);
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(31,49,53,.1);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  text-decoration: none;
}

.service-showcase img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.service-showcase span,
.service-showcase strong,
.service-showcase em {
  margin-inline: 1rem;
}

.service-showcase span {
  margin-top: 1rem;
  color: #0f6f6c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 800;
}

.service-showcase strong {
  margin-top: .4rem;
  color: var(--muted);
  font-size: .98rem;
}

.service-showcase em {
  width: fit-content;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: .55rem .75rem;
  color: white;
  background: var(--teal);
  border-radius: 8px;
  font-style: normal;
  font-weight: 900;
}

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

.trust-grid article,
.testimonial-grid blockquote {
  margin: 0;
  padding: 1.15rem;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(31,49,53,.1);
  border-top: 6px solid var(--teal);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.trust-grid article:nth-child(2n) {
  border-top-color: var(--coral);
}

.trust-grid article:nth-child(3n) {
  border-top-color: var(--yellow);
}

.trust-grid span,
.process-timeline span {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  color: #0f6f6c;
  background: #e6fbf6;
  border-radius: 8px;
  font-weight: 900;
}

.trust-grid h3 {
  margin: .85rem 0 .45rem;
}

.cabinet-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .85rem;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.cabinet-gallery figure {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border: 6px solid rgba(255,255,255,.78);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.cabinet-gallery figure:nth-child(1),
.cabinet-gallery figure:nth-child(5) {
  grid-column: span 3;
}

.cabinet-gallery figure:nth-child(2),
.cabinet-gallery figure:nth-child(3),
.cabinet-gallery figure:nth-child(4),
.cabinet-gallery figure:nth-child(6) {
  grid-column: span 2;
}

.cabinet-gallery img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.cabinet-gallery figcaption {
  position: absolute;
  left: .8rem;
  bottom: .8rem;
  padding: .45rem .7rem;
  color: var(--ink);
  background: rgba(255,255,255,.86);
  border-radius: 8px;
  font-weight: 900;
}

.center-action {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0 0;
}

.home-statement {
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 3.5rem);
  background: white;
}

.home-statement p {
  width: min(1000px, 100%);
  margin: 0 auto;
  color: #6b7478;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  line-height: 1.22;
  text-align: center;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: .75rem;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.process-timeline li {
  position: relative;
  display: grid;
  gap: .55rem;
  padding: 1rem;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(31,49,53,.1);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.process-timeline strong {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.1;
}

.process-timeline em,
.testimonial-grid cite {
  color: var(--muted);
  font-style: normal;
}

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

.testimonial-grid blockquote {
  border-top-color: var(--yellow);
}

.testimonial-grid blockquote::before {
  display: block;
  margin-bottom: .8rem;
  color: var(--yellow);
  content: "★★★★★";
  letter-spacing: .08em;
}

.testimonial-grid p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.25;
}

.home-final-cta {
  display: grid;
  grid-template-columns: minmax(260px, .65fr) minmax(0, 1fr);
  gap: clamp(1.3rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 3.5rem);
  background: linear-gradient(135deg, rgba(236,251,245,.95), rgba(255,241,241,.95));
}

.home-final-cta figure {
  margin: 0;
  overflow: hidden;
  border: 8px solid rgba(255,255,255,.78);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.home-final-cta img {
  width: 100%;
  height: clamp(260px, 34vw, 420px);
  object-fit: cover;
}

.home-final-cta > div {
  max-width: 760px;
}

@media (max-width: 1100px) {
  .service-showcase,
  .trust-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .service-showcase,
  .trust-grid,
  .testimonial-grid,
  .home-final-cta,
  .process-timeline {
    grid-template-columns: 1fr;
  }

  .cabinet-gallery {
    grid-template-columns: 1fr;
  }

  .cabinet-gallery figure,
  .cabinet-gallery figure:nth-child(1),
  .cabinet-gallery figure:nth-child(2),
  .cabinet-gallery figure:nth-child(3),
  .cabinet-gallery figure:nth-child(4),
  .cabinet-gallery figure:nth-child(5),
  .cabinet-gallery figure:nth-child(6) {
    grid-column: span 1;
  }
}

.home-hero ~ .standard-home-content { display: none; }
/* Accueil : supprimer les anciens blocs génériques après reconstruction */
.home-hero + .quick-intro:not(.home-proof),
.home-hero ~ .standard-home-content,
.home-hero ~ .related-section,
.home-hero ~ .directory-section,
.home-hero ~ .contact {
  display: none;
}


/* Page Pourquoi choisir le cabinet */
.cabinet-open {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
  gap: clamp(1.4rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4.5rem) clamp(1rem, 4vw, 3.5rem);
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(232,250,244,.9));
}

.cabinet-open > div {
  max-width: 760px;
}

.cabinet-open h2,
.cabinet-daily h2,
.cabinet-split h2 {
  margin: .4rem 0 1rem;
  font-size: clamp(2rem, 4.2vw, 4.4rem);
  line-height: .98;
}

.cabinet-open p,
.cabinet-split p {
  color: var(--muted);
  font-size: 1.08rem;
}

.cabinet-open figure,
.cabinet-split figure,
.cabinet-photo-band figure {
  margin: 0;
  overflow: hidden;
  border: 8px solid rgba(255,255,255,.78);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cabinet-open img {
  width: 100%;
  height: clamp(360px, 48vw, 620px);
  object-fit: cover;
}

.cabinet-open figcaption,
.cabinet-photo-band figcaption {
  padding: .85rem 1rem;
  color: var(--ink);
  background: rgba(255,255,255,.9);
  font-weight: 800;
}

.commitment-section {
  background: #fff9ef;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.commitment-grid article {
  padding: 1.15rem;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(31,49,53,.08);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.commitment-grid span {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  color: #0f6f6c;
  background: #e6fbf6;
  border-radius: 999px;
  font-weight: 950;
}

.commitment-grid article:nth-child(2n) span {
  color: #b24a53;
  background: #fff0f1;
}

.commitment-grid article:nth-child(3n) span {
  color: #9c6a00;
  background: #fff5d8;
}

.commitment-grid h3 {
  margin: .9rem 0 .45rem;
}

.cabinet-photo-band {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 1rem;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 4vw, 3.5rem);
  background: white;
}

.cabinet-photo-band img {
  width: 100%;
  height: clamp(240px, 28vw, 420px);
  object-fit: cover;
}

.cabinet-quote {
  padding: clamp(2.6rem, 6vw, 5.5rem) clamp(1rem, 4vw, 3.5rem);
  background: #ffffff;
}

.cabinet-quote p {
  width: min(980px, 100%);
  margin: 0 auto;
  color: #687275;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3.3vw, 3.1rem);
  line-height: 1.16;
  text-align: center;
}

.daily-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .9rem;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.daily-grid article {
  min-height: 160px;
  padding: 1rem;
  background: rgba(255,255,255,.88);
  border-left: 5px solid var(--teal);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.daily-grid strong {
  display: block;
  margin-bottom: .55rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.daily-grid span {
  color: var(--muted);
}

.cabinet-split {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4.5rem) clamp(1rem, 4vw, 3.5rem);
  background: linear-gradient(135deg, rgba(255,244,225,.9), rgba(240,252,248,.92));
}

.cabinet-split img {
  width: 100%;
  height: clamp(320px, 42vw, 560px);
  object-fit: cover;
}

.cabinet-split > div {
  max-width: 720px;
}

.cabinet-split .button {
  margin-top: .8rem;
}

.cabinet-cta {
  background: linear-gradient(135deg, rgba(237,251,247,.96), rgba(255,244,229,.96));
}

@media (max-width: 980px) {
  .cabinet-open,
  .cabinet-split,
  .cabinet-photo-band {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .commitment-grid,
  .daily-grid {
    grid-template-columns: 1fr;
  }
}


/* Page visite du cabinet */
.cabinet-tour-intro,
.garden-experience {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .9fr);
  gap: clamp(1.3rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4.5rem) clamp(1rem, 4vw, 3.5rem);
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(232,250,244,.92));
}

.cabinet-tour-intro h2,
.garden-experience h2,
.cabinet-metrics h2 {
  margin: .4rem 0 1rem;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1;
}

.cabinet-tour-intro p,
.garden-experience p,
.cabinet-adapt p {
  color: var(--muted);
  font-size: 1.08rem;
}

.cabinet-tour-intro figure,
.garden-experience figure,
.space-card figure {
  margin: 0;
  overflow: hidden;
  border: 8px solid rgba(255,255,255,.78);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cabinet-tour-intro img,
.garden-experience img {
  width: 100%;
  height: clamp(300px, 42vw, 540px);
  object-fit: cover;
}

.cabinet-adapt {
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 3.5rem);
  background: #fff;
}

.space-story {
  display: grid;
  gap: clamp(1rem, 3vw, 2rem);
  padding: clamp(1.5rem, 4vw, 3.5rem) clamp(1rem, 4vw, 3.5rem);
  background: #fff9ef;
}

.space-card {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(280px, 1.08fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(31,49,53,.08);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.space-card.reverse figure {
  order: -1;
}

.space-card span {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  margin-bottom: .9rem;
  color: #0f6f6c;
  background: #e6fbf6;
  border-radius: 999px;
  font-weight: 950;
}

.space-card h2 {
  margin: 0 0 .8rem;
  font-size: clamp(1.65rem, 3vw, 3rem);
  line-height: 1.03;
}

.space-card p {
  color: var(--muted);
}

.space-card ul,
.garden-experience ul {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  padding: 0;
  list-style: none;
}

.space-card li,
.garden-experience li {
  padding: .45rem .65rem;
  color: var(--ink);
  background: rgba(232,250,244,.86);
  border-radius: 8px;
  font-weight: 800;
}

.space-card img {
  width: 100%;
  height: clamp(280px, 36vw, 500px);
  object-fit: cover;
}

.garden-experience {
  background: linear-gradient(135deg, rgba(236,251,245,.94), rgba(255,244,225,.94));
}

.cabinet-metrics {
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 3.5rem);
  background: white;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: .75rem;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.metric-grid article {
  min-height: 150px;
  padding: 1rem;
  background: rgba(255,255,255,.9);
  border-top: 5px solid var(--teal);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.metric-grid article:nth-child(2n) {
  border-top-color: var(--coral);
}

.metric-grid article:nth-child(3n) {
  border-top-color: var(--yellow);
}

.metric-grid strong {
  display: block;
  margin-bottom: .55rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  line-height: 1.05;
}

.metric-grid span {
  color: var(--muted);
}

.cabinet-closing {
  display: grid;
  justify-items: center;
  gap: 1.2rem;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 4vw, 3.5rem);
  background: #ffffff;
  text-align: center;
}

.cabinet-closing p {
  max-width: 980px;
  margin: 0;
  color: #687275;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.7rem);
  line-height: 1.18;
}

@media (max-width: 1100px) {
  .metric-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .cabinet-tour-intro,
  .garden-experience,
  .space-card {
    grid-template-columns: 1fr;
  }

  .space-card.reverse figure {
    order: initial;
  }
}

@media (max-width: 640px) {
  .metric-grid {
    grid-template-columns: 1fr;
  }
}


/* Page déroulement accompagnement */
.flow-opening,
.flow-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .9fr);
  gap: clamp(1.3rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4.5rem) clamp(1rem, 4vw, 3.5rem);
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(232,250,244,.92));
}

.flow-opening h2,
.flow-split h2 {
  margin: .4rem 0 1rem;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1;
}

.flow-opening p,
.flow-split p {
  color: var(--muted);
  font-size: 1.08rem;
}

.flow-opening figure,
.flow-split figure,
.flow-photo-break figure {
  margin: 0;
  overflow: hidden;
  border: 8px solid rgba(255,255,255,.78);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.flow-opening img,
.flow-split img {
  width: 100%;
  height: clamp(300px, 42vw, 540px);
  object-fit: cover;
}

.flow-timeline-section {
  background: #fff9ef;
}

.flow-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .9rem;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.flow-timeline li {
  min-height: 210px;
  padding: 1rem;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(31,49,53,.08);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.flow-timeline span {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  margin-bottom: .9rem;
  color: #0f6f6c;
  background: #e6fbf6;
  border-radius: 999px;
  font-weight: 950;
}

.flow-timeline li:nth-child(2n) span {
  color: #b24a53;
  background: #fff0f1;
}

.flow-timeline strong {
  display: block;
  margin-bottom: .55rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  line-height: 1.08;
}

.flow-timeline em {
  color: var(--muted);
  font-style: normal;
}

.flow-photo-break {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 4vw, 3.5rem);
  background: white;
}

.flow-photo-break img {
  width: 100%;
  height: clamp(260px, 32vw, 460px);
  object-fit: cover;
}

.flow-photo-break figcaption {
  padding: .85rem 1rem;
  color: var(--ink);
  background: rgba(255,255,255,.92);
  font-weight: 800;
}

.clarity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .9rem;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.clarity-grid article {
  min-height: 170px;
  padding: 1rem;
  background: rgba(255,255,255,.88);
  border-left: 5px solid var(--teal);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.clarity-grid article:nth-child(2n) {
  border-left-color: var(--coral);
}

.clarity-grid strong {
  display: block;
  margin-bottom: .55rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  line-height: 1.08;
}

.clarity-grid span {
  color: var(--muted);
}

.flow-closing {
  display: grid;
  justify-items: center;
  gap: 1.2rem;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 4vw, 3.5rem);
  background: #ffffff;
  text-align: center;
}

.flow-closing p {
  max-width: 980px;
  margin: 0;
  color: #687275;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.7rem);
  line-height: 1.18;
}

@media (max-width: 1050px) {
  .flow-timeline,
  .clarity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .flow-opening,
  .flow-split,
  .flow-photo-break,
  .flow-timeline,
  .clarity-grid {
    grid-template-columns: 1fr;
  }
}


/* Page évaluations éducatives */
.eval-opening,
.eval-output {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .9fr);
  gap: clamp(1.3rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4.5rem) clamp(1rem, 4vw, 3.5rem);
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(232,250,244,.92));
}

.eval-opening h2,
.eval-output h2,
.eval-tools h2 {
  margin: .4rem 0 1rem;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1;
}

.eval-opening p,
.eval-output p,
.eval-tools p {
  color: var(--muted);
  font-size: 1.08rem;
}

.eval-opening figure,
.eval-output figure,
.eval-photo-band figure {
  margin: 0;
  overflow: hidden;
  border: 8px solid rgba(255,255,255,.78);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.eval-opening img,
.eval-output img {
  width: 100%;
  height: clamp(300px, 42vw, 540px);
  object-fit: cover;
}

.eval-domains,
.eval-process {
  background: #fff9ef;
}

.eval-domain-grid,
.eval-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.eval-steps {
  padding: 0;
  list-style: none;
}

.eval-domain-grid article,
.eval-steps li {
  min-height: 190px;
  padding: 1rem;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(31,49,53,.08);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.eval-domain-grid span,
.eval-steps span {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  margin-bottom: .9rem;
  color: #0f6f6c;
  background: #e6fbf6;
  border-radius: 999px;
  font-weight: 950;
}

.eval-domain-grid article:nth-child(2n) span,
.eval-steps li:nth-child(2n) span {
  color: #b24a53;
  background: #fff0f1;
}

.eval-domain-grid h3,
.eval-steps strong {
  display: block;
  margin: 0 0 .55rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  line-height: 1.08;
}

.eval-domain-grid p,
.eval-steps em {
  color: var(--muted);
  font-style: normal;
}

.eval-photo-band {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 4vw, 3.5rem);
  background: white;
}

.eval-photo-band img {
  width: 100%;
  height: clamp(240px, 28vw, 420px);
  object-fit: cover;
}

.eval-photo-band figcaption {
  padding: .85rem 1rem;
  color: var(--ink);
  background: rgba(255,255,255,.92);
  font-weight: 800;
}

.eval-tools {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, 1.1fr);
  gap: clamp(1.3rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 3.5rem);
  background: white;
}

.tool-list {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.tool-list span {
  padding: .7rem .9rem;
  color: var(--ink);
  background: #e6fbf6;
  border-radius: 8px;
  font-weight: 900;
  box-shadow: var(--soft-shadow);
}

.eval-output {
  background: linear-gradient(135deg, rgba(236,251,245,.94), rgba(255,244,225,.94));
}

.eval-output .button {
  margin-top: .8rem;
}

@media (max-width: 960px) {
  .eval-domain-grid,
  .eval-steps,
  .eval-photo-band {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .eval-opening,
  .eval-output,
  .eval-tools,
  .eval-domain-grid,
  .eval-steps,
  .eval-photo-band {
    grid-template-columns: 1fr;
  }
}


/* Page accompagnement scolaire */
.school-opening,
.school-meetings {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .9fr);
  gap: clamp(1.3rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4.5rem) clamp(1rem, 4vw, 3.5rem);
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(232,250,244,.92));
}

.school-opening h2,
.school-tools h2,
.school-meetings h2 {
  margin: .4rem 0 1rem;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1;
}

.school-opening p,
.school-tools p,
.school-meetings p,
.school-why p {
  color: var(--muted);
  font-size: 1.08rem;
}

.school-opening figure,
.school-meetings figure,
.school-photo-band figure {
  margin: 0;
  overflow: hidden;
  border: 8px solid rgba(255,255,255,.78);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.school-opening img,
.school-meetings img {
  width: 100%;
  height: clamp(300px, 42vw, 540px);
  object-fit: cover;
}

.school-link,
.school-why,
.school-domains,
.school-actions,
.school-faq {
  background: #fff9ef;
}

.school-triangle {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .9rem;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.school-triangle article,
.school-domain-grid article,
.school-action-grid article,
.school-faq-grid article {
  padding: 1rem;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(31,49,53,.08);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.school-triangle .child {
  border-top: 5px solid var(--coral);
}

.school-triangle strong,
.school-domain-grid h3,
.school-action-grid strong,
.school-faq-grid h3 {
  display: block;
  margin-bottom: .55rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  line-height: 1.08;
}

.school-triangle span,
.school-domain-grid p,
.school-action-grid p,
.school-faq-grid p {
  color: var(--muted);
}

.school-domain-grid,
.school-action-grid,
.school-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
  width: min(1180px, 100%);
  margin: 0 auto;
}

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

.school-domain-grid span {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  margin-bottom: .9rem;
  color: #0f6f6c;
  background: #e6fbf6;
  border-radius: 999px;
  font-weight: 950;
}

.school-domain-grid article:nth-child(2n) span {
  color: #b24a53;
  background: #fff0f1;
}

.school-photo-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 4vw, 3.5rem);
  background: white;
}

.school-photo-band img {
  width: 100%;
  height: clamp(240px, 28vw, 420px);
  object-fit: cover;
}

.school-photo-band figcaption {
  padding: .85rem 1rem;
  color: var(--ink);
  background: rgba(255,255,255,.92);
  font-weight: 800;
}

.school-do-dont {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 3.5rem);
  background: white;
}

.school-do-dont > div {
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(255,255,255,.92);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.school-do-dont ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.school-tools {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, 1.1fr);
  gap: clamp(1.3rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 3.5rem);
  background: linear-gradient(135deg, rgba(236,251,245,.94), rgba(255,244,225,.94));
}

.school-closing {
  display: grid;
  justify-items: center;
  gap: 1.2rem;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 4vw, 3.5rem);
  background: white;
  text-align: center;
}

.school-closing p {
  max-width: 980px;
  margin: 0;
  color: #687275;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.7rem);
  line-height: 1.18;
}

@media (max-width: 1050px) {
  .school-triangle,
  .school-domain-grid,
  .school-action-grid,
  .school-faq-grid,
  .school-photo-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .school-opening,
  .school-meetings,
  .school-tools,
  .school-do-dont,
  .school-triangle,
  .school-domain-grid,
  .school-action-grid,
  .school-faq-grid,
  .school-photo-band {
    grid-template-columns: 1fr;
  }
}



/* Page guidance parentale */
.guidance-opening,
.guidance-why,
.guidance-photo-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .9fr);
  gap: clamp(1.3rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4.5rem) clamp(1rem, 4vw, 3.5rem);
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(255,241,229,.93));
}

.guidance-why {
  grid-template-columns: minmax(280px, .95fr) minmax(0, 1fr);
  background: linear-gradient(135deg, rgba(231,249,245,.94), rgba(255,255,255,.96));
}

.guidance-opening h2,
.guidance-why h2,
.guidance-card h2,
.guidance-expert h2 {
  margin: .35rem 0 1rem;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.guidance-opening p,
.guidance-why p,
.guidance-card li,
.guidance-expert p {
  color: var(--muted);
  font-size: 1.08rem;
}

.guidance-opening figure,
.guidance-why figure,
.guidance-photo-split figure {
  margin: 0;
  overflow: hidden;
  border: 8px solid rgba(255,255,255,.78);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.guidance-opening img,
.guidance-why img,
.guidance-photo-split img {
  width: 100%;
  height: clamp(300px, 42vw, 540px);
  object-fit: cover;
}

.guidance-questions,
.guidance-situations,
.guidance-process,
.guidance-benefits,
.guidance-faq {
  background: #fff9ef;
}

.guidance-question-grid,
.guidance-step-grid,
.guidance-benefit-grid,
.guidance-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
  width: min(1180px, 100%);
  margin: 0 auto;
}

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

.guidance-question-grid article,
.guidance-step-grid article,
.guidance-benefit-grid article,
.guidance-faq-grid article,
.guidance-card,
.guidance-do-dont > div {
  padding: 1rem;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(31,49,53,.08);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.guidance-question-grid strong,
.guidance-step-grid strong,
.guidance-faq-grid h3 {
  display: block;
  margin-bottom: .55rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  line-height: 1.08;
}

.guidance-question-grid span,
.guidance-step-grid p,
.guidance-faq-grid p {
  color: var(--muted);
}

.guidance-step-grid span {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  margin-bottom: .9rem;
  color: #0f6f6c;
  background: #e6fbf6;
  border-radius: 999px;
  font-weight: 950;
}

.guidance-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  width: min(980px, 100%);
  margin: 0 auto;
  justify-content: center;
}

.guidance-tag-cloud span {
  padding: .65rem .9rem;
  color: #264447;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(31,49,53,.08);
  border-radius: 999px;
  font-weight: 850;
}

.guidance-card ul,
.guidance-do-dont ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.guidance-do-dont {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 3.5rem);
  background: white;
}

.guidance-benefit-grid article {
  display: grid;
  min-height: 105px;
  align-items: center;
  color: #264447;
  font-weight: 850;
}

.guidance-expert {
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 4vw, 3.5rem);
  background: white;
  text-align: center;
}

.guidance-expert p {
  max-width: 980px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.5vw, 2.2rem);
  line-height: 1.25;
}

.guidance-closing {
  display: grid;
  justify-items: center;
  gap: 1.2rem;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 4vw, 3.5rem);
  background: linear-gradient(135deg, rgba(232,250,244,.96), rgba(255,244,225,.96));
  text-align: center;
}

.guidance-closing p {
  max-width: 980px;
  margin: 0;
  color: #687275;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.7rem);
  line-height: 1.18;
}

@media (max-width: 1050px) {
  .guidance-question-grid,
  .guidance-step-grid,
  .guidance-benefit-grid,
  .guidance-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .guidance-opening,
  .guidance-why,
  .guidance-photo-split,
  .guidance-do-dont,
  .guidance-question-grid,
  .guidance-step-grid,
  .guidance-benefit-grid,
  .guidance-faq-grid {
    grid-template-columns: 1fr;
  }
}



/* Page habiletés sociales */
.social-opening,
.social-why,
.social-groups {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .92fr);
  gap: clamp(1.3rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4.5rem) clamp(1rem, 4vw, 3.5rem);
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(232,250,244,.92));
}

.social-why {
  grid-template-columns: minmax(280px, .95fr) minmax(0, 1fr);
  background: linear-gradient(135deg, rgba(255,245,231,.96), rgba(255,255,255,.96));
}

.social-opening h2,
.social-why h2,
.social-groups h2,
.social-parent h2 {
  margin: .35rem 0 1rem;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.social-opening p,
.social-why p,
.social-groups p,
.social-parent p {
  color: var(--muted);
  font-size: 1.08rem;
}

.social-opening figure,
.social-why figure,
.social-photo-band figure {
  margin: 0;
  overflow: hidden;
  border: 8px solid rgba(255,255,255,.78);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.social-opening img,
.social-why img {
  width: 100%;
  height: clamp(300px, 42vw, 540px);
  object-fit: cover;
}

.social-definition,
.social-session,
.social-domains,
.social-concrete,
.social-faq {
  background: #fff9ef;
}

.social-skill-grid,
.social-step-grid,
.social-domain-grid,
.social-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
  width: min(1180px, 100%);
  margin: 0 auto;
}

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

.social-skill-grid article,
.social-step-grid article,
.social-domain-grid article,
.social-faq-grid article,
.social-card-list article {
  padding: 1rem;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(31,49,53,.08);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.social-skill-grid span,
.social-step-grid span {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  margin-bottom: .9rem;
  color: #0f6f6c;
  background: #e6fbf6;
  border-radius: 999px;
  font-weight: 950;
}

.social-skill-grid article:nth-child(2n) span {
  color: #b24a53;
  background: #fff0f1;
}

.social-skill-grid strong,
.social-step-grid strong,
.social-domain-grid h3,
.social-faq-grid h3 {
  display: block;
  margin-bottom: .55rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  line-height: 1.08;
}

.social-skill-grid p,
.social-step-grid p,
.social-domain-grid p,
.social-faq-grid p {
  color: var(--muted);
}

.social-photo-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 4vw, 3.5rem);
  background: white;
}

.social-photo-band img {
  width: 100%;
  height: clamp(240px, 28vw, 420px);
  object-fit: cover;
}

.social-photo-band figcaption {
  padding: .85rem 1rem;
  color: var(--ink);
  background: rgba(255,255,255,.92);
  font-weight: 850;
}

.social-card-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
}

.social-card-list article {
  min-height: 112px;
  display: grid;
  align-items: center;
  color: #264447;
  font-weight: 900;
}

.social-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  width: min(980px, 100%);
  margin: 0 auto;
  justify-content: center;
}

.social-tag-cloud span {
  padding: .65rem .9rem;
  color: #264447;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(31,49,53,.08);
  border-radius: 999px;
  font-weight: 850;
}

.social-parent,
.social-closing {
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 4vw, 3.5rem);
  background: white;
  text-align: center;
}

.social-parent p {
  max-width: 980px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.3vw, 2.05rem);
  line-height: 1.25;
}

.social-closing {
  display: grid;
  justify-items: center;
  gap: 1.2rem;
  background: linear-gradient(135deg, rgba(232,250,244,.96), rgba(255,244,225,.96));
}

.social-closing p {
  max-width: 980px;
  margin: 0;
  color: #687275;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.7rem);
  line-height: 1.18;
}

@media (max-width: 1050px) {
  .social-skill-grid,
  .social-step-grid,
  .social-domain-grid,
  .social-faq-grid,
  .social-photo-band,
  .social-card-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .social-opening,
  .social-why,
  .social-groups,
  .social-skill-grid,
  .social-step-grid,
  .social-domain-grid,
  .social-faq-grid,
  .social-photo-band,
  .social-card-list {
    grid-template-columns: 1fr;
  }
}


/* Page suivi individuel - harmonisation */
.hero-photo img[src*="suivi-individuel-supports-visuels"] {
  object-fit: cover;
  object-position: center center;
}

.individual-opening,
.individual-section,
.individual-feature,
.individual-observe,
.individual-teen,
.individual-closing {
  margin: clamp(2.2rem, 5vw, 4.5rem) 0;
}

.individual-opening {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: stretch;
  padding: clamp(1.4rem, 4vw, 2.6rem);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(240,250,248,.88), rgba(255,248,236,.86));
  border: 1px solid rgba(36,86,93,.08);
}

.individual-opening h2,
.individual-feature h2,
.individual-observe h2,
.individual-teen h2,
.individual-closing h2 {
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.08;
  margin-bottom: .9rem;
}

.individual-opening-text p { max-width: 62ch; }
.individual-opening-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
}

.individual-opening-facts article,
.individual-icon-grid article,
.individual-method-grid article,
.individual-soft-list span,
.individual-teen-grid article,
.individual-cabinet-examples p {
  border: 1px solid rgba(36,86,93,.10);
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 10px 24px rgba(38,52,63,.06);
}

.individual-opening-facts article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
}
.individual-opening-facts span {
  display: block;
  color: var(--primary-strong);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: .35rem;
}
.individual-opening-facts p { margin: 0; color: var(--muted); font-size: .94rem; }

.individual-icon-grid,
.individual-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
}
.individual-icon-grid article { padding: 1.05rem; }
.individual-icon-grid h3 { margin: .25rem 0 .35rem; font-size: 1.08rem; }
.individual-icon-grid p { margin: 0; color: var(--muted); }

.mini-icon {
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  background: rgba(93,184,177,.18);
  color: var(--primary-strong);
  font-weight: 800;
  font-size: .76rem;
}

.individual-centered-cta { display: flex; justify-content: center; margin-top: 1.35rem; }

.individual-feature,
.individual-observe,
.individual-closing {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 4vw, 2.8rem);
  align-items: center;
}
.individual-feature {
  padding: clamp(1.2rem, 3vw, 2rem);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(38,52,63,.08);
}
.individual-feature figure,
.individual-closing figure,
.individual-cabinet-feature figure {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #f8faf9;
}
.individual-feature figure { aspect-ratio: 4 / 3; }
.individual-feature img,
.individual-closing img,
.individual-cabinet-feature img,
.individual-session-flow img,
.individual-cabinet-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.individual-soft-list { display: grid; gap: .65rem; margin-top: 1rem; }
.individual-soft-list span { padding: .85rem 1rem; color: var(--ink); }

.individual-observe {
  padding: clamp(1.4rem, 4vw, 2.5rem);
  border-radius: 24px;
  background: #f7fbfa;
  border: 1px solid rgba(36,86,93,.08);
}
.individual-observe-text p { max-width: 68ch; }
.individual-method-grid article {
  display: flex;
  gap: .7rem;
  align-items: center;
  padding: .9rem;
}
.individual-method-grid strong { font-size: .98rem; }

.individual-quote-wide {
  margin: clamp(2.4rem, 5vw, 4rem) calc(50% - 50vw);
  padding: clamp(2rem, 5vw, 3.8rem) max(1rem, calc((100vw - 1120px) / 2));
  background: #fff;
  border-block: 1px solid rgba(36,86,93,.08);
}
.individual-quote-wide p {
  max-width: 920px;
  margin: 0 auto;
  color: #647076;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 2.2rem);
  line-height: 1.26;
}

.individual-session-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.individual-session-flow article {
  display: grid;
  grid-template-columns: 42% minmax(0, 1fr);
  min-height: 190px;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(36,86,93,.10);
  box-shadow: 0 12px 30px rgba(38,52,63,.07);
}
.individual-session-flow img { min-height: 190px; }
.individual-session-flow div { padding: 1rem; align-self: center; }
.individual-session-flow span { color: var(--accent-strong); font-weight: 900; font-size: .85rem; }
.individual-session-flow h3 { margin: .15rem 0 .35rem; }
.individual-session-flow p { margin: 0; color: var(--muted); }

.individual-cabinet-band {
  margin: clamp(2.6rem, 6vw, 5rem) calc(50% - 50vw);
  padding: clamp(2rem, 5vw, 4rem) max(1rem, calc((100vw - 1120px) / 2));
  background: linear-gradient(180deg, rgba(255,248,236,.64), rgba(240,250,248,.82));
}
.individual-cabinet-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr);
  gap: 1rem;
  align-items: stretch;
  margin: 1.35rem 0 1rem;
}
.individual-cabinet-feature figure { aspect-ratio: 16 / 9; }
.individual-cabinet-feature > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.15rem, 3vw, 2rem);
  border-radius: 20px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(36,86,93,.10);
}
.individual-cabinet-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .8rem;
}
.individual-cabinet-gallery figure {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
}
.individual-cabinet-gallery figcaption {
  position: absolute;
  left: .55rem;
  bottom: .55rem;
  padding: .35rem .62rem;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  font-weight: 800;
  font-size: .82rem;
}
.individual-cabinet-examples {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
  margin-top: 1rem;
}
.individual-cabinet-examples p { margin: 0; padding: 1rem; }

.individual-teen {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  gap: 1.2rem;
  padding: clamp(1.3rem, 4vw, 2.4rem);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(38,52,63,.08);
}
.individual-teen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
}
.individual-teen-grid article { padding: .95rem; font-weight: 800; }

.individual-closing {
  padding: clamp(1.3rem, 4vw, 2.4rem);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(93,184,177,.16), rgba(237,105,112,.10));
}
.individual-closing figure { aspect-ratio: 4 / 3; }

@media (max-width: 900px) {
  .individual-opening,
  .individual-feature,
  .individual-observe,
  .individual-cabinet-feature,
  .individual-teen,
  .individual-closing { grid-template-columns: 1fr; }
  .individual-opening-facts,
  .individual-icon-grid,
  .individual-method-grid,
  .individual-cabinet-gallery,
  .individual-cabinet-examples { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .individual-session-flow { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .individual-opening-facts,
  .individual-icon-grid,
  .individual-method-grid,
  .individual-cabinet-gallery,
  .individual-cabinet-examples,
  .individual-teen-grid { grid-template-columns: 1fr; }
  .individual-session-flow article { grid-template-columns: 1fr; }
  .individual-session-flow img { aspect-ratio: 4 / 3; min-height: 0; }
}


/* Derniere passe d'harmonie suivi individuel */
body:has(.individual-opening) .page-hero {
  min-height: auto;
  padding-bottom: clamp(2.2rem, 5vw, 4rem);
}

body:has(.individual-opening) .hero-inner {
  gap: clamp(1.8rem, 4vw, 3.2rem);
}

body:has(.individual-opening) .hero-copy h1 {
  max-width: 8.5ch;
}

body:has(.individual-opening) .hero-photo {
  aspect-ratio: 16 / 10;
  border-radius: 22px;
}

.individual-opening {
  margin-top: clamp(1.4rem, 3vw, 2.4rem);
  padding: clamp(1.1rem, 3vw, 1.8rem);
}

.individual-opening h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
}

.individual-opening-facts article {
  box-shadow: none;
}

.individual-section .section-heading {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.individual-feature,
.individual-observe,
.individual-teen,
.individual-closing {
  box-shadow: 0 12px 32px rgba(38,52,63,.07);
}

.individual-session-flow article,
.individual-icon-grid article,
.individual-method-grid article,
.individual-cabinet-examples p,
.individual-teen-grid article {
  box-shadow: 0 8px 20px rgba(38,52,63,.055);
}

.individual-cabinet-band {
  border-block: 1px solid rgba(36,86,93,.08);
}
