:root {
  --ink: #17313a;
  --ink-soft: #45585c;
  --coral: #d97856;
  --coral-dark: #b45339;
  --peach: #f7d7c8;
  --peach-pale: #fff1e8;
  --cream: #fffaf6;
  --sage: #789078;
  --sage-dark: #58725d;
  --sage-pale: #eef1e8;
  --line: #eee5dd;
  --line-strong: #ded5cc;
  --white: #fff;
  --surface: #fffdfb;
  --shadow: 0 7px 20px rgba(66, 49, 38, .07);
  --shadow-raised: 0 10px 24px rgba(66, 49, 38, .11);
  --radius-card: 12px;
  --radius-control: 10px;
  --focus: #9f482f;
  --space-section: 38px;
  --container: 1290px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
  --dot-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Ccircle cx='3' cy='3' r='2' fill='%23d97856'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.48;
  -webkit-font-smoothing: antialiased;
}
body, button, a { color: var(--ink); }
img { display: block; max-width: 100%; }
a { text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 700; letter-spacing: -.025em; }
h2 { margin-bottom: 0; font-size: clamp(30px, 2.45vw, 35px); line-height: 1.12; }
h3 { font-size: 27px; line-height: 1.18; }
.container { width: min(calc(100% - 80px), var(--container)); margin-inline: auto; }
.section { padding: var(--space-section) 0; position: relative; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -100px; z-index: 1000; padding: 12px 18px; background: var(--ink); color: #fff; border-radius: 6px; }
.skip-link:focus { top: 16px; }
:where(a, button):focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }

.site-header { position: sticky; top: 0; z-index: 100; min-height: 88px; background: rgba(255,255,255,.98); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.header-inner { min-height: 88px; display: flex; align-items: center; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.footer-brand .brand-mark { width: 50px; height: 50px; overflow: hidden; border-radius: 50%; background: transparent; }
.footer-brand .brand-mark img { width: 100%; height: 100%; object-fit: contain; transform: none; }
.site-header .brand-mark { width: 50px; height: 50px; overflow: hidden; border-radius: 50%; background: transparent; }
.site-header .brand-mark img { width: 100%; height: 100%; object-fit: contain; transform: none; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font: 700 25px/1.05 var(--serif); letter-spacing: -.035em; }
.brand-copy small { margin-top: 6px; text-transform: uppercase; font-size: 10px; letter-spacing: .22em; color: var(--ink-soft); }
.primary-nav { display: flex; align-items: center; justify-content: center; gap: 17px; margin-left: auto; }
.nav-link { position: relative; min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; padding: 20px 0; font-size: 12px; font-weight: 650; white-space: nowrap; }
.nav-link::after { content: ""; position: absolute; left: 50%; bottom: 11px; width: 0; height: 2px; background: var(--coral); transition: width .18s ease; transform: translateX(-50%); }
.nav-link:hover::after, .nav-link.is-active::after { width: 100%; }
.primary-nav a.is-active { color: var(--coral-dark); }
.nav-item { position: relative; display: flex; align-items: center; }
.nav-main-link { padding-right: 2px; }
.submenu-toggle { width: 44px; min-height: 44px; display: grid; place-items: center; padding: 0; border: 0; color: var(--ink-soft); background: transparent; cursor: pointer; }
.submenu-chevron { width: 12px; height: 8px; overflow: visible; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .18s ease; }
.nav-has-submenu.is-open .submenu-chevron { transform: rotate(180deg); }
.submenu { position: absolute; top: calc(100% - 9px); left: 50%; width: 326px; display: none; padding: 10px; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--white); box-shadow: var(--shadow-raised); transform: translateX(-50%); }
.submenu a { min-height: 44px; display: flex; align-items: center; padding: 9px 12px; border-radius: 7px; color: var(--ink-soft); font-size: 12px; font-weight: 600; line-height: 1.3; white-space: normal; }
.submenu a:hover, .submenu a:focus-visible, .submenu a[aria-current="page"] { color: var(--ink); background: var(--sage-pale); }
.ebook-submenu { width: 318px; }
.submenu-overview { display: none !important; }
.nav-has-submenu.is-open .submenu { display: grid; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 20px; min-height: 53px; padding: 14px 28px; border: 1px solid transparent; border-radius: var(--radius-control); color: #fff; background: var(--coral-dark); box-shadow: 0 7px 16px rgba(200,101,70,.17); font-size: 15px; font-weight: 700; transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease; }
.button:hover { background: var(--focus); transform: translateY(-1px); box-shadow: 0 9px 20px rgba(159,72,47,.21); }
.button-small { min-height: 48px; padding: 12px 23px; gap: 14px; font-size: 13px; }
.header-cta { flex: 0 0 auto; text-transform: uppercase; letter-spacing: .02em; }
.mobile-nav-cta, .nav-toggle { display: none; }

.hero { position: relative; overflow: hidden; background: var(--cream); }
.hero-grid { min-height: 520px; display: grid; grid-template-columns: 48% 52%; align-items: center; }
.hero-copy { position: relative; z-index: 2; padding: 40px 0 32px 28px; }
.eyebrow { margin-bottom: 14px; color: #5d7276; font-size: 12px; font-weight: 700; letter-spacing: .29em; text-transform: uppercase; }
.hero h1 { max-width: 650px; margin-bottom: 3px; font-size: clamp(44px, 4vw, 60px); line-height: .98; text-transform: uppercase; }
.hero-lead { margin-bottom: 22px; font: 400 29px/1.15 var(--serif); }
.hero-lead em { color: var(--coral-dark); font-style: normal; }
.hero-text { max-width: 610px; margin-bottom: 25px; color: var(--ink-soft); font-size: 15px; line-height: 1.55; }
.hero-visual { position: absolute; right: 0; top: 0; width: 49.5%; height: 520px; overflow: hidden; border-radius: 44% 0 0 49% / 55% 0 0 45%; background: var(--peach); }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: rgba(255,248,243,.08); pointer-events: none; }
.hero-visual > img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; filter: saturate(.78) sepia(.08) brightness(1.07); }
.hero-note { position: absolute; z-index: 2; top: 72px; right: 116px; width: 170px; min-height: 190px; padding: 26px 20px; background: rgba(255,253,249,.92); box-shadow: 0 14px 25px rgba(64,44,32,.12); transform: rotate(-3deg); font: 20px/1.3 "Segoe Print", cursive; text-align: center; }
.hero-note span { display: block; color: var(--coral); font-size: 29px; }
.hero-dots { position: absolute; left: 52px; top: 82px; width: 92px; height: 92px; opacity: .8; background-image: var(--dot-pattern); }
.hero-orb-left { position: absolute; left: -78px; top: 16px; width: 170px; height: 170px; border-radius: 50%; background: var(--peach-pale); }
.benefit-strip { height: 82px; display: flex; align-items: center; gap: 70px; padding-left: 30px; }
.benefit-strip div { display: flex; align-items: center; gap: 11px; color: var(--ink-soft); font-size: 14px; font-weight: 600; }
.benefit-icon { display: grid; place-items: center; width: 31px; height: 31px; color: var(--sage-dark); font: 700 26px/1 var(--serif); }

.section-heading { display: flex; align-items: flex-end; gap: 26px; margin-bottom: 24px; }
.split-heading { justify-content: space-between; }
.section-heading p { margin: 0 0 3px; color: var(--ink-soft); font-size: 13px; white-space: nowrap; }
.section-heading p > span { display: inline-block; width: 45px; height: 2px; margin-right: 16px; vertical-align: middle; background: var(--coral); }
.inline-heading { justify-content: flex-start; align-items: baseline; }
.inline-heading p { white-space: normal; }
.card-grid { display: grid; gap: 17px; }
.situations { padding-top: 34px; padding-bottom: 31px; }
.situations-grid { grid-template-columns: repeat(3, 1fr); }
.info-card, .service-card, .expert-card { border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--surface); box-shadow: var(--shadow); }
.info-card { min-height: 116px; display: flex; align-items: center; gap: 20px; padding: 20px 22px; }
.info-card p { margin: 0; font-size: 14px; line-height: 1.45; }
.round-icon { flex: 0 0 auto; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; font: 700 24px/1 var(--serif); }
.round-icon.sage { color: var(--sage-dark); background: var(--sage-pale); }
.round-icon.coral { color: var(--coral); background: #fff3ed; }
.round-icon.peach { color: var(--coral); background: var(--peach-pale); }

.statement-band { position: relative; min-height: 150px; display: grid; place-items: center; overflow: hidden; background: var(--cream); border-block: 1px solid var(--line); }
.statement-copy { position: relative; z-index: 2; text-align: center; }
.statement-copy h2 { margin-bottom: 13px; font-size: 34px; }
.statement-copy p { max-width: 760px; margin: 0 auto; color: var(--ink-soft); }
.statement-photo { position: absolute; left: -8px; bottom: -48px; width: 245px; height: 190px; overflow: hidden; border-radius: 55% 55% 0 0; transform: rotate(-7deg); }
.statement-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 55% 48%; filter: saturate(.72) brightness(1.08); }
.statement-shape { position: absolute; right: -74px; bottom: -80px; width: 240px; height: 230px; border-radius: 50%; background: var(--coral); }
.statement-shape::before { content: ""; position: absolute; left: -38px; top: -10px; width: 84px; height: 110px; background-image: var(--dot-pattern); }

.accompaniment { padding-top: 34px; padding-bottom: 34px; }
.accompaniment-grid { grid-template-columns: repeat(3, 1fr); }
.service-card { min-height: 164px; display: grid; grid-template-columns: 62px 1fr; align-content: center; column-gap: 18px; padding: 20px 22px; scroll-margin-top: 108px; }
.service-card .round-icon { grid-row: 1 / 3; align-self: center; }
.service-card strong { align-self: end; font-size: 14px; line-height: 1.35; }
.service-card small { margin-top: 7px; color: var(--ink-soft); font-size: 12px; line-height: 1.45; }

.approach { padding-top: 34px; padding-bottom: 46px; overflow: hidden; scroll-margin-top: 100px; }
.approach > .container > h2 { margin-bottom: 22px; }
.approach-grid { display: grid; grid-template-columns: 37% 63%; align-items: stretch; }
.approach-visual { position: relative; min-height: 520px; overflow: hidden; border-radius: 120px 120px 0 0; background: var(--peach-pale); }
.approach-visual img { width: 64%; height: 100%; object-fit: cover; object-position: 50% 50%; filter: saturate(.75) brightness(1.08); }
.approach-visual p {
  position: absolute;
  right: 8px;
  top: 65px;
  width: 150px;
  margin: 0;
  color: #34564b;
  transform: rotate(-7deg);
  font: 17px/1.5 "Segoe Print", cursive;
}
.approach-copy { padding: 12px 0 8px 38px; }
.approach-copy h3 { margin-bottom: 13px; font-size: 34px; }
.approach-copy > p { max-width: 790px; margin-bottom: 16px; color: var(--ink-soft); font-size: 14px; line-height: 1.55; }
.tag-list { display: flex; flex-wrap: wrap; gap: 9px; }
.tag-list span { display: inline-flex; align-items: center; min-height: 35px; padding: 8px 21px; border-radius: var(--radius-control); background: var(--sage-pale); color: #4b5f52; font-size: 12px; font-weight: 600; }
.approach-topics { margin-block: 20px; }
.approach-topics span { min-height: 32px; padding: 7px 15px; }
.approach-copy > .approach-progress { margin: 0; padding: 15px 18px; border-left: 3px solid var(--coral); background: var(--cream); color: var(--ink); }
.approach-cta { margin-top: 20px; }

.journey { padding-top: 42px; padding-bottom: 46px; overflow: hidden; scroll-margin-top: 100px; background: var(--cream); }
.journey h2 { max-width: 940px; margin-bottom: 14px; font-size: 34px; line-height: 1.08; }
.journey-intro { max-width: 900px; margin: 0 0 34px; color: var(--ink-soft); font-size: 15px; line-height: 1.55; }
.journey-deco { position: absolute; top: 42px; right: 7%; z-index: 2; color: var(--coral-dark); transform: rotate(-7deg); font: 20px/1.35 "Segoe Print", cursive; }
.steps { position: relative; display: grid; grid-template-columns: repeat(7, 1fr); gap: 10px; margin: 0 0 34px; padding: 0; list-style: none; }
.steps::before { content: ""; position: absolute; left: 6.5%; right: 6.5%; top: 19px; height: 1px; background: #dfc7b9; }
.steps li { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }
.steps li > span { width: 40px; height: 40px; display: grid; place-items: center; margin-bottom: 17px; border-radius: 50%; color: #fff; background: var(--coral); font: 700 16px/1 var(--sans); box-shadow: 0 0 0 7px #fffaf7; }
.steps strong { margin-bottom: 4px; font-size: 13px; line-height: 1.3; }
.steps small { color: var(--ink-soft); font-size: 11px; line-height: 1.35; }
.followup-themes { margin-bottom: 28px; padding: 22px 24px; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--surface); box-shadow: var(--shadow); }
.followup-themes h3 { margin-bottom: 14px; font-size: 20px; }
.followup-themes .tag-list span { background: var(--white); border: 1px solid var(--line); }
.centered-action { text-align: center; }
.centered-action .button { min-height: 48px; padding-inline: 32px; }

.programs { padding-top: 46px; padding-bottom: 46px; scroll-margin-top: 100px; }
.programs .section-heading { margin-bottom: 14px; }
.programs-intro { max-width: 820px; margin: 0 0 26px; color: var(--ink-soft); font-size: 15px; line-height: 1.55; }
.program-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.program-card { min-height: 250px; display: grid; grid-template-columns: 64px 1fr; gap: 20px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--surface); box-shadow: var(--shadow); }
.program-initial { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; background: var(--sage-pale); color: var(--sage-dark); font: 700 24px/1 var(--serif); }
.program-kicker { margin: 0 0 10px; color: var(--coral-dark); font-size: 11px; font-weight: 700; line-height: 1.45; text-transform: uppercase; letter-spacing: .04em; }
.program-card h3 { margin-bottom: 10px; font-size: 26px; }
.program-card div:last-child > p:last-child { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.55; }

.workshops { padding-top: 46px; padding-bottom: 46px; scroll-margin-top: 100px; background: var(--cream); }
.workshop-grid { display: grid; grid-template-columns: 44% 56%; align-items: stretch; }
.workshop-visual { min-height: 430px; overflow: hidden; border-radius: var(--radius-card) 0 0 var(--radius-card); }
.workshop-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.workshop-copy { padding: 42px 46px; border: 1px solid var(--line); border-left: 0; border-radius: 0 var(--radius-card) var(--radius-card) 0; background: var(--surface); }
.workshop-copy .eyebrow { margin-bottom: 10px; }
.workshop-copy h2 { margin-bottom: 14px; }
.workshop-copy > p:not(.eyebrow):not(.workshop-context) { color: var(--ink-soft); line-height: 1.55; }
.workshop-topics { margin-block: 20px; }
.workshop-topics span { padding: 7px 15px; }
.workshop-context { margin: 0 0 22px; padding: 14px 16px; border-left: 3px solid var(--sage); background: var(--sage-pale); font-size: 13px; line-height: 1.5; }
.workshop-cta { text-align: center; }

.expertise { padding-top: 46px; padding-bottom: 46px; overflow: hidden; scroll-margin-top: 100px; }
.expertise::after { content: ""; position: absolute; right: -90px; top: -25px; width: 205px; height: 205px; border-radius: 50%; background: var(--peach-pale); }
.expertise .container { position: relative; z-index: 2; }
.expertise-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, 440px); align-items: center; gap: 24px; }
.expertise-content { min-width: 0; }
.expertise-intro { max-width: 820px; margin: -5px 0 24px; color: var(--ink-soft); font-size: 15px; line-height: 1.55; }
.expertise-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 32px; margin: 0; padding: 12px 24px; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--surface); box-shadow: var(--shadow); list-style: none; }
.expertise-list li { min-height: 70px; display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 14px; padding: 12px 4px; border-bottom: 1px solid var(--line); font-size: 14px; line-height: 1.4; }
.expertise-list li:nth-last-child(-n + 2) { border-bottom: 0; }
.expertise-mark { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: var(--sage-dark); background: var(--sage-pale); font-weight: 800; }
.expertise-visual { margin: 0; background: transparent; }
.expertise-visual img { width: 100%; height: auto; aspect-ratio: 1100 / 925; object-fit: contain; }

.resources { padding-top: 22px; padding-bottom: 14px; }
.resources .section-heading { margin-bottom: 17px; }
.resource-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.resource-tags { flex-wrap: nowrap; }
.resource-tags span { padding-inline: 18px; }
.button-sage { background: var(--sage-dark); box-shadow: 0 7px 16px rgba(88,114,93,.17); }
.button-sage:hover { background: var(--sage); }

.ebooks { padding-top: 46px; padding-bottom: 46px; scroll-margin-top: 100px; }
.section-heading-actions .quiet-link { margin-left: auto; }
.quiet-link { display: inline-flex; align-items: center; gap: 9px; min-height: 44px; padding: 9px 18px; border-radius: var(--radius-control); background: #f3f3ed; color: var(--ink-soft); font-size: 12px; font-weight: 600; }
.ebook-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.ebook-card { min-height: 235px; display: grid; grid-template-columns: 160px 1fr; gap: 25px; padding: 19px; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--surface); box-shadow: var(--shadow); }
.ebook-card > img { width: 160px; height: 196px; border-radius: 8px; object-fit: cover; object-position: center bottom; box-shadow: 0 8px 18px rgba(61,43,31,.12); }
.ebook-card > div { align-self: center; }
.ebook-card h3 { margin-bottom: 8px; font: 700 17px/1.3 var(--sans); letter-spacing: 0; }
.ebook-card p { margin-bottom: 20px; color: var(--ink-soft); font-size: 14px; }
.soft-button { display: inline-flex; align-items: center; gap: 24px; min-height: 47px; padding: 12px 24px; border-radius: var(--radius-control); background: var(--peach-pale); color: var(--ink); font-size: 13px; font-weight: 700; }
.soft-button span { color: var(--coral); }

.testimonials { padding-top: 42px; padding-bottom: 42px; scroll-margin-top: 100px; background: var(--cream); }
.reviews-heading { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 24px; margin-bottom: 22px; }
.reviews-heading .section-heading { margin-bottom: 0; }
.google-summary { min-width: 218px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 3px 14px; padding: 16px 19px; border: 1px solid rgba(62,92,71,.16); border-radius: var(--radius-card); background: rgba(255,255,255,.74); box-shadow: var(--shadow); }
.google-summary > span:first-child { color: var(--ink-soft); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.google-summary-score { display: flex; align-items: baseline; justify-content: flex-end; gap: 2px; grid-row: span 2; }
.google-summary-score strong { font: 700 29px/1 var(--serif); }
.google-summary-score small { color: var(--ink-soft); font-size: 12px; }
.google-summary > small { color: var(--ink-soft); font-size: 11px; }
.google-stars, .review-stars { color: #d38a39; letter-spacing: .04em; }
.google-stars { font-size: 14px; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { min-height: 178px; display: flex; flex-direction: column; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--surface); box-shadow: var(--shadow); }
.review-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.review-card-head strong { font-size: 14px; }
.review-stars { white-space: nowrap; font-size: 13px; }
.review-card blockquote { margin: 24px 0 0; color: var(--ink); font: 700 18px/1.5 var(--serif); }
.reviews-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 18px; }
.reviews-footer p { margin: 0; color: var(--ink-soft); font-size: 11px; line-height: 1.45; }

.partners { padding-top: 42px; padding-bottom: 42px; overflow: hidden; scroll-margin-top: 100px; }
.partners::after { content: ""; position: absolute; right: -65px; bottom: -85px; width: 205px; height: 205px; border-radius: 50%; background: var(--peach-pale); }
.network-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.network-panel { padding: 26px 28px; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--surface); box-shadow: var(--shadow); }
.network-panel h3 { margin-bottom: 18px; font-size: 22px; }
.network-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; list-style: none; }
.network-list li { min-height: 42px; display: inline-flex; flex-direction: column; justify-content: center; padding: 9px 16px; border-radius: var(--radius-control); color: #4b5f52; background: var(--sage-pale); font-size: 13px; font-weight: 700; }
.network-list small { margin-top: 3px; color: var(--ink-soft); font-size: 10px; font-weight: 500; line-height: 1.35; }
.network-programs { background: var(--cream); }
.network-programs article { display: grid; gap: 5px; padding: 16px 0; border-top: 1px solid var(--line); }
.network-programs article:first-of-type { border-top: 0; padding-top: 2px; }
.network-programs strong { font: 700 18px/1.25 var(--serif); }
.network-programs span { color: var(--ink-soft); font-size: 12px; line-height: 1.45; }

.practical { padding-top: 46px; padding-bottom: 36px; background: var(--cream); overflow: hidden; scroll-margin-top: 100px; }
.practical .container { position: relative; z-index: 2; }
.practical .section-heading { margin-bottom: 24px; }
.practical-grid { display: grid; grid-template-columns: 1.05fr .95fr 1.08fr; gap: 22px; align-items: stretch; }
.practical-card, .map-card { min-height: 225px; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--surface); box-shadow: var(--shadow); }
.practical-card { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 28px 30px; }
.practical-card h3 { margin-bottom: 16px; font-size: 22px; }
.practical-card address { margin-bottom: 12px; color: var(--ink-soft); font-style: normal; line-height: 1.55; }
.practical-card > a { min-height: 44px; display: inline-flex; align-items: center; color: var(--sage-dark); font-size: 14px; font-weight: 700; }
.practical-card > a:hover { color: var(--coral-dark); }
.practical-hours { width: 100%; margin-top: 13px; padding-top: 14px; border-top: 1px solid var(--line); color: var(--ink); }
.practical-hours > strong { font-size: 13px; }
.practical-hours p { margin: 5px 0 0; color: var(--ink-soft); font-size: 13px; line-height: 1.55; }
.practical-list { margin: 0; padding: 0; list-style: none; }
.practical-list li { display: flex; gap: 12px; margin-bottom: 12px; color: var(--ink-soft); font-size: 13px; line-height: 1.45; }
.practical-list span { color: var(--sage-dark); font-weight: 700; }
.map-card { display: block; width: 100%; height: 100%; overflow: hidden; background: #f5f6f1; }
.consultation-card { background: #fbf3ed; }
.practical-bottom { display: flex; align-items: center; justify-content: flex-end; gap: 28px; margin-top: 22px; }
.practical-bottom > .button { min-width: 330px; }
.practical-deco { position: absolute; right: 38px; top: 5px; width: 110px; height: 90px; border-radius: 50%; background: var(--peach); opacity: .85; }

.footer-main { background: #e2e7dc; }
.footer-main-inner { min-height: 164px; display: grid; grid-template-columns: auto minmax(180px, 1fr) auto auto; align-items: center; gap: 42px; }
.footer-identity { display: grid; gap: 3px; color: var(--ink-soft); font-size: 13px; }
.footer-identity > strong { color: var(--ink); font-size: 14px; }
.footer-identity address { max-width: 245px; margin-top: 4px; font-style: normal; line-height: 1.4; }
.footer-contact { display: grid; gap: 5px; font-size: 13px; }
.footer-contact a { min-height: 44px; display: inline-flex; align-items: center; gap: 10px; }
.footer-icon { width: 21px; height: 21px; flex: 0 0 auto; fill: none; stroke: var(--sage-dark); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.social-links { display: flex; gap: 12px; }
.social-links a { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(62,92,71,.18); border-radius: var(--radius-control); background: rgba(255,255,255,.38); }
.social-links a[aria-label="LinkedIn"] { display: none; }
.social-links svg { width: 22px; height: 22px; fill: none; stroke: var(--ink); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.social-links .icon-dot { fill: var(--ink); stroke: none; }
.social-links a:hover { background: rgba(255,255,255,.5); }
.footer-nav { padding: 24px 0 28px; }
.footer-nav > .container > nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 0 26px; margin-bottom: 22px; font-size: 12px; font-weight: 650; }
.footer-nav > .container > nav a { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; padding-inline: 5px; }
.footer-nav a:hover { color: var(--coral-dark); }
.footer-legal { display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--ink-soft); font-size: 11px; }
.footer-legal nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 0 20px; }
.footer-legal a, .legal-pending { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
.legal-pending { color: #68706d; }

@media (max-width: 1120px) {
  .container { width: min(calc(100% - 48px), var(--container)); }
  .site-header, .header-inner { min-height: 76px; }
  .brand-copy strong { font-size: 21px; }
  .site-header .brand-mark { width: 43px; height: 43px; }
  .nav-toggle { width: 48px; height: 48px; display: grid; place-items: center; margin-left: auto; padding: 10px; border: 1px solid transparent; border-radius: var(--radius-control); background: transparent; cursor: pointer; }
  .nav-toggle span:not(.sr-only) { display: none; }
  .nav-toggle::before, .nav-toggle::after { content: ""; grid-area: 1 / 1; width: 27px; height: 2px; background: var(--ink); transition: transform .18s ease, opacity .18s ease, box-shadow .18s ease; }
  .nav-toggle::before { box-shadow: 0 -7px 0 var(--ink), 0 7px 0 var(--ink); }
  .nav-toggle::after { opacity: 0; }
  .nav-toggle[aria-expanded="true"]::before { transform: rotate(45deg); box-shadow: none; }
  .nav-toggle[aria-expanded="true"]::after { opacity: 1; transform: rotate(-45deg); }
  .primary-nav { position: absolute; left: 0; right: 0; top: 76px; max-height: calc(100dvh - 76px); display: none; flex-direction: column; align-items: stretch; gap: 0; margin: 0; padding: 12px 24px 28px; overflow-y: auto; overscroll-behavior: contain; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-raised); }
  .primary-nav.is-open { display: flex; }
  .nav-link { min-height: 48px; padding: 12px 0; font-size: 14px; }
  .nav-link::after { display: none; }
  .nav-item { display: grid; grid-template-columns: 1fr 48px; align-items: center; }
  .submenu-toggle { width: 48px; height: 48px; }
  .submenu { position: static; grid-column: 1 / -1; width: auto; display: none; padding: 3px 0 10px 14px; border: 0; border-left: 2px solid var(--peach); border-radius: 0; box-shadow: none; transform: none; }
  .nav-has-submenu.is-open .submenu { display: grid; }
  .submenu a { padding-inline: 12px; font-size: 13px; }
  #accompagnements-menu { max-height: min(42dvh, 340px); padding-right: 8px; overflow-y: auto; overscroll-behavior: contain; scrollbar-gutter: stable; }
  .submenu .submenu-overview { display: flex !important; margin-bottom: 3px; color: var(--coral-dark); font-weight: 750; }
  .mobile-nav-cta { display: inline-flex; width: 100%; margin-top: 12px; text-transform: uppercase; }
  body.nav-open { overflow: hidden; }
  .header-cta { display: none; }
  .hero-copy { padding-left: 10px; }
  .hero-note { right: 40px; }
  .approach-visual img { width: 55%; }
  .approach-visual p { right: 7px; width: 135px; font-size: 16px; }
  .partner-list { flex-wrap: wrap; justify-content: flex-start; }
  .statement-band { min-height: auto; padding-block: 42px; }
  .statement-photo, .statement-shape { display: none; }
  .journey-deco { display: none; }
  .footer-main-inner { grid-template-columns: 1fr 1fr; gap: 24px 36px; padding-block: 30px; }
  .social-links { justify-self: end; }
}

@media (max-width: 900px) {
  .hero-grid { display: block; min-height: 0; }
  .hero-copy { padding: 45px 0; }
  .hero-visual { position: relative; top: auto; right: auto; bottom: auto; width: calc(100% + 48px); height: 330px; margin-left: -24px; border-radius: 45% 0 0 0 / 28% 0 0 0; }
  .hero-note { top: 30px; right: 8%; min-height: 135px; font-size: 15px; }
  .benefit-strip { height: auto; padding-block: 22px; gap: 25px; flex-wrap: wrap; }
  .situations-grid, .accompaniment-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-visual { width: 100%; max-width: 620px; min-height: 300px; }
  .approach-visual img { width: 64%; }
  .approach-visual p { right: 20px; width: 150px; font-size: 17px; }
  .approach-copy { padding: 32px 0 0; }
  .steps { grid-template-columns: repeat(3, 1fr); row-gap: 28px; }
  .steps::before { display: none; }
  .steps li:last-child { grid-column: 2; }
  .program-grid { grid-template-columns: 1fr; }
  .workshop-grid { grid-template-columns: 1fr; }
  .workshop-visual { min-height: 340px; border-radius: var(--radius-card) var(--radius-card) 0 0; }
  .workshop-copy { border-top: 0; border-left: 1px solid var(--line); border-radius: 0 0 var(--radius-card) var(--radius-card); }
  .network-grid { grid-template-columns: 1fr; }
  .resource-row { align-items: flex-start; flex-direction: column; }
  .resource-tags { flex-wrap: wrap; }
  .ebook-grid { grid-template-columns: 1fr; }
  .expertise-layout { grid-template-columns: 1fr; }
  .expertise-visual { order: -1; width: min(100%, 580px); justify-self: center; }
  .reviews-heading { grid-template-columns: 1fr; align-items: start; }
  .google-summary { justify-self: start; }
  .review-grid { grid-template-columns: 1fr; }
  .practical-grid { grid-template-columns: 1fr 1fr; }
  .consultation-card { grid-column: 1 / -1; min-height: 0; }
  .practical-bottom { gap: 24px; }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding-block: 30px; }
  h2 { font-size: 29px; }
  .brand-copy small { font-size: 8px; }
  .hero-grid { min-height: 0; }
  .hero-copy { padding-top: 34px; }
  .hero h1 { font-size: 38px; }
  .hero-lead { font-size: 23px; }
  .hero-text { font-size: 14px; line-height: 1.55; }
  .hero-visual { width: calc(100% + 32px); height: 300px; margin-left: -16px; }
  .hero-note { right: 22px; width: 135px; min-height: 120px; padding: 15px; }
  .benefit-strip { display: grid; grid-template-columns: 1fr; gap: 8px; padding-left: 5px; }
  .section-heading, .resource-row { align-items: flex-start; flex-direction: column; gap: 10px; }
  .section-heading p { white-space: normal; }
  .situations-grid, .accompaniment-grid { grid-template-columns: 1fr; }
  .info-card { min-height: 96px; }
  .statement-band { min-height: auto; padding-block: 34px; }
  .statement-photo, .statement-shape { display: none; }
  .statement-copy { padding-block: 0; }
  .statement-copy h2 { font-size: 27px; }
  .service-card { min-height: 0; padding: 20px 18px; }
  .approach-visual { min-height: 250px; height: 250px; }
  .approach-visual img { width: 60%; }
  .approach-visual p { top: 42px; right: 6px; width: 124px; font-size: 15px; }
  .approach-copy h3 { font-size: 29px; }
  .approach-copy > p { font-size: 14px; }
  .approach-cta { width: 100%; }
  .journey h2 br { display: none; }
  .journey-intro { font-size: 14px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps li:last-child { grid-column: 1 / -1; }
  .followup-themes { padding: 20px 18px; }
  .program-card { min-height: 0; grid-template-columns: 1fr; padding: 22px 20px; }
  .program-card h3 { font-size: 23px; }
  .workshop-visual { min-height: 240px; }
  .workshop-copy { padding: 26px 20px; }
  .workshop-cta { width: 100%; }
  .expertise-list { grid-template-columns: 1fr; padding: 10px 18px; }
  .expertise-list li:nth-last-child(2) { border-bottom: 1px solid var(--line); }
  .google-summary { width: 100%; }
  .review-card { min-height: 0; padding: 22px 20px; }
  .review-card blockquote { margin-top: 18px; font-size: 17px; }
  .reviews-footer { align-items: flex-start; flex-direction: column; gap: 12px; }
  .network-panel { padding: 22px 20px; }
  .resource-tags { display: grid; width: 100%; }
  .ebook-card { grid-template-columns: 105px 1fr; gap: 16px; min-height: 190px; }
  .ebook-card > img { width: 105px; height: 153px; }
  .ebook-card p { margin-bottom: 12px; }
  .soft-button { min-height: 44px; padding: 9px 16px; }
  .section-heading-actions .quiet-link { margin-left: 0; }
  .practical-grid { grid-template-columns: 1fr; }
  .consultation-card { grid-column: auto; }
  .map-card { min-height: 180px; height: 180px; }
  .practical-bottom { flex-direction: column; align-items: stretch; }
  .practical-bottom > .button { min-width: 0; }
  .footer-main-inner { min-height: 190px; flex-wrap: wrap; gap: 10px 30px; padding-block: 25px; }
  .footer-main-inner { grid-template-columns: 1fr; align-items: start; gap: 18px; }
  .footer-contact { gap: 2px; }
  .social-links { justify-self: start; gap: 10px; }
  .footer-nav > .container > nav { flex-wrap: wrap; gap: 4px 18px; margin-bottom: 24px; }
  .footer-legal { flex-direction: column; gap: 8px; text-align: center; }
  .footer-legal nav { justify-content: center; gap: 0 16px; }
}

@media (max-width: 360px) {
  .approach-visual img { width: 52%; }
  .approach-visual p { right: 4px; width: 120px; font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
