@font-face {
  font-family: "Comfortaa";
  font-style: normal;
  font-weight: 500 700;
  font-display: optional;
  src: url("fonts/comfortaa-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url("fonts/nunito-sans-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Nunito Sans";
  font-style: italic;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url("fonts/nunito-sans-italic-latin.woff2") format("woff2");
}
:root {
  --navy: #152746;
  --navy-deep: #0a2540;
  --cyan: #6ddbf3;
  --cyan-bright: #00ccff;
  --yellow: #f7da73;
  --white: #ffffff;
  --surface: #f0f0f1;
  --line: #c3c4c7;
  --text: #333333;
  --muted: #666666;
  --display: "Comfortaa", system-ui, sans-serif;
  --body: "Nunito Sans", system-ui, sans-serif;
  --max: 1400px;
  --radius: 14px;
  --shadow: 0 18px 52px rgba(21, 39, 70, 0.12);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--white);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.adr-home p { padding-bottom: 0; }
body.admin-bar .site-header { top: 32px; }
[hidden] { display: none !important; }

body:has(dialog[open]) { overflow: hidden; }

img { display: block; max-width: 100%; }
button, input { font: inherit; }
button { color: inherit; }
a { color: inherit; }

h1, h2, h3, strong, blockquote {
  text-wrap: balance;
}

h1, h2, h3 {
  font-family: var(--display);
}

em {
  color: var(--cyan-bright);
  font-family: inherit;
  font-style: normal;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: -6rem;
  left: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 6px;
  background: var(--cyan);
  color: var(--navy);
  font-weight: 800;
}

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

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: var(--navy);
  border-bottom: 1px solid rgba(109, 219, 243, 0.28);
  box-shadow: 0 7px 24px rgba(21, 39, 70, 0.16);
}

.header-inner {
  width: min(var(--max), calc(100% - 3rem));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  text-decoration: none;
}

.brand > img {
  width: 188px;
  height: auto;
}

.desktop-nav {
  min-width: 0;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.15rem;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
}

.desktop-nav > a,
.nav-group > summary {
  min-height: 44px;
  padding: 0.75rem 0.68rem;
  display: flex;
  align-items: center;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.desktop-nav > a:hover,
.nav-group > summary:hover,
.nav-group[open] > summary {
  background: rgba(109, 219, 243, 0.11);
  color: var(--cyan);
}

.nav-group { position: relative; }
.nav-group > summary { list-style: none; }
.nav-group > summary::-webkit-details-marker { display: none; }
.nav-group > summary::after { margin-left: 0.42rem; color: var(--cyan); content: "+"; }
.nav-group[open] > summary::after { content: "−"; }

.nav-panel {
  position: absolute;
  top: calc(100% + 0.7rem);
  left: 0;
  width: 285px;
  padding: 0.55rem;
  display: grid;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  color: var(--navy);
}

.nav-panel a {
  min-height: 46px;
  padding: 0.75rem 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 8px;
  text-decoration: none;
}

.nav-panel a:hover { background: var(--surface); color: var(--navy-deep); }
.nav-panel a span { color: var(--cyan-bright); }

.button {
  min-height: 48px;
  padding: 0.78rem 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 2px solid transparent;
  border-radius: 52px;
  font-family: var(--body);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary,
.header-cta,
.newsletter-button {
  background: var(--cyan);
  color: var(--navy);
  box-shadow: 0 10px 28px rgba(0, 204, 255, 0.18);
}

.button-primary:hover,
.header-cta:hover,
.newsletter-button:hover {
  background: var(--cyan-bright);
  color: var(--navy-deep);
}

.button-secondary {
  border-color: var(--cyan);
  background: transparent;
  color: var(--cyan);
}

.button-secondary:hover { background: rgba(109, 219, 243, 0.1); }

.button-light {
  border-color: var(--cyan);
  background: var(--white);
  color: var(--navy);
}

.button-light:hover { background: var(--cyan); }

.header-cta { flex: 0 0 auto; min-height: 44px; padding-inline: 1rem; }
.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: 690px;
  padding: 4rem max(2rem, calc((100vw - var(--max)) / 2 + 1.5rem)) 3.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.82fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5.5rem);
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 4px;
  background: var(--cyan);
  content: "";
}

.hero-copy { position: relative; z-index: 2; max-width: 790px; }

.eyebrow,
.section-index {
  margin: 0 0 1.1rem;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.eyebrow { color: var(--cyan); }
.eyebrow span { display: inline-block; width: 32px; height: 2px; margin-right: 0.65rem; vertical-align: middle; background: var(--yellow); }
.section-index.light { color: var(--cyan); }

.hero h1 {
  max-width: 850px;
  margin: 0;
  color: var(--white);
  font-size: clamp(3.25rem, 5.6vw, 5.8rem);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.hero-lede {
  max-width: 680px;
  margin: 1.7rem 0 0;
  color: var(--surface);
  font-size: clamp(1.02rem, 1.4vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.85rem; }

.hero-proof {
  margin: 2.1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  color: var(--surface);
  font-size: 0.78rem;
}

.hero-proof span {
  padding: 0.42rem 0.7rem;
  border: 1px solid rgba(109, 219, 243, 0.38);
  border-radius: 52px;
  background: rgba(255, 255, 255, 0.04);
}

.hero-visual {
  position: relative;
  z-index: 1;
  height: 520px;
  min-height: 0;
  align-self: center;
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  border: 1px solid rgba(109, 219, 243, 0.34);
  border-radius: 18px;
  background: var(--navy-deep);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
}

.structure-diagram {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(109, 219, 243, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109, 219, 243, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
}

.structure-diagram::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(109, 219, 243, 0.12);
  content: "";
  pointer-events: none;
}

.structure-diagram svg { width: 100%; height: 100%; display: block; }
.structure-axis { fill: none; stroke: rgba(109, 219, 243, 0.38); stroke-width: 1.5; }
.structure-breath { fill: none; stroke: var(--cyan-bright); stroke-linecap: round; stroke-width: 4; }
.structure-node { fill: var(--yellow); stroke: var(--navy-deep); stroke-width: 4; }

.structure-label,
.structure-core {
  position: absolute;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.structure-label {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.label-posture { top: 12%; left: 18%; }
.label-tonus { top: 12%; right: 20%; }
.label-movement { bottom: 12%; left: 14%; }
.label-state { right: 14%; bottom: 12%; }

.structure-core {
  top: 50%;
  left: 50%;
  padding: 0.48rem 0.72rem;
  border: 1px solid rgba(247, 218, 115, 0.72);
  border-radius: 40px;
  background: var(--navy-deep);
  color: var(--white);
  font-size: 0.76rem;
  transform: translate(-50%, -50%);
}

.hero-structure-copy {
  padding: 1.05rem 1.25rem 1.15rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.28rem 1rem;
  align-items: baseline;
  border-top: 1px solid rgba(109, 219, 243, 0.28);
  background: var(--navy-deep);
  color: var(--white);
}

.hero-structure-copy > span {
  grid-row: 1 / 3;
  color: var(--cyan);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.hero-structure-copy strong {
  font-family: var(--display);
  font-size: 0.9rem;
  line-height: 1.35;
}

.hero-structure-copy p {
  margin: 0;
  color: var(--surface);
  font-size: 0.78rem;
  line-height: 1.45;
}

.scroll-cue {
  position: absolute;
  bottom: 1.15rem;
  left: max(2rem, calc((100vw - var(--max)) / 2 + 1.5rem));
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.scroll-cue span { width: 34px; height: 1px; background: currentColor; }

.section {
  width: min(var(--max), calc(100% - 4rem));
  margin: 0 auto;
  padding: clamp(5.5rem, 8vw, 8rem) 0;
}

.section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(240px, 0.35fr); gap: 1.5rem 3rem; align-items: end; }
.section-heading .section-index { grid-column: 1 / -1; }

.section-heading h2,
.difference h2,
.diagnostic h2,
.yvan h2,
.newsletter h2,
.final-cta h2,
.diagnostic-dialog h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.35rem, 4.3vw, 4.6rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.section-heading > p:last-child { margin: 0 0 0.35rem; color: var(--muted); line-height: 1.7; }

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

.need-card {
  position: relative;
  min-height: 330px;
  padding: 1.7rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 9px 32px rgba(21, 39, 70, 0.07);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.need-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--cyan);
  content: "";
}

.need-card:hover { transform: translateY(-5px); border-color: var(--cyan); box-shadow: var(--shadow); }
.need-number { color: var(--cyan-bright); font-family: var(--display); font-size: 0.85rem; font-weight: 700; }
.need-card h3 { margin: 3rem 0 0; color: var(--navy); font-size: clamp(1.25rem, 1.7vw, 1.65rem); line-height: 1.25; }
.need-card p { margin: 1rem 0 1.8rem; color: var(--muted); font-size: 0.92rem; line-height: 1.65; }
.text-link { margin-top: auto; display: inline-flex; align-items: center; justify-content: space-between; gap: 1rem; color: var(--navy); font-weight: 800; text-decoration: none; }
.text-link i { color: var(--cyan-bright); font-size: 1.1rem; font-style: normal; }

.difference {
  width: 100%;
  padding-inline: max(2rem, calc((100vw - var(--max)) / 2 + 1.5rem));
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(3rem, 7vw, 8rem);
  background: var(--surface);
}

.difference-copy { align-self: end; }
.lead { color: var(--navy); font-size: clamp(1.05rem, 1.45vw, 1.3rem); font-weight: 700; line-height: 1.6; }
.difference-copy > p:not(.lead) { color: var(--muted); line-height: 1.75; }

.comparison {
  margin-top: 2.2rem;
  padding: 1.35rem;
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 9px 30px rgba(21, 39, 70, 0.06);
}

.comparison > div { display: grid; gap: 0.3rem; }
.comparison > div:last-child { text-align: right; }
.comparison span, .comparison small { color: var(--muted); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.09em; }
.comparison strong { color: var(--navy); font-family: var(--display); font-size: 1.25rem; }
.comparison-line { width: 28px; height: 2px; justify-self: center; background: var(--cyan); }

.method-section {
  width: 100%;
  padding-inline: max(2rem, calc((100vw - var(--max)) / 2 + 1.5rem));
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 7vw, 7rem);
  background: var(--navy);
  color: var(--white);
}

.method-intro h2 { color: var(--white); }
.method-intro > p:not(.section-index) { max-width: 600px; margin: 1.7rem 0 0; color: var(--surface); line-height: 1.75; }
.method-intro .button { margin-top: 1.5rem; }

.territories { margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; list-style: none; }
.territories li { min-height: 150px; padding: 1.3rem; display: grid; grid-template-columns: 42px 1fr; gap: 1rem; border: 1px solid rgba(109, 219, 243, 0.28); border-radius: 12px; background: rgba(255, 255, 255, 0.045); }
.territories > li > span { color: var(--cyan); font-family: var(--display); font-size: 0.78rem; font-weight: 700; }
.territories h3 { margin: 0; color: var(--white); font-size: 1.2rem; }
.territories p { margin: 0.55rem 0 0; color: var(--surface); font-size: 0.85rem; line-height: 1.55; }

.diagnostic { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.diagnostic-brand { min-height: 430px; padding: clamp(2rem, 5vw, 4.5rem); display: grid; place-items: center; align-content: center; border-radius: 18px; background: var(--navy); box-shadow: var(--shadow); }
.diagnostic-brand img { width: min(100%, 480px); height: auto; }
.diagnostic-brand p { margin: 1.2rem 0 0; color: var(--cyan); font-family: var(--display); font-size: 0.76rem; font-weight: 700; text-align: center; letter-spacing: 0.07em; }
.diagnostic-copy .lead { margin-top: 1.5rem; }
.fine-print { margin: 1.25rem 0 1.5rem; color: var(--muted); font-size: 0.78rem; }

.path { border-top: 1px solid var(--line); }
.section-heading.compact { grid-template-columns: 1fr; }
.section-heading.compact .section-index { grid-column: auto; }
.path-list { margin: 3rem 0 0; padding: 0; display: grid; gap: 0.7rem; list-style: none; }
.path-list a { min-height: 108px; padding: 1.25rem 1.4rem; display: grid; grid-template-columns: 60px 0.72fr 1fr 40px; align-items: center; gap: 1.5rem; border: 1px solid var(--line); border-radius: 11px; background: var(--white); text-decoration: none; transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease; }
.path-list a:hover { transform: translateX(5px); border-color: var(--cyan); background: var(--surface); }
.path-number { color: var(--cyan-bright); font-family: var(--display); font-weight: 700; }
.path-list h3 { margin: 0; color: var(--navy); font-size: clamp(1.1rem, 1.7vw, 1.55rem); }
.path-list p { max-width: 570px; margin: 0; color: var(--muted); font-size: 0.88rem; line-height: 1.55; }
.path-arrow { justify-self: end; color: var(--cyan-bright); font-size: 1.25rem; }

.practice-photo { position: relative; margin: 3.5rem 0 0; overflow: hidden; border-radius: 18px; background: var(--navy); box-shadow: var(--shadow); }
.practice-photo img { width: 100%; aspect-ratio: 2.05 / 1; object-fit: cover; object-position: center 69%; }
.practice-photo::after { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 42%, rgba(10, 37, 64, 0.88)); content: ""; }
.practice-photo figcaption { position: absolute; z-index: 1; right: 2rem; bottom: 1.7rem; left: 2rem; display: flex; align-items: end; justify-content: space-between; gap: 2rem; color: var(--white); }
.practice-photo figcaption span { max-width: 650px; font-family: var(--display); font-size: clamp(1.2rem, 2.1vw, 2.05rem); font-weight: 700; line-height: 1.25; }
.practice-photo figcaption small { max-width: 280px; color: var(--cyan); text-align: right; font-size: 0.67rem; font-weight: 800; line-height: 1.45; text-transform: uppercase; letter-spacing: 0.11em; }

.voices {
  width: 100%;
  padding-inline: max(2rem, calc((100vw - var(--max)) / 2 + 1.5rem));
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(3rem, 7vw, 7rem);
  background: var(--navy);
  color: var(--white);
}

.voices-heading h2 { margin: 0; color: var(--white); font-size: clamp(2.35rem, 4.3vw, 4.6rem); line-height: 1.08; letter-spacing: -0.035em; }
.voices-heading > p:last-child { max-width: 470px; color: var(--surface); font-size: 0.82rem; line-height: 1.7; }
.quotes { display: grid; gap: 0.85rem; }
.quotes figure { margin: 0; padding: 1.45rem; border: 1px solid rgba(109, 219, 243, 0.27); border-radius: 12px; background: rgba(255, 255, 255, 0.045); }
.quotes blockquote { margin: 0; color: var(--white); font-family: var(--display); font-size: clamp(1.05rem, 1.6vw, 1.45rem); font-weight: 600; line-height: 1.45; }
.quotes figcaption { margin-top: 1.2rem; display: flex; justify-content: space-between; gap: 1rem; color: var(--cyan); font-size: 0.75rem; }
.quotes figcaption strong { font-family: var(--body); }

.yvan { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.portrait-wrap { position: relative; overflow: hidden; border-radius: 18px; box-shadow: var(--shadow); }
.portrait-wrap img { width: 100%; aspect-ratio: 1 / 0.86; object-fit: cover; }
.portrait-wrap > span { position: absolute; right: 1rem; bottom: 1rem; padding: 0.7rem 0.85rem; border-radius: 8px; background: var(--navy); color: var(--white); font-size: 0.74rem; font-weight: 800; line-height: 1.35; }
.yvan-copy > p:not(.section-index) { color: var(--muted); line-height: 1.75; }
.yvan-copy .lead { color: var(--navy); }
.yvan-copy dl { margin: 1.7rem 0; display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); }
.yvan-copy dl div { padding: 1rem 0.75rem; border-right: 1px solid var(--line); }
.yvan-copy dl div:last-child { border-right: 0; }
.yvan-copy dt { color: var(--muted); font-size: 0.66rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.09em; }
.yvan-copy dd { margin: 0.32rem 0 0; color: var(--navy); font-family: var(--display); font-size: 0.88rem; font-weight: 700; line-height: 1.35; }
.text-link.standalone { width: max-content; min-height: 44px; }

.resources { width: 100%; padding-inline: max(2rem, calc((100vw - var(--max)) / 2 + 1.5rem)); background: var(--surface); }
.resource-heading { max-width: var(--max); margin: 0 auto; }
.editorial-grid { max-width: var(--max); margin: 3rem auto 0; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 1rem; }
.featured-article { min-height: 360px; padding: clamp(2rem, 4vw, 3.2rem); display: flex; flex-direction: column; border-radius: var(--radius); background: var(--navy); color: var(--white); box-shadow: var(--shadow); }
.featured-article > span, .article-list a span, .book > div > span { color: var(--cyan); font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; }
.featured-article h3 { max-width: 680px; margin: auto 0 0; color: var(--white); font-size: clamp(1.7rem, 3vw, 2.8rem); line-height: 1.18; }
.featured-article p { color: var(--surface); }
.featured-article .text-link { margin-top: 1.2rem; color: var(--white); }
.article-list { display: grid; gap: 1rem; }
.article-list a { min-height: 108px; padding: 1.2rem 1.35rem; display: grid; grid-template-columns: 1fr 28px; gap: 0.45rem 1rem; align-items: center; border: 1px solid var(--line); border-radius: 11px; background: var(--white); text-decoration: none; transition: border-color 180ms ease, transform 180ms ease; }
.article-list a:hover { transform: translateX(4px); border-color: var(--cyan); }
.article-list a span { grid-column: 1; color: var(--muted); }
.article-list a strong { grid-column: 1; color: var(--navy); font-family: var(--display); line-height: 1.35; }
.article-list a i { grid-column: 2; grid-row: 1 / 3; color: var(--cyan-bright); font-style: normal; }

.books { max-width: var(--max); margin: 3.5rem auto 0; display: grid; grid-template-columns: 1fr 1fr 0.56fr; gap: 1rem; }
.book { min-height: 250px; padding: 1.2rem; display: grid; grid-template-columns: 145px 1fr; gap: 1.35rem; align-items: center; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.book img { width: 145px; max-height: 220px; object-fit: contain; }
.book h3 { margin: 0.8rem 0 0; color: var(--navy); font-size: 1.25rem; line-height: 1.35; }
.book p { margin: 0.5rem 0 0; color: var(--muted); }
.book-more { min-height: 250px; padding: 1.4rem; display: flex; flex-direction: column; justify-content: space-between; border-radius: var(--radius); background: var(--cyan); color: var(--navy); font-family: var(--display); font-size: 1.15rem; font-weight: 700; text-decoration: none; }
.book-more i { align-self: end; font-style: normal; font-size: 1.35rem; }

.social-section { background: var(--white); }
.social-intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr); gap: 1.5rem 4rem; align-items: end; }
.social-intro .section-index { grid-column: 1 / -1; }
.social-intro h2 { margin: 0; color: var(--navy); font-size: clamp(2.35rem, 4.3vw, 4.6rem); font-weight: 700; line-height: 1.08; letter-spacing: -0.035em; }
.social-intro h2 em { color: var(--cyan-bright); font-style: normal; }
.social-intro > p:last-child { max-width: 560px; margin: 0; color: var(--muted); line-height: 1.75; }
.social-grid { margin-top: 3rem; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.social-card { min-height: 168px; padding: 1.45rem; display: grid; grid-template-columns: 52px 1fr auto; gap: 1rem; align-items: center; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); color: var(--navy); text-decoration: none; transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.social-card:hover { transform: translateY(-4px); border-color: var(--cyan); box-shadow: 0 16px 36px rgba(10, 37, 64, 0.1); }
.social-icon { width: 48px; height: 48px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 11px; background: var(--navy); color: var(--cyan); }
.social-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.social-icon svg .social-icon-fill { fill: currentColor; stroke: none; }
.social-card-copy { display: grid; gap: 0.35rem; }
.social-card-copy strong { font-family: var(--display); font-size: 1.1rem; }
.social-card-copy > span { color: var(--muted); font-size: 0.82rem; }
.social-arrow { align-self: start; color: var(--cyan-bright); font-size: 1.2rem; }

.newsletter {
  width: 100%;
  padding-inline: max(2rem, calc((100vw - var(--max)) / 2 + 1.5rem));
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 8vw, 8rem);
  background: var(--navy);
  color: var(--white);
}

.newsletter h2 { color: var(--white); }
.newsletter-copy .lead { color: var(--white); }
.newsletter-copy ul { padding-left: 1.2rem; color: var(--surface); }
.newsletter-copy li::marker { color: var(--cyan); }
.newsletter form { margin-top: 1.6rem; }
.form-row { display: grid; grid-template-columns: 1fr 1.35fr auto; gap: 0.75rem; align-items: end; }
.form-row label > span { display: block; margin-bottom: 0.35rem; color: var(--cyan); font-size: 0.72rem; font-weight: 800; }
.form-row input { width: 100%; min-height: 50px; padding: 0.75rem 0.9rem; border: 1px solid rgba(109, 219, 243, 0.5); border-radius: 8px; background: var(--white); color: var(--navy); }
.consent { margin-top: 1rem; display: flex; align-items: flex-start; gap: 0.7rem; color: var(--surface); font-size: 0.78rem; line-height: 1.5; }
.consent input { width: 20px; height: 20px; margin-top: 0.1rem; accent-color: var(--cyan); }
.form-note { color: var(--surface); font-size: 0.7rem; }
.form-note a { color: var(--cyan); }

.final-cta { text-align: center; }
.final-cta .section-index { color: var(--cyan-bright); }
.final-cta p:not(.section-index) { max-width: 590px; margin: 1.2rem auto 1.7rem; color: var(--muted); }

.footer { padding: 4.5rem max(2rem, calc((100vw - var(--max)) / 2 + 1.5rem)) 1.5rem; background: var(--navy-deep); color: var(--white); }
.footer-top { padding-bottom: 2.4rem; display: flex; align-items: end; justify-content: space-between; gap: 3rem; border-bottom: 1px solid rgba(109, 219, 243, 0.25); }
.footer-brand > img { width: min(360px, 55vw); }
.footer-top > p { max-width: 480px; margin: 0; color: var(--surface); text-align: right; }
.footer-links { padding: 3rem 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 2rem; }
.footer-links h2 { margin: 0 0 0.85rem; color: var(--cyan); font-family: var(--display); font-size: 0.9rem; }
.footer-links a, .footer-links button { min-height: 34px; padding: 0; display: block; border: 0; background: none; color: var(--surface); font-size: 0.78rem; line-height: 1.5; text-align: left; text-decoration: none; cursor: pointer; }
.footer-links a:hover, .footer-links button:hover { color: var(--cyan); }
.footer-socials { min-height: 74px; padding: 1.15rem 0; display: flex; align-items: center; justify-content: space-between; gap: 2rem; border-top: 1px solid rgba(109, 219, 243, 0.25); }
.footer-socials > span { color: var(--surface); font-family: var(--display); font-size: 0.8rem; font-weight: 700; }
.footer-socials > div { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.footer-socials a { min-height: 44px; padding: 0.35rem 0.7rem 0.35rem 0.4rem; display: flex; align-items: center; gap: 0.55rem; border: 1px solid rgba(109, 219, 243, 0.25); border-radius: 9px; color: var(--surface); font-size: 0.72rem; font-weight: 700; text-decoration: none; transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease; }
.footer-socials a:hover { border-color: var(--cyan); background: rgba(109, 219, 243, 0.08); color: var(--white); }
.footer-socials .social-icon { width: 34px; height: 34px; border-radius: 7px; background: rgba(109, 219, 243, 0.1); }
.footer-socials .social-icon svg { width: 19px; height: 19px; }
.footer-bottom { min-height: 48px; padding-top: 1.2rem; display: grid; grid-template-columns: 1fr auto; gap: 0.5rem 2rem; border-top: 1px solid rgba(109, 219, 243, 0.25); color: var(--surface); font-size: 0.7rem; }
.footer-bottom > span:nth-child(2) { color: var(--cyan); }
.cookie-note { grid-column: 1 / -1; margin: 0; color: var(--yellow); }

.diagnostic-dialog {
  width: min(860px, calc(100% - 2rem));
  max-height: calc(100vh - 2rem);
  padding: clamp(1.5rem, 5vw, 3.5rem);
  overflow: auto;
  border: 1px solid var(--cyan);
  border-radius: 18px;
  background: var(--white);
  color: var(--text);
  box-shadow: 0 30px 90px rgba(10, 37, 64, 0.38);
}

.diagnostic-dialog::backdrop { background: rgba(10, 37, 64, 0.84); }
.dialog-close { position: absolute; top: 0.8rem; right: 0.8rem; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: var(--surface); color: var(--navy); font-size: 1.5rem; cursor: pointer; }
.dialog-intro { color: var(--muted); }
.diagnostic-dialog fieldset { margin: 1.2rem 0; padding: 1.25rem; display: grid; gap: 0.55rem; border: 1px solid var(--line); border-radius: 12px; }
.diagnostic-dialog legend { padding: 0 0.4rem; color: var(--navy); font-family: var(--display); font-weight: 700; }
.diagnostic-dialog fieldset label { min-height: 44px; padding: 0.65rem 0.75rem; display: flex; align-items: center; gap: 0.75rem; border-radius: 8px; background: var(--surface); cursor: pointer; }
.diagnostic-dialog fieldset label:hover { background: rgba(109, 219, 243, 0.18); }
.diagnostic-dialog input[type="radio"] { width: 20px; height: 20px; flex: 0 0 auto; accent-color: var(--cyan-bright); }
.diagnostic-result { min-height: 480px; display: flex; flex-direction: column; justify-content: center; }
.diagnostic-result > p:not(.section-index) { color: var(--muted); }
.dialog-actions { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.8rem; }
.diagnostic-dialog .button-secondary { color: var(--navy); }

@media (max-width: 1180px) {
  .desktop-nav, .header-cta { display: none; }
  .header-inner { justify-content: space-between; }
  .mobile-menu { display: block; color: var(--white); }
  .mobile-menu > summary { min-width: 92px; min-height: 46px; display: flex; align-items: center; justify-content: flex-end; gap: 0.65rem; list-style: none; font-size: 0.78rem; font-weight: 800; text-transform: uppercase; cursor: pointer; }
  .mobile-menu > summary::after { content: "Menu"; }
  .mobile-menu[open] > summary::after { content: "Fermer"; }
  .mobile-menu > summary::-webkit-details-marker { display: none; }
  .mobile-menu > summary span, .mobile-menu > summary span::before, .mobile-menu > summary span::after { width: 24px; height: 2px; display: block; background: var(--cyan); content: ""; }
  .mobile-menu > summary span { position: relative; }
  .mobile-menu > summary span::before { position: absolute; top: -7px; }
  .mobile-menu > summary span::after { position: absolute; top: 7px; }
  .mobile-menu[open] > summary span { background: transparent; }
  .mobile-menu[open] > summary span::before { top: 0; transform: rotate(45deg); }
  .mobile-menu[open] > summary span::after { top: 0; transform: rotate(-45deg); }
  .mobile-menu > nav { position: absolute; top: 100%; right: 0; left: 0; max-height: calc(100vh - 78px); padding: 1rem max(1.5rem, calc((100vw - var(--max)) / 2 + 1.5rem)) 1.5rem; overflow: auto; display: grid; gap: 0.35rem; background: var(--navy); border-top: 1px solid rgba(109, 219, 243, 0.25); box-shadow: var(--shadow); }
  .mobile-menu nav > details, .mobile-menu nav > a { border-bottom: 1px solid rgba(109, 219, 243, 0.2); }
  .mobile-menu nav summary, .mobile-menu nav > a { min-height: 48px; padding: 0.75rem 0; display: flex; align-items: center; justify-content: space-between; list-style: none; color: var(--white); font-family: var(--display); font-weight: 700; text-decoration: none; cursor: pointer; }
  .mobile-menu nav summary::after { color: var(--cyan); content: "+"; }
  .mobile-menu nav details[open] summary::after { content: "−"; }
  .mobile-menu nav details div { padding: 0 0 0.7rem 1rem; display: grid; }
  .mobile-menu nav details div a { min-height: 42px; display: flex; align-items: center; color: var(--surface); text-decoration: none; }
  .mobile-menu nav .button { width: max-content; margin-top: 0.8rem; color: var(--navy); }
}

@media (max-width: 980px) {
  .hero { min-height: 0; padding-top: 3.5rem; grid-template-columns: 1fr; }
  .hero-copy { max-width: 820px; }
  .hero-visual { height: auto; min-height: 440px; }
  .scroll-cue { display: none; }
  .section-heading, .difference, .method-section, .diagnostic, .voices, .yvan, .newsletter, .social-intro { grid-template-columns: 1fr; }
  .section-heading > p:last-child { max-width: 610px; }
  .needs-grid { grid-template-columns: 1fr 1fr; }
  .need-card { min-height: 280px; }
  .territories { grid-template-columns: repeat(3, 1fr); }
  .diagnostic-brand { min-height: 360px; }
  .voices-heading > p:last-child { max-width: 620px; }
  .quotes { grid-template-columns: repeat(3, 1fr); }
  .quotes figcaption { display: grid; }
  .editorial-grid { grid-template-columns: 1fr; }
  .books { grid-template-columns: 1fr 1fr; }
  .book-more { min-height: 150px; grid-column: 1 / -1; }
  .social-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .newsletter-button { grid-column: 1 / -1; width: max-content; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 680px) {
  body.admin-bar .site-header { top: 46px; }
  .header-inner { width: calc(100% - 2rem); min-height: 70px; }
  .brand > img { width: 156px; }
  .hero { padding: 2.4rem 1rem 2.6rem; gap: 2.2rem; }
  .hero h1 { font-size: clamp(2.55rem, 13vw, 3.9rem); letter-spacing: -0.05em; }
  .hero-lede { margin-top: 1.25rem; font-size: 1rem; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: grid; }
  .hero-proof span { width: max-content; max-width: 100%; }
  .hero-visual { min-height: 0; aspect-ratio: 1.18 / 1; }
  .structure-diagram { background-size: 34px 34px; }
  .structure-label { font-size: 0.58rem; }
  .structure-core { padding: 0.4rem 0.58rem; font-size: 0.64rem; }
  .hero-structure-copy { padding: 0.8rem 0.9rem 0.85rem; grid-template-columns: 1fr; gap: 0.18rem; }
  .hero-structure-copy > span { grid-row: auto; font-size: 0.66rem; }
  .hero-structure-copy strong { font-size: 0.78rem; }
  .hero-structure-copy p { font-size: 0.7rem; }
  .section { width: calc(100% - 2rem); padding-block: 4.5rem; }
  .difference, .method-section, .voices, .resources, .newsletter { width: 100%; padding-inline: 1rem; }
  .section-heading h2, .difference h2, .diagnostic h2, .yvan h2, .newsletter h2, .social-intro h2, .final-cta h2, .voices-heading h2, .diagnostic-dialog h2 { font-size: clamp(2.1rem, 10vw, 3.2rem); }
  .needs-grid { grid-template-columns: 1fr; }
  .need-card { min-height: 260px; }
  .comparison { grid-template-columns: 1fr; gap: 1rem; }
  .comparison > div:last-child { text-align: left; }
  .comparison-line { width: 100%; }
  .territories { grid-template-columns: 1fr; }
  .territories li { min-height: 118px; }
  .diagnostic-brand { min-height: 300px; padding: 2rem; }
  .path-list a { min-height: 0; grid-template-columns: 42px 1fr 32px; gap: 0.8rem; }
  .path-list p { grid-column: 2 / -1; }
  .path-arrow { grid-column: 3; grid-row: 1; }
  .practice-photo { margin-top: 2.5rem; border-radius: 12px; }
  .practice-photo img { aspect-ratio: 1 / 1.08; object-position: center 72%; }
  .practice-photo figcaption { right: 1rem; bottom: 1rem; left: 1rem; display: block; }
  .practice-photo figcaption span { font-size: 1.08rem; }
  .practice-photo figcaption small { display: block; margin-top: 0.7rem; text-align: left; }
  .quotes { grid-template-columns: 1fr; }
  .portrait-wrap img { aspect-ratio: 1 / 1.05; object-position: 68% center; }
  .yvan-copy dl { grid-template-columns: 1fr; }
  .yvan-copy dl div { border-right: 0; border-bottom: 1px solid var(--line); }
  .yvan-copy dl div:last-child { border-bottom: 0; }
  .books { grid-template-columns: 1fr; }
  .book { min-height: 220px; grid-template-columns: 112px 1fr; }
  .book img { width: 112px; max-height: 190px; }
  .book-more { grid-column: auto; }
  .social-grid { grid-template-columns: 1fr; }
  .social-card { min-height: 132px; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter-button { grid-column: auto; width: 100%; }
  .footer { padding-inline: 1rem; }
  .footer-top { display: grid; }
  .footer-top > p { text-align: left; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }
  .footer-socials { align-items: flex-start; display: grid; }
  .footer-socials > div { display: grid; grid-template-columns: 1fr; }
  .footer-bottom { grid-template-columns: 1fr; }
  .diagnostic-dialog { padding-top: 4rem; }
  .diagnostic-dialog fieldset { padding: 0.85rem; }
  .dialog-actions { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
