@font-face {
  font-family: "Coming Soon";
  src: url("./assets/coming-soon.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #143c3f;
  --ink-deep: #073638;
  --petrol: #075356;
  --aqua: #43a1a8;
  --aqua-light: #dff3f1;
  --leaf: #688f50;
  --leaf-light: #edf3df;
  --gold: #df8e00;
  --gold-light: #fff0c7;
  --red: #c94624;
  --red-light: #fbe2d8;
  --cream: #fbf8f0;
  --mist: #eff7f5;
  --paper: #fff;
  --muted: #567275;
  --line: #cfdfdc;
  --shadow: 0 24px 80px rgba(8, 54, 56, 0.13);
  --container: min(1180px, calc(100vw - 40px));
  --sans: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  --hand: "Coming Soon", "Comic Sans MS", cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body::selection { color: #fff; background: var(--petrol); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
svg { display: block; width: 1.25rem; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
p, h1, h2, h3, blockquote { margin-top: 0; }
.container { width: var(--container); margin-inline: auto; }
.hand { font-family: var(--hand); font-weight: 400; }

.skip-link { position: fixed; z-index: 100; top: 10px; left: 10px; padding: 10px 16px; color: #fff; background: var(--ink-deep); border-radius: 8px; transform: translateY(-160%); transition: transform .18s ease; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: sticky; z-index: 50; top: 0; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(207,223,220,.9); backdrop-filter: blur(15px); }
.header-inner { min-height: 84px; display: flex; align-items: center; gap: 28px; }
.brand { min-width: 260px; display: flex; align-items: center; gap: 8px; }
.brand img { width: 68px; height: 54px; object-fit: contain; }
.brand > span { display: grid; line-height: 1.06; }
.brand strong { color: var(--aqua); font-family: var(--hand); font-size: 1.24rem; font-weight: 400; white-space: nowrap; }
.brand small { max-width: 205px; margin-top: 5px; color: var(--ink-deep); font-size: .61rem; font-weight: 800; letter-spacing: .05em; line-height: 1.25; text-transform: uppercase; }
.nav-panel { flex: 1; display: flex; align-items: center; justify-content: flex-end; gap: 24px; }
.main-nav { display: flex; align-items: center; gap: 23px; }
.main-nav a { position: relative; padding-block: 10px; color: #375d60; font-size: .82rem; font-weight: 800; white-space: nowrap; }
.main-nav a::after { content: ""; position: absolute; right: 50%; bottom: 4px; left: 50%; height: 2px; background: var(--red); transition: right .18s ease, left .18s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after, .main-nav a[aria-current="page"]::after { right: 0; left: 0; }
.main-nav a[aria-current="page"] { color: var(--petrol); }
.nav-toggle { display: none; }

.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 12px 22px; border: 2px solid transparent; border-radius: 999px; font: inherit; font-size: .91rem; font-weight: 850; line-height: 1.15; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.button-small { min-height: 44px; padding: 10px 18px; font-size: .82rem; }
.button-dark { color: #fff; background: var(--ink-deep); }
.button-primary { color: #fff; background: var(--red); box-shadow: 0 12px 28px rgba(201,70,36,.24); }
.button-primary:hover { background: #b93d1e; box-shadow: 0 15px 34px rgba(201,70,36,.29); }
.button-outline { color: var(--petrol); background: rgba(255,255,255,.45); border-color: rgba(7,83,86,.22); }
.button-white { color: var(--petrol); background: #fff; }
.button-line-light { color: #fff; border-color: rgba(255,255,255,.4); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }

.eyebrow { margin-bottom: 18px; color: var(--petrol); font-size: .73rem; font-weight: 900; letter-spacing: .14em; line-height: 1.3; text-transform: uppercase; }
.eyebrow > span { width: 26px; height: 2px; display: inline-block; margin: 0 8px 3px 0; background: var(--red); }
.eyebrow-light { color: #c9efea; }
.eyebrow-light > span { background: var(--gold); }
h1, h2 { color: var(--ink-deep); font-weight: 850; letter-spacing: -.055em; line-height: .98; }
h1 { margin-bottom: 28px; font-size: clamp(3.6rem, 7.3vw, 6.9rem); }
h2 { margin-bottom: 24px; font-size: clamp(2.45rem, 4.8vw, 4.65rem); }
h1 em, h2 em { color: var(--aqua); font-family: var(--hand); font-style: normal; font-weight: 400; letter-spacing: -.045em; }
.lead { max-width: 700px; color: #3d6063; font-size: clamp(1.08rem, 1.6vw, 1.27rem); line-height: 1.6; }
.section { padding: 112px 0; }
.section-heading { margin-bottom: 54px; }
.section-heading.centered { max-width: 780px; margin-right: auto; margin-left: auto; text-align: center; }
.section-heading.centered > p:last-child { max-width: 660px; margin-inline: auto; color: var(--muted); font-size: 1.05rem; }
.section-heading.split { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 80px; }
.section-heading.split > div:last-child, .section-heading.split > p { max-width: 470px; margin-bottom: 13px; color: var(--muted); }
.text-link { display: inline-flex; align-items: center; gap: 12px; color: var(--petrol); font-size: .88rem; font-weight: 900; }
.text-link span { font-size: 1.2em; transition: transform .18s ease; }
.text-link:hover span { transform: translateX(4px); }
.text-link.light { color: #fff; }

/* Home */
.home-hero { position: relative; min-height: 720px; display: grid; align-items: center; overflow: hidden; background: radial-gradient(circle at 7% 8%, rgba(223,142,0,.15) 0 8%, transparent 8.2%), radial-gradient(circle at 95% 18%, rgba(67,161,168,.15) 0 14%, transparent 14.2%), var(--mist); }
.home-hero::after { content: ""; position: absolute; right: -150px; bottom: -270px; width: 560px; height: 560px; border: 2px dashed rgba(7,83,86,.17); border-radius: 50%; }
.hero-grid { min-height: 720px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 70px; padding-block: 64px 78px; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy .lead { max-width: 620px; margin-bottom: 34px; }
.hero-copy .button-row { margin-bottom: 42px; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 30px; margin: 0; padding: 0; list-style: none; }
.hero-facts li { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 9px; color: var(--muted); font-size: .76rem; font-weight: 750; line-height: 1.15; }
.hero-facts b { min-width: 38px; height: 38px; display: grid; place-items: center; padding: 0 8px; color: #fff; background: var(--petrol); border-radius: 50%; font-family: var(--hand); font-size: .9rem; font-weight: 400; }
.hero-facts li:nth-child(2) b { background: var(--gold); }
.hero-facts li:nth-child(3) b { background: var(--red); }
.hero-identity { position: relative; z-index: 2; min-height: 550px; display: grid; place-items: center; }
.logo-sheet { position: relative; width: min(500px, 100%); padding: 20px; background: #fff; box-shadow: var(--shadow); transform: rotate(1.8deg); }
.logo-sheet img { width: 100%; aspect-ratio: 1.414 / 1; object-fit: contain; }
.paper-tape { position: absolute; z-index: 2; width: 102px; height: 30px; background: rgba(231,216,170,.7); box-shadow: 0 1px 1px rgba(0,0,0,.05); }
.tape-left { top: 2px; left: -32px; transform: rotate(-33deg); }
.tape-right { right: -29px; bottom: 7px; transform: rotate(-28deg); }
.floating-note { position: absolute; z-index: 4; display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: #fff; border: 1px solid var(--line); border-radius: 13px; box-shadow: 0 15px 45px rgba(8,54,56,.14); font-size: .83rem; }
.floating-note svg { width: 23px; color: var(--red); }
.floating-note span { display: grid; }
.floating-note small { color: var(--muted); }
.note-address { right: -35px; bottom: 40px; }
.note-kind { top: 28px; left: -42px; color: var(--petrol); font-weight: 800; transform: rotate(-3deg); }
.note-kind span { color: var(--gold); font-size: 1.35rem; }
.confetti i, .page-dots i { position: absolute; z-index: 1; display: block; border-radius: 50%; }
.confetti i:nth-child(1) { top: 14%; left: 4%; width: 14px; height: 14px; background: var(--red); }
.confetti i:nth-child(2) { top: 72%; left: 2%; width: 9px; height: 9px; background: var(--aqua); }
.confetti i:nth-child(3) { top: 11%; left: 47%; width: 10px; height: 10px; background: var(--gold); }
.confetti i:nth-child(4) { top: 81%; left: 47%; width: 13px; height: 13px; background: var(--leaf); }
.confetti i:nth-child(5) { top: 9%; right: 3%; width: 18px; height: 18px; background: var(--aqua); }
.confetti i:nth-child(6) { right: 5%; bottom: 10%; width: 8px; height: 8px; background: var(--red); }
.promise-bar { padding: 52px 0; color: #fff; background: var(--petrol); }
.promise-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 80px; }
.promise-grid .hand { margin: 0; color: #fff; font-size: clamp(1.8rem, 3.4vw, 3rem); line-height: 1.25; }
.promise-grid .hand span { color: #7ed0d0; }
.promise-grid > p:last-child { max-width: 670px; margin: 0; color: #d4e8e5; font-size: 1.05rem; }
.doorway-section { background: var(--cream); }
.doorway-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.doorway-grid-two { max-width: 880px; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-inline: auto; }
.doorway-card { position: relative; min-height: 420px; display: flex; flex-direction: column; padding: 33px; overflow: hidden; background: #fff; border: 1px solid rgba(20,60,63,.08); border-radius: 25px; box-shadow: 0 12px 45px rgba(8,54,56,.07); transition: transform .22s ease, box-shadow .22s ease; }
.doorway-card::after { content: ""; position: absolute; right: -50px; bottom: -60px; width: 150px; height: 150px; border-radius: 50%; opacity: .12; transition: transform .25s ease; }
.doorway-card:hover { transform: translateY(-7px); box-shadow: 0 22px 55px rgba(8,54,56,.13); }
.doorway-card:hover::after { transform: scale(1.18); }
.doorway-teal::after { background: var(--aqua); }
.doorway-gold::after { background: var(--gold); }
.doorway-red::after { background: var(--red); }
.card-index { color: #91a5a5; font-size: .68rem; font-weight: 900; letter-spacing: .13em; }
.line-icon { width: 76px; height: 76px; display: grid; place-items: center; margin: 34px 0 28px; border-radius: 22px; transform: rotate(-3deg); }
.line-icon svg { width: 46px; }
.doorway-teal .line-icon { color: var(--petrol); background: var(--aqua-light); }
.doorway-gold .line-icon { color: #a56800; background: var(--gold-light); }
.doorway-red .line-icon { color: var(--red); background: var(--red-light); }
.doorway-card h3 { margin-bottom: 13px; color: var(--ink-deep); font-size: 1.45rem; line-height: 1.15; }
.doorway-card p { margin-bottom: 25px; color: var(--muted); }
.card-link { margin-top: auto; color: var(--petrol); font-size: .82rem; font-weight: 900; }
.card-link b { margin-left: 8px; }
.method-section { color: #fff; background: var(--ink-deep); }
.method-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.method-intro { position: sticky; top: 135px; align-self: start; }
.method-intro h2 { color: #fff; }
.method-intro h2 em { color: #77c9ca; }
.method-intro > p:not(.eyebrow) { max-width: 430px; color: #bad3d1; }
.method-steps { margin: 0; padding: 0; list-style: none; }
.method-steps li { display: grid; grid-template-columns: 74px 1fr; gap: 24px; padding: 28px 0 34px; border-top: 1px solid rgba(255,255,255,.16); }
.method-steps li:last-child { border-bottom: 1px solid rgba(255,255,255,.16); }
.method-steps > li > span { width: 54px; height: 54px; display: grid; place-items: center; color: var(--ink-deep); background: #fff; border-radius: 50%; font-family: var(--hand); }
.method-steps li:nth-child(2) > span { background: var(--gold); }
.method-steps li:nth-child(3) > span { background: var(--aqua); }
.method-steps li:nth-child(4) > span { color: #fff; background: var(--red); }
.method-steps h3 { margin-bottom: 5px; color: #fff; font-size: 1.35rem; }
.method-steps p { margin: 0; color: #bad3d1; }
.team-preview { background: #fff; }
.portrait-row { max-width: 940px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 42px; margin-inline: auto; }
.portrait-card { display: block; text-align: center; }
.portrait-frame { position: relative; width: min(230px, 100%); aspect-ratio: 1; margin: 0 auto 22px; padding: 8px; overflow: hidden; border-radius: 50%; box-shadow: 0 15px 38px rgba(8,54,56,.1); transition: transform .25s ease, box-shadow .25s ease; }
.portrait-frame::before { content: ""; position: absolute; inset: 8px; z-index: 1; border: 2px solid rgba(255,255,255,.78); border-radius: 50%; pointer-events: none; }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; filter: saturate(.9); }
.portrait-card:hover .portrait-frame { transform: translateY(-5px); box-shadow: 0 20px 45px rgba(8,54,56,.16); }
.photo-adil { object-position: 50% 8%; }
.photo-mathieu { object-position: 50% 30%; }
.photo-yusuf { object-position: 50% 28%; }
.portrait-teal { background: var(--aqua-light); }
.portrait-gold { background: var(--gold-light); }
.portrait-red { background: var(--red-light); }
.portrait-card p { margin: 0 0 3px; color: var(--red); font-size: .7rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.portrait-card h3 { margin: 0; color: var(--ink-deep); font-size: 1.35rem; }
.practical-preview { padding-top: 40px; background: var(--cream); }
.practical-card { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; padding: 64px; color: #fff; background: var(--petrol); border-radius: 34px; box-shadow: var(--shadow); }
.practical-copy h2 { color: #fff; }
.practical-copy h2 em { color: #82d0d1; }
.practical-copy > p:not(.eyebrow) { max-width: 510px; color: #cce4e1; }
.practical-details { display: grid; align-content: center; }
.practical-details > div { display: grid; grid-template-columns: 48px 1fr; align-items: center; gap: 17px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.17); }
.detail-icon { width: 42px; height: 42px; display: grid; place-items: center; color: var(--ink-deep); background: var(--gold); border-radius: 50%; font-family: var(--hand); }
.practical-details div:nth-child(2) .detail-icon { background: var(--aqua); }
.practical-details div:nth-child(3) .detail-icon { color: #fff; background: var(--red); }
.practical-details p { margin: 0; color: #cce4e1; }
.practical-details strong { color: #fff; }

/* Shared page heroes */
.page-hero { position: relative; min-height: 590px; display: grid; align-items: center; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; right: -150px; top: -190px; width: 530px; height: 530px; border: 2px dashed rgba(7,83,86,.15); border-radius: 50%; }
.page-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 90px; padding-block: 80px; }
.page-hero-copy { position: relative; z-index: 2; }
.page-hero-copy .lead { max-width: 680px; }
.breadcrumb { display: flex; align-items: center; gap: 9px; margin-bottom: 46px; color: #658082; font-size: .73rem; font-weight: 750; }
.breadcrumb a:hover { color: var(--red); }
.page-dots i:nth-child(1) { top: 16%; left: 3%; width: 10px; height: 10px; background: var(--red); }
.page-dots i:nth-child(2) { right: 7%; bottom: 13%; width: 14px; height: 14px; background: var(--aqua); }
.page-dots i:nth-child(3) { top: 11%; left: 49%; width: 9px; height: 9px; background: var(--gold); }
.page-dots i:nth-child(4) { bottom: 8%; left: 43%; width: 7px; height: 7px; background: var(--leaf); }
.page-hero-project { background: var(--mist); }
.page-hero-pathologies { background: #fff2ec; }
.page-hero-team { background: #eaf5ef; }
.page-hero-contact { background: #edf8f7; }
.project-logo-card { position: relative; z-index: 2; padding: 24px 26px 20px; background: #fff; border: 1px solid rgba(7,83,86,.08); border-radius: 28px; box-shadow: var(--shadow); transform: rotate(.7deg); }
.project-logo-card::after { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(67,161,168,.16); border-radius: 20px; pointer-events: none; }
.project-logo-card img { position: relative; z-index: 1; width: 100%; height: auto; aspect-ratio: 1.414 / 1; object-fit: contain; }
.logo-caption { position: relative; z-index: 2; display: inline-block; margin: 0 0 2px 8px; color: var(--red); font-size: 1.05rem; transform: rotate(-3deg); }

/* Project */
.story-section { background: #fff; }
.narrow-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.sticky-title { position: sticky; top: 128px; align-self: start; }
.sticky-title h2 { font-size: clamp(2.25rem, 4vw, 3.8rem); }
.long-copy { max-width: 670px; }
.long-copy p { color: var(--muted); font-size: 1.03rem; }
.long-copy .intro-paragraph { color: var(--ink); font-size: 1.35rem; font-weight: 650; line-height: 1.55; }
.hand-note { display: flex; align-items: center; gap: 16px; margin-top: 38px; padding: 22px 26px; background: var(--gold-light); border-radius: 16px; transform: rotate(-1deg); }
.hand-note > span { color: var(--red); font-size: 1.6rem; }
.hand-note p { margin: 0; color: var(--petrol); font-size: 1.55rem; }
.values-section { background: var(--cream); }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.value-card { min-height: 280px; padding: 42px; background: rgba(255,255,255,.45); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.value-card > span { color: var(--red); font-family: var(--hand); }
.value-card h3 { margin: 32px 0 12px; color: var(--ink-deep); font-size: 1.5rem; }
.value-card p { max-width: 460px; margin: 0; color: var(--muted); }
.pathway-section { color: #fff; background: var(--petrol); }
.pathway-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; }
.pathway-copy { position: sticky; top: 128px; align-self: start; }
.pathway-copy h2 { color: #fff; }
.pathway-copy h2 em { color: #8ad1d1; }
.pathway-copy > p:not(.eyebrow) { color: #c7e0dd; }
.pathway-list { margin: 0; padding: 0; list-style: none; }
.pathway-list li { display: grid; grid-template-columns: 70px 1fr; gap: 20px; padding: 29px 0; border-top: 1px solid rgba(255,255,255,.18); }
.pathway-list > li > span { color: var(--gold); font-family: var(--hand); font-size: 1.7rem; }
.pathway-list h3 { margin-bottom: 6px; color: #fff; font-size: 1.25rem; }
.pathway-list p { margin: 0; color: #c7e0dd; }
.ambition-section { background: var(--mist); }
.ambition-card { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; padding: 64px; background: #fff; border-radius: 28px; box-shadow: 0 18px 65px rgba(8,54,56,.09); }
.ambition-card > div:last-child { color: var(--muted); }

/* Pathologies */
.function-wheel { position: relative; z-index: 2; isolation: isolate; width: min(500px, 100%); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-areas: ". marcher ." "explorer center jouer" "equilibre center manipuler" ". respirer ."; align-items: center; gap: 14px 16px; margin-inline: auto; padding: 14px 6px; }
.wheel-links { position: absolute; z-index: -1; inset: 0; width: 100%; height: 100%; stroke-width: 2.5; stroke-dasharray: 4 8; opacity: .65; }
.wheel-center { grid-area: center; justify-self: center; width: 100%; max-width: 174px; aspect-ratio: 1; display: grid; align-content: center; justify-items: center; gap: 7px; padding: 10px 5px; color: #fff; background: var(--red); border: 6px solid #fff; border-radius: 50%; box-shadow: 0 7px 0 #a7371e, 0 16px 32px rgba(201,70,36,.18); transform: rotate(-4deg); text-align: center; }
.wheel-center > svg { width: 32px; height: 32px; fill: rgba(255,255,255,.15); }
.wheel-center strong { max-width: 100%; font-family: var(--hand); font-size: clamp(1.05rem, 1.8vw, 1.45rem); font-weight: 400; line-height: 1.15; overflow-wrap: anywhere; }
.wheel-center > span { font-size: .875rem; line-height: 1.2; }
.wheel-node { min-width: 0; display: grid; justify-items: center; gap: 6px; padding: 12px 6px 10px; color: var(--ink-deep); background: var(--node-bg); border: 2px solid var(--node-color); border-radius: 25px 20px 24px 19px; box-shadow: 0 5px 0 var(--node-color), 0 10px 22px rgba(8,54,56,.06); transform: rotate(var(--node-tilt)); text-align: center; }
.wheel-node > span:last-child { max-width: 100%; font-family: var(--hand); font-size: 1rem; line-height: 1.3; overflow-wrap: anywhere; hyphens: auto; }
.wheel-icon { width: min(44px, 100%); aspect-ratio: 1; display: grid; place-items: center; color: var(--node-ink); }
.wheel-icon svg { width: 100%; height: 100%; stroke-width: 1.8; }
.wheel-marcher { grid-area: marcher; --node-bg: var(--gold-light); --node-color: var(--gold); --node-ink: #8d5900; --node-tilt: -4deg; }
.wheel-jouer { grid-area: jouer; --node-bg: var(--leaf-light); --node-color: var(--leaf); --node-ink: #496a35; --node-tilt: 4deg; }
.wheel-manipuler { grid-area: manipuler; --node-bg: var(--aqua-light); --node-color: var(--aqua); --node-ink: var(--petrol); --node-tilt: -3deg; }
.wheel-respirer { grid-area: respirer; --node-bg: #e4f1f7; --node-color: #46899e; --node-ink: #276176; --node-tilt: 3deg; }
.wheel-equilibre { grid-area: equilibre; --node-bg: var(--gold-light); --node-color: var(--gold); --node-ink: #8d5900; --node-tilt: 3deg; }
.wheel-explorer { grid-area: explorer; --node-bg: var(--red-light); --node-color: var(--red); --node-ink: #a5371d; --node-tilt: -4deg; }
.conditions-section { background: var(--cream); }
.conditions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.condition-card { min-height: 420px; padding: 31px; background: #fff; border-top: 5px solid; border-radius: 16px; box-shadow: 0 10px 38px rgba(8,54,56,.06); }
.condition-mark { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 38px; border-radius: 50%; font-family: var(--hand); }
.condition-card h3 { margin-bottom: 13px; color: var(--ink-deep); font-size: 1.24rem; line-height: 1.25; }
.condition-card p { color: var(--muted); }
.condition-card ul { margin: 24px 0 0; padding: 0; list-style: none; }
.condition-card li { padding: 6px 0; color: var(--ink); font-size: .83rem; font-weight: 750; border-top: 1px solid #e3ecea; }
.condition-teal { border-color: var(--aqua); }.condition-teal .condition-mark { color: var(--petrol); background: var(--aqua-light); }
.condition-gold { border-color: var(--gold); }.condition-gold .condition-mark { color: #8e5b00; background: var(--gold-light); }
.condition-red { border-color: var(--red); }.condition-red .condition-mark { color: var(--red); background: var(--red-light); }
.condition-green { border-color: var(--leaf); }.condition-green .condition-mark { color: var(--leaf); background: var(--leaf-light); }
.condition-aqua { border-color: #2b8790; }.condition-aqua .condition-mark { color: #27747b; background: #dceff1; }
.condition-ink { border-color: var(--ink-deep); }.condition-ink .condition-mark { color: #fff; background: var(--ink-deep); }
.other-needs-section { color: #fff; background: var(--ink-deep); }
.other-needs-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.other-needs-title { position: sticky; top: 128px; align-self: start; }
.other-needs-title h2 { color: #fff; }.other-needs-title h2 em { color: #80cccd; }.other-needs-title > p:last-child { color: #bad3d1; }
.other-needs-list article { display: grid; grid-template-columns: 60px 1fr; gap: 22px; padding: 27px 0; border-top: 1px solid rgba(255,255,255,.18); }
.other-needs-list article > span { color: var(--gold); font-family: var(--hand); }
.other-needs-list h3 { margin-bottom: 6px; color: #fff; font-size: 1.2rem; }
.other-needs-list p { margin: 0; color: #bad3d1; }
.adult-section { background: var(--mist); }
.adult-card { display: grid; grid-template-columns: 180px 1fr; gap: 64px; padding: 62px; background: #fff; border-radius: 28px; box-shadow: 0 18px 60px rgba(8,54,56,.08); }
.adult-badge { width: 150px; height: 150px; display: grid; align-content: center; justify-items: center; color: #fff; background: var(--leaf); border-radius: 50% 45% 54% 46%; transform: rotate(-3deg); }
.adult-badge span { font-family: var(--hand); font-size: 2.4rem; line-height: 1; }.adult-badge strong { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; }
.adult-card > div:last-child { color: var(--muted); }.adult-card h2 { font-size: clamp(2.25rem, 4.2vw, 4rem); }
.orientation-section { background: #fff; }
.orientation-grid { display: grid; grid-template-columns: 1fr .7fr; align-items: center; gap: 80px; }
.orientation-grid > div:first-child > p:last-child { max-width: 680px; color: var(--muted); }
.orientation-actions { display: flex; flex-direction: column; gap: 12px; }

/* Team */
.team-stack { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: end; gap: 14px; }
.team-stack img { position: static; width: 100%; height: auto; object-fit: contain; border: 7px solid #fff; border-radius: 20px; box-shadow: 0 16px 45px rgba(8,54,56,.14); }
.team-stack img:nth-child(1) { transform: translateY(13px) rotate(-2deg); }.team-stack img:nth-child(2) { transform: translateY(-9px); }.team-stack img:nth-child(3) { transform: translateY(13px) rotate(2deg); }
.profiles-section { padding-bottom: 50px; background: #fff; }
.profile { display: grid; grid-template-columns: minmax(250px, 300px) 1fr; align-items: center; gap: 82px; padding: 82px 0; border-bottom: 1px solid var(--line); }
.profile-reverse { grid-template-columns: 1fr minmax(250px, 300px); }
.profile-reverse .profile-photo { order: 2; }.profile-reverse .profile-copy { order: 1; }
.profile-photo { position: relative; width: 100%; max-width: 280px; justify-self: center; }
.profile-photo .photo-backdrop { position: absolute; inset: 12px -12px -12px 12px; background: var(--aqua-light); border-radius: 24px; }
.profile-photo img { position: relative; z-index: 1; width: 100%; height: auto; object-fit: contain; border: 7px solid #fff; border-radius: 22px; box-shadow: 0 15px 42px rgba(8,54,56,.12); }
.profile-gold .photo-backdrop { background: var(--gold-light); }.profile-red .photo-backdrop { background: var(--red-light); }
.photo-label { position: absolute; z-index: 3; right: -9px; bottom: -18px; padding: 7px 17px; color: #fff; background: var(--red); border-radius: 999px; font-size: 1.08rem; transform: rotate(-3deg); }
.profile-gold .photo-label { color: var(--ink-deep); background: var(--gold); }.profile-red .photo-label { background: var(--petrol); }
.profile-role { margin-bottom: 15px; color: var(--red); font-size: .71rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.profile-copy h2 { margin-bottom: 24px; font-size: clamp(2.6rem, 4.6vw, 4.7rem); }
.profile-lead { color: var(--ink); font-size: 1.2rem; font-weight: 650; }
.profile-copy > p:not(.profile-role):not(.profile-lead) { color: var(--muted); }
.profile-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 25px 0; }
.profile-tags span { padding: 7px 12px; color: var(--petrol); background: var(--mist); border-radius: 999px; font-size: .72rem; font-weight: 800; }
.together-section { background: var(--cream); }
.together-card { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; padding: 66px; color: #fff; background: var(--petrol); border-radius: 28px; }
.together-card h2 { color: #fff; }.together-card h2 em { color: #83d0d0; }
.together-points p { display: grid; grid-template-columns: 45px 1fr; gap: 2px 15px; margin: 0; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.18); }
.together-points p > span { grid-row: 1 / 3; color: var(--gold); font-family: var(--hand); }.together-points strong { color: #fff; }.together-points small { color: #c7e0dd; }
.join-section { background: #fff; }.join-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 90px; }.join-grid > div:last-child > p { color: var(--muted); }

/* Contact */
.contact-hero-card { position: relative; z-index: 2; padding: 25px; background: #fff; border-radius: 26px; box-shadow: var(--shadow); transform: rotate(1deg); }
.contact-hero-card img { width: 100%; max-height: 285px; object-fit: contain; }
.contact-hero-card > a { display: grid; margin: 10px -4px -4px; padding: 19px 23px; color: #fff; background: var(--petrol); border-radius: 14px; }
.contact-hero-card span { font-size: .69rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }.contact-hero-card strong { font-family: var(--hand); font-size: 1.65rem; font-weight: 400; }
.contact-cards-section { background: var(--cream); }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-card { min-height: 330px; padding: 32px; background: #fff; border-radius: 22px; box-shadow: 0 10px 40px rgba(8,54,56,.06); }
.contact-icon { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 45px; color: var(--petrol); background: var(--aqua-light); border-radius: 50%; }.contact-icon-gold { color: #855600; background: var(--gold-light); }.contact-icon-red { color: var(--red); background: var(--red-light); }
.contact-icon svg { width: 24px; }.card-kicker { margin-bottom: 8px; color: var(--red); font-size: .69rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.contact-card h2 { margin-bottom: 14px; font-size: 1.35rem; letter-spacing: -.03em; line-height: 1.25; }.contact-card > p:not(.card-kicker) { color: var(--muted); font-size: .91rem; }.mini-links { display: flex; gap: 18px; }.mini-links a { color: var(--petrol); font-size: .79rem; font-weight: 850; }
.hours-section { color: #fff; background: var(--ink-deep); }
.hours-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }.hours-copy h2 { color: #fff; }.hours-copy h2 em { color: #7acaca; }.hours-copy > p:last-child { color: #bad3d1; }
.hours-table > div { display: flex; justify-content: space-between; gap: 30px; padding: 20px 4px; border-top: 1px solid rgba(255,255,255,.18); }.hours-table > div:last-child { border-bottom: 1px solid rgba(255,255,255,.18); }.hours-table span { color: #c6dedc; }.hours-table strong { color: #fff; }.hours-table .closed strong { color: #87a7a7; }
.access-section { background: var(--mist); }.access-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }.access-card { min-height: 230px; padding: 32px; background: #fff; border-radius: 20px; }.access-card > span { min-width: 48px; height: 48px; display: inline-grid; place-items: center; padding: 0 9px; color: #fff; background: var(--petrol); border-radius: 50%; font-family: var(--hand); }.access-card:nth-child(2) > span { color: var(--ink-deep); background: var(--gold); }.access-card:nth-child(3) > span { background: var(--red); font-size: .72rem; }.access-card h3 { margin: 32px 0 9px; color: var(--ink-deep); }.access-card p { margin: 0; color: var(--muted); }
.respiratory-section { background: #fff; }.respiratory-card { display: grid; grid-template-columns: 86px 1fr auto; align-items: center; gap: 35px; padding: 46px; color: #fff; background: var(--red); border-radius: 25px; }.respiratory-mark { width: 70px; height: 70px; display: grid; place-items: center; color: var(--red); background: #fff; border-radius: 50%; font-family: var(--hand); font-size: 2rem; }.respiratory-card .eyebrow { color: #ffe1d7; }.respiratory-card .eyebrow > span { background: #fff; }.respiratory-card h2 { margin-bottom: 14px; color: #fff; font-size: clamp(2rem, 3.6vw, 3.35rem); }.respiratory-card h2 em { color: #fff; }.respiratory-card p:last-child { margin: 0; color: #ffe3da; }
.prepare-section { background: var(--cream); }.prepare-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; }.check-list p { display: grid; grid-template-columns: 34px 1fr; gap: 13px; margin: 0; padding: 18px 0; color: var(--muted); border-top: 1px solid var(--line); }.check-list p:last-child { border-bottom: 1px solid var(--line); }.check-list span { width: 27px; height: 27px; display: grid; place-items: center; color: #fff; background: var(--leaf); border-radius: 50%; font-size: .75rem; }

/* Next + footer */
.next-page { padding-top: 50px; background: var(--cream); }
.next-card { min-height: 285px; display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: 50px 62px; border-radius: 28px; }
.next-card h2 { margin: 0; font-size: clamp(2.3rem, 4.5vw, 4.4rem); }.next-card h2 em { color: var(--ink-deep); }.next-gold { background: var(--gold-light); }.next-red { background: var(--red-light); }.next-teal { background: var(--aqua-light); }
.round-arrow { width: 84px; height: 84px; flex: 0 0 84px; display: grid; place-items: center; color: #fff; background: var(--petrol); border-radius: 50%; font-size: 2rem; transition: transform .2s ease; }.round-arrow:hover { transform: translateX(7px); }
.site-footer { padding: 72px 0 24px; color: #c5dcda; background: var(--ink-deep); }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 55px; padding-bottom: 58px; }
.footer-brand { display: flex; align-items: flex-start; gap: 15px; }.footer-brand img { width: 90px; height: 72px; object-fit: contain; background: #fff; border-radius: 8px; }.footer-brand p { display: grid; margin: 0; }.footer-brand strong { color: #7acaca; font-size: 1.25rem; }.footer-brand span { margin-top: 5px; color: #aac4c2; font-size: .72rem; line-height: 1.4; }
.footer-grid h2 { margin-bottom: 17px; color: #fff; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; }.footer-grid a, .footer-grid p { margin-bottom: 8px; color: #aac4c2; font-size: .82rem; }.footer-grid a:hover { color: #fff; }.footer-phone { color: #fff !important; font-family: var(--hand); font-size: 1.2rem !important; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.13); }.footer-bottom p { margin: 0; color: #779b9a; font-size: .7rem; }

/* Reveal */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.js .reveal-delay { transition-delay: .1s; }.js .reveal-delay-2 { transition-delay: .2s; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .header-inner { min-height: 76px; }
  .brand { min-width: 220px; }.brand img { width: 56px; height: 46px; }.brand small { max-width: 170px; font-size: .53rem; }.brand strong { font-size: 1.08rem; }
  .main-nav { gap: 14px; }.main-nav a { font-size: .74rem; }.nav-panel { gap: 14px; }.button-small { padding-inline: 14px; }
  .hero-grid, .page-hero-grid { gap: 45px; }
  .note-address { right: -5px; }.note-kind { left: -10px; }
  .section { padding: 92px 0; }
  .method-grid, .pathway-grid, .other-needs-grid, .hours-grid, .prepare-grid { gap: 65px; }
  .conditions-grid { grid-template-columns: repeat(2, 1fr); }
  .profile { gap: 60px; }
  .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 30px; }
}

@media (max-width: 860px) {
  :root { --container: min(calc(100% - 32px), 720px); }
  .site-header { backdrop-filter: none; }
  .header-inner { justify-content: space-between; }
  .brand { min-width: 0; }.brand small { display: none; }
  .js .nav-toggle { position: relative; z-index: 3; width: 49px; height: 49px; display: grid; place-content: center; gap: 5px; margin-left: auto; padding: 0; color: var(--petrol); background: var(--mist); border: 0; border-radius: 50%; cursor: pointer; }
  .nav-toggle span { width: 20px; height: 2px; display: block; background: currentColor; transition: transform .2s ease, opacity .2s ease; }.nav-toggle b { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .js .nav-panel { position: absolute; top: 76px; right: 0; left: 0; display: none; align-items: stretch; padding: 24px 20px 28px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 20px 35px rgba(8,54,56,.1); }.js .nav-panel.is-open { display: flex; flex-direction: column; }
  .main-nav { display: grid; gap: 0; }.main-nav a { padding: 13px 4px; font-size: .9rem; border-bottom: 1px solid #e7efed; }.main-nav a::after { display: none; }
  .hero-grid, .page-hero-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; gap: 28px; padding-block: 56px 44px; }.home-hero { min-height: auto; }.hero-copy { text-align: center; }.hero-copy .lead { margin-inline: auto; }.hero-copy .button-row, .hero-facts { justify-content: center; }
  .hero-identity { min-height: 0; display: flex; justify-content: center; }
  .hero-identity .logo-sheet, .hero-identity .note-kind { display: none; }
  .hero-identity .note-address { position: static; padding: 12px 20px; border-radius: 18px; box-shadow: none; background: rgba(255,255,255,.65); }
  .promise-grid, .section-heading.split, .method-grid, .narrow-grid, .pathway-grid, .other-needs-grid, .orientation-grid, .hours-grid, .prepare-grid, .join-grid { grid-template-columns: 1fr; gap: 45px; }
  .section-heading.split { align-items: start; }
  .doorway-grid, .portrait-row, .contact-cards, .access-grid { grid-template-columns: 1fr; }
  .doorway-card { min-height: 360px; }.portrait-row { max-width: 540px; margin-inline: auto; gap: 50px; }
  .method-intro, .sticky-title, .pathway-copy, .other-needs-title { position: static; }
  .practical-card, .ambition-card, .together-card { grid-template-columns: 1fr; gap: 45px; padding: 48px; }
  .page-hero { min-height: auto; }.page-hero-grid { padding-block: 60px 75px; }.page-hero-copy { text-align: center; }.breadcrumb, .page-hero-copy .lead { justify-content: center; margin-inline: auto; }
  .project-logo-card { width: min(560px, 100%); margin-inline: auto; }
  .function-wheel { width: min(520px, 100%); margin-inline: auto; }
  .team-stack { width: min(580px, 100%); margin-inline: auto; }
  .profile { grid-template-columns: 1fr; gap: 48px; max-width: 670px; margin-inline: auto; }.profile-reverse .profile-photo, .profile-reverse .profile-copy { order: initial; }.profile-photo { max-width: 280px; margin-inline: auto; }.profile-copy { text-align: center; }.profile-tags, .profile-copy .text-link { justify-content: center; }
  .adult-card { grid-template-columns: 130px 1fr; gap: 40px; padding: 45px; }.adult-badge { width: 120px; height: 120px; }
  .respiratory-card { grid-template-columns: 70px 1fr; }.respiratory-card .button { grid-column: 2; justify-self: start; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }.footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 620px) {
  :root { --container: calc(100vw - 28px); }
  body { font-size: 15px; }
  .brand img { width: 52px; height: 43px; }.brand strong { font-size: 1rem; }
  h1 { font-size: clamp(3rem, 15vw, 4.7rem); }.page-hero h1 { font-size: clamp(2.8rem, 14vw, 4.4rem); } h2 { font-size: clamp(2.25rem, 11vw, 3.6rem); }
  .section { padding: 76px 0; }.section-heading { margin-bottom: 38px; }
  .hero-grid { gap: 24px; padding-block: 38px 34px; }.hero-copy .button-row { margin-bottom: 26px; }.hero-copy .button-row .button { width: 100%; }.hero-facts { gap: 18px; }.hero-facts li { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .hero-identity .note-address { padding: 10px 16px; font-size: .875rem; }.hero-identity .note-address small { font-size: .8125rem; }
  .promise-grid { gap: 25px; text-align: center; }.promise-grid .hand { font-size: 1.9rem; }
  .doorway-card { min-height: 330px; padding: 27px; }.line-icon { margin-block: 26px 20px; }
  .practical-card, .ambition-card, .together-card { padding: 34px 25px; border-radius: 20px; }.practical-card .button { width: 100%; }
  .page-hero-grid { gap: 40px; padding-block: 42px 62px; }.breadcrumb { margin-bottom: 30px; }.project-logo-card { padding: 18px 18px 14px; }
  .narrow-grid { gap: 28px; }.long-copy .intro-paragraph { font-size: 1.15rem; }.hand-note { padding: 18px; }.hand-note p { font-size: 1.23rem; }
  .values-grid { grid-template-columns: 1fr; }.value-card { min-height: 245px; padding: 30px; }
  .method-steps li, .pathway-list li { grid-template-columns: 52px 1fr; gap: 15px; }.method-steps > li > span { width: 44px; height: 44px; }
  .next-card { min-height: 260px; padding: 34px 25px; }.round-arrow { width: 62px; height: 62px; flex-basis: 62px; }
  .conditions-grid { grid-template-columns: 1fr; }.condition-card { min-height: 0; }
  .function-wheel { grid-template-areas: "marcher jouer manipuler" "center center center" "equilibre respirer explorer"; gap: 14px 12px; padding: 8px 5px; }
  .wheel-links { display: none; }
  .wheel-center { width: min(8.5rem, 100%); max-width: none; gap: 5px; }
  .wheel-center strong { font-size: 1.25rem; }.wheel-center > svg { width: 26px; height: 26px; }
  .wheel-node { gap: 5px; padding: 10px 5px 8px; border-radius: 19px 15px 18px 15px; }.wheel-node > span:last-child { font-size: .875rem; }.wheel-icon { width: min(36px, 100%); }
  .adult-card { grid-template-columns: 1fr; padding: 32px 25px; }.adult-badge { width: 100px; height: 100px; }
  .orientation-actions .button { width: 100%; }
  .team-stack { gap: 7px; }.team-stack img { border-width: 5px; border-radius: 14px; }.profile { padding: 62px 0; }.profile-photo { max-width: 245px; }.photo-label { right: -4px; bottom: -17px; }.profile-copy h2 { font-size: 3rem; }
  .contact-cards { gap: 14px; }.contact-card { min-height: auto; }.hours-table > div { gap: 15px; font-size: .9rem; }
  .respiratory-card { grid-template-columns: 1fr; padding: 34px 25px; }.respiratory-card .button { grid-column: 1; justify-self: stretch; }.respiratory-mark { width: 58px; height: 58px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 25px; }.footer-brand { grid-column: 1 / -1; }.footer-grid > div:last-child { grid-column: auto; }.footer-bottom { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}
