:root {
    --purple-950: #241052;
    --purple-900: #331177;
    --purple-800: #42189b;
    --purple-700: #6336b5;
    --purple-500: #8c64d4;
    --purple-100: #eee9fb;
    --ink: #202238;
    --ink-soft: #53566b;
    --line: rgba(34, 31, 63, .14);
    --paper: #fbfaf8;
    --paper-purple: #f3f0fa;
    --white: #fff;
    --pink: #ef169d;
    --pink-soft: #ffe1f4;
    --yellow: #ffd733;
    --yellow-soft: #fff3b6;
    --mint: #57e2c0;
    --mint-soft: #d9fff3;
    --blue: #51c7f1;
    --blue-soft: #dff7ff;
    --teal: #1c8b9c;
    --radius-lg: 32px;
    --radius-md: 20px;
    --radius-sm: 12px;
    --shadow-soft: 0 20px 60px rgba(40, 22, 91, .12);
    --shadow-card: 0 16px 35px rgba(35, 19, 81, .10);
    --container: 1180px;
    --header-height: 82px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

::selection {
    background: var(--yellow);
    color: var(--purple-950);
}

.site-shell {
    overflow: clip;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin: 0 auto;
}

.skip-link {
    position: fixed;
    left: 12px;
    top: -60px;
    z-index: 100;
    padding: 10px 14px;
    border-radius: 8px;
    background: var(--yellow);
    color: var(--purple-950);
    font-weight: 800;
}

.skip-link:focus {
    top: 12px;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    min-height: var(--header-height);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: rgba(251, 250, 248, .94);
    backdrop-filter: blur(12px);
    transition: box-shadow .2s ease, background .2s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 8px 30px rgba(41, 25, 86, .08);
}

.header-inner {
    display: flex;
    min-height: var(--header-height);
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--purple-800);
    font-size: 1.02rem;
    font-weight: 850;
    letter-spacing: -.02em;
}

.brand img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 3px 10px rgba(31, 11, 82, .18);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 23px;
    color: var(--ink-soft);
    font-size: .9rem;
    font-weight: 700;
}

.main-nav > a:not(.nav-cta):not(.nav-instagram) {
    position: relative;
    padding: 8px 0;
}

.nav-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(66, 24, 155, .22);
    border-radius: 50%;
    color: var(--purple-800);
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.nav-instagram img {
    width: 18px;
    height: 18px;
}

.nav-instagram:hover {
    background: var(--purple-800);
    transform: translateY(-1px);
}

.nav-instagram:hover img {
    filter: brightness(0) invert(1);
}

.main-nav > a:not(.nav-cta):not(.nav-instagram)::after {
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--purple-800);
    content: "";
    opacity: 0;
    transform: scaleX(.35);
    transition: transform .2s ease, opacity .2s ease;
}

.main-nav > a:not(.nav-cta):not(.nav-instagram):hover,
.main-nav > a.is-active {
    color: var(--purple-800);
}

.main-nav > a:not(.nav-cta):not(.nav-instagram):hover::after,
.main-nav > a.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav-cta {
    padding: 10px 15px;
    border-radius: 999px;
    background: var(--purple-800);
    color: var(--white);
    transition: transform .2s ease, background .2s ease;
}

.nav-cta:hover {
    background: var(--purple-900);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    align-items: center;
    gap: 9px;
    padding: 8px 0;
    border: 0;
    background: transparent;
    color: var(--purple-800);
    cursor: pointer;
    font-weight: 800;
}

.menu-toggle-icon {
    display: grid;
    width: 21px;
    gap: 5px;
}

.menu-toggle-icon i {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform .2s ease;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--purple-700);
    font-size: .73rem;
    font-weight: 900;
    letter-spacing: .13em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow-on-dark {
    color: var(--yellow);
}

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

h1,
h2,
h3 {
    letter-spacing: -.045em;
    line-height: 1.02;
}

h1 {
    max-width: 900px;
    margin-bottom: 23px;
    font-size: clamp(3.1rem, 6vw, 6.1rem);
    font-weight: 850;
}

h1 em {
    color: inherit;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

h2 {
    margin-bottom: 17px;
    font-size: clamp(2.1rem, 3.6vw, 3.7rem);
    font-weight: 820;
}

h3 {
    margin-bottom: 11px;
    font-size: clamp(1.25rem, 2.2vw, 1.75rem);
    font-weight: 820;
}

.hero-lead,
.body-copy {
    max-width: 720px;
    color: var(--ink-soft);
    font-size: clamp(1.05rem, 1.8vw, 1.28rem);
    line-height: 1.58;
}

.body-copy {
    font-size: 1.03rem;
}

.section {
    padding: 112px 0;
}

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

.section-intro {
    max-width: 765px;
    margin-bottom: 48px;
}

.section-intro > p:last-child {
    max-width: 670px;
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 1.07rem;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 49px;
    gap: 10px;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: .94rem;
    font-weight: 850;
    line-height: 1;
    transition: box-shadow .2s ease, transform .2s ease, background .2s ease, color .2s ease;
}

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

.button-dark {
    background: var(--purple-800);
    color: var(--white);
    box-shadow: 0 9px 20px rgba(66, 24, 155, .2);
}

.button-dark:hover {
    background: var(--purple-900);
    box-shadow: 0 12px 24px rgba(66, 24, 155, .28);
}

.button-light {
    background: var(--white);
    color: var(--purple-800);
    box-shadow: 0 9px 18px rgba(17, 8, 46, .16);
}

.button-outline,
.button-outline-dark {
    border-color: rgba(255, 255, 255, .56);
    color: var(--white);
}

.button-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, .12);
}

.button-outline-dark {
    border-color: var(--purple-800);
    color: var(--purple-800);
}

.button-outline-dark:hover {
    background: var(--purple-100);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    color: var(--purple-800);
    font-size: .91rem;
    font-weight: 850;
    transition: gap .2s ease;
}

.text-link:hover {
    gap: 12px;
}

.text-link-light {
    color: var(--yellow);
}

/* Homepage */
.hero-home {
    position: relative;
    padding: 76px 0 0;
    background:
        radial-gradient(circle at 89% 24%, rgba(141, 99, 220, .5) 0, rgba(141, 99, 220, 0) 27%),
        radial-gradient(circle at 12% 84%, rgba(239, 22, 157, .28) 0, rgba(239, 22, 157, 0) 26%),
        linear-gradient(129deg, var(--purple-950), var(--purple-800) 59%, #4c1a9c);
    color: var(--white);
}

.hero-home-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
    align-items: center;
    gap: 70px;
    min-height: 515px;
    padding-bottom: 94px;
}

.hero-home h1 {
    max-width: 790px;
}

.hero-home h1 em {
    color: var(--mint);
}

.hero-home .hero-lead {
    color: rgba(255, 255, 255, .83);
}

.hero-question {
    margin: 37px 0 0;
    color: var(--yellow);
    font-size: 1.02rem;
    font-weight: 850;
}

.hero-art {
    position: relative;
    min-height: 422px;
}

.hero-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 50%;
}

.orbit-one {
    top: 0;
    right: 10px;
    width: 373px;
    height: 373px;
}

.orbit-two {
    top: 47px;
    right: 81px;
    width: 300px;
    height: 300px;
    border-color: rgba(87, 226, 192, .72);
}

.hero-photo-frame {
    position: absolute;
    right: 58px;
    bottom: 20px;
    z-index: 2;
    width: min(340px, 88%);
    aspect-ratio: .9;
    overflow: hidden;
    border: 10px solid var(--paper);
    border-radius: 52% 48% 45% 55% / 42% 45% 55% 58%;
    box-shadow: 0 25px 45px rgba(12, 4, 36, .36);
    transform: rotate(5deg);
}

.hero-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: rotate(-5deg) scale(1.17);
}

.hero-note {
    position: absolute;
    z-index: 3;
    padding: 9px 14px;
    border-radius: 14px;
    color: var(--purple-950);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.12rem;
    font-style: italic;
    white-space: nowrap;
    box-shadow: 0 9px 20px rgba(12, 4, 36, .2);
    transform: rotate(-6deg);
}

.note-yellow {
    top: 65px;
    left: 16px;
    background: var(--yellow);
}

.note-mint {
    right: -10px;
    bottom: 35px;
    background: var(--mint);
    transform: rotate(5deg);
}

.hero-pulse {
    position: absolute;
    bottom: 5px;
    left: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
    height: 57px;
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 16px;
    background: rgba(32, 12, 80, .45);
    backdrop-filter: blur(8px);
}

.hero-pulse span {
    display: block;
    width: 8px;
    border-radius: 999px;
    background: var(--yellow);
}

.hero-pulse span:nth-child(1) { height: 18px; }
.hero-pulse span:nth-child(2) { height: 35px; background: var(--pink); }
.hero-pulse span:nth-child(3) { height: 23px; background: var(--mint); }
.hero-pulse span:nth-child(4) { height: 40px; background: var(--blue); }
.hero-pulse span:nth-child(5) { height: 15px; background: var(--yellow); }

.audience-choice {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    transform: translateY(46px);
}

.audience-card {
    position: relative;
    display: flex;
    min-height: 266px;
    flex-direction: column;
    overflow: hidden;
    padding: 29px 31px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: transform .25s ease, box-shadow .25s ease;
}

.audience-card:hover {
    box-shadow: 0 27px 50px rgba(35, 18, 85, .2);
    transform: translateY(-7px);
}

.audience-zorg {
    background:
        radial-gradient(circle at 88% 17%, rgba(255, 255, 255, .8) 0 7%, transparent 7.4%),
        linear-gradient(130deg, var(--yellow), #ffed8a);
    color: var(--purple-950);
}

.audience-teams {
    background:
        radial-gradient(circle at 88% 17%, rgba(255, 255, 255, .7) 0 7%, transparent 7.4%),
        linear-gradient(130deg, var(--mint), #bcf5e8);
    color: var(--purple-950);
}

.audience-label {
    margin-bottom: 11px;
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.audience-title {
    max-width: 410px;
    margin-bottom: 10px;
    font-size: clamp(1.55rem, 2.8vw, 2.3rem);
    font-weight: 850;
    letter-spacing: -.05em;
    line-height: 1.05;
}

.audience-copy {
    max-width: 455px;
    margin-bottom: 21px;
    font-size: .99rem;
    line-height: 1.45;
}

.audience-link {
    margin-top: auto;
    font-size: .91rem;
    font-weight: 900;
}

.audience-link b {
    margin-left: 6px;
    font-size: 1.1rem;
    transition: margin .2s ease;
}

.audience-card:hover .audience-link b {
    margin-left: 11px;
}

.section-intro-block {
    padding-top: 152px;
}

.split-intro {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(340px, 1fr);
    gap: clamp(42px, 8vw, 116px);
    align-items: center;
}

.split-intro.align-start {
    align-items: start;
}

.principles-list {
    width: 100%;
    min-width: 0;
    border-top: 1px solid var(--line);
}

.principles-list > div {
    display: block;
    min-width: 0;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.principles-list p {
    margin: 0;
    color: var(--ink-soft);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.principles-list strong {
    color: var(--ink);
}

/* Offers */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.offer-grid-two {
    grid-template-columns: repeat(2, 1fr);
}

.offer-card {
    display: flex;
    min-height: 310px;
    flex-direction: column;
    padding: 26px;
    border-radius: var(--radius-md);
    color: var(--purple-950);
    box-shadow: var(--shadow-card);
    transition: transform .23s ease, box-shadow .23s ease;
}

.offer-card:hover {
    box-shadow: 0 23px 37px rgba(42, 23, 94, .17);
    transform: translateY(-5px);
}

.offer-card h3 {
    max-width: 240px;
}

.offer-card-large {
    min-height: 385px;
    padding: 35px;
}

.offer-card-large h3 {
    max-width: 420px;
    font-size: clamp(1.75rem, 3vw, 2.7rem);
}

.offer-eyebrow {
    margin-bottom: 26px;
    font-size: .69rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.offer-short {
    margin-bottom: 13px;
    font-size: 1.05rem;
    font-weight: 720;
    line-height: 1.36;
}

.offer-copy {
    max-width: 570px;
    color: rgba(36, 16, 82, .78);
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: auto 0 17px;
    padding: 0;
    list-style: none;
}

.tag-list li {
    padding: 5px 8px;
    border: 1px solid rgba(39, 21, 91, .28);
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 800;
}

.offer-care { background: var(--yellow); }
.offer-care-dark { background: #f2e6ff; }
.offer-teams { background: var(--mint); }
.offer-teams-dark { background: var(--blue); }

/* Square preview */
.square-preview {
    background:
        radial-gradient(circle at 15% 25%, rgba(255, 215, 51, .2) 0, transparent 25%),
        linear-gradient(135deg, #fff 0%, #faf9ff 100%);
}

.square-preview-grid {
    display: grid;
    grid-template-columns: minmax(360px, .9fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(40px, 7vw, 106px);
}

.square-preview-visual {
    padding: 25px;
    border-radius: 28px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.square-preview-visual img {
    width: 100%;
}

.square-preview-copy .section-intro {
    margin-bottom: 28px;
}

/* Story band and cta */
.story-band {
    background: var(--purple-950);
    color: var(--white);
}

.story-band-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(330px, .9fr);
    gap: clamp(50px, 9vw, 135px);
    align-items: center;
}

.story-band h2 {
    max-width: 700px;
}

.story-band-copy > p:not(.eyebrow) {
    max-width: 680px;
    color: rgba(255, 255, 255, .76);
    font-size: 1.08rem;
}

.story-outcomes {
    padding: 31px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 22px;
    background: rgba(255, 255, 255, .07);
}

.story-outcomes .eyebrow {
    color: var(--mint);
}

.story-outcomes ul {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.story-outcomes li {
    position: relative;
    padding: 15px 0 15px 23px;
    border-top: 1px solid rgba(255, 255, 255, .17);
    color: rgba(255, 255, 255, .86);
    font-size: 1rem;
    font-weight: 720;
    line-height: 1.35;
}

.story-outcomes li::before {
    position: absolute;
    top: 23px;
    left: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--yellow);
    content: "";
}

.story-numbers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 22px;
    background: rgba(255, 255, 255, .18);
}

.story-numbers div {
    min-height: 145px;
    padding: 23px;
    background: var(--purple-900);
}

.story-numbers strong {
    display: block;
    margin-bottom: 4px;
    color: var(--yellow);
    font-size: 2.3rem;
    font-weight: 900;
    letter-spacing: -.07em;
    line-height: 1;
}

.story-numbers span {
    color: rgba(255, 255, 255, .76);
    font-size: .85rem;
    line-height: 1.3;
}

.cta-section {
    padding: 85px 0;
}

.cta-panel {
    padding: clamp(36px, 6vw, 74px);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 90% 5%, rgba(87, 226, 192, .48) 0, rgba(87, 226, 192, 0) 29%),
        radial-gradient(circle at 9% 100%, rgba(255, 215, 51, .7) 0, rgba(255, 215, 51, 0) 25%),
        var(--purple-100);
    text-align: center;
}

.cta-panel .eyebrow {
    color: var(--purple-800);
}

.cta-panel h2 {
    max-width: 740px;
    margin-right: auto;
    margin-left: auto;
}

.cta-panel > p:not(.eyebrow) {
    max-width: 680px;
    margin-right: auto;
    margin-left: auto;
    color: var(--ink-soft);
    font-size: 1.05rem;
}

.cta-panel .button-row,
.cta-panel > .button {
    margin-top: 28px;
}

.cta-panel .button-row {
    justify-content: center;
}

/* Shared page heroes */
.page-hero {
    position: relative;
    min-height: 530px;
    padding: 69px 0 86px;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(350px, .88fr);
    gap: clamp(44px, 7vw, 105px);
    align-items: center;
}

.page-hero h1 {
    max-width: 850px;
    font-size: clamp(3rem, 5.5vw, 5.25rem);
}

.page-hero .hero-lead {
    max-width: 740px;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    margin-bottom: 31px;
    color: var(--ink-soft);
    font-size: .83rem;
    font-weight: 700;
}

.breadcrumb a {
    color: var(--purple-700);
}

.breadcrumb span {
    opacity: .55;
}

.page-hero-care {
    background:
        radial-gradient(circle at 80% 15%, rgba(255, 215, 51, .9) 0, rgba(255, 215, 51, 0) 24%),
        radial-gradient(circle at 98% 75%, rgba(239, 22, 157, .18) 0, rgba(239, 22, 157, 0) 24%),
        #f6f1ff;
}

.care-hero-image {
    position: relative;
    min-height: 372px;
}

.care-hero-image img {
    width: min(430px, 100%);
    height: 400px;
    margin-left: auto;
    border: 9px solid var(--white);
    border-radius: 49% 51% 46% 54% / 44% 48% 52% 56%;
    box-shadow: var(--shadow-soft);
    object-fit: cover;
    transform: rotate(4deg);
}

.quote-chip {
    position: absolute;
    bottom: 16px;
    left: 0;
    max-width: 230px;
    padding: 16px 18px;
    border-radius: 18px;
    background: var(--purple-800);
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.25;
    transform: rotate(-5deg);
}

.page-hero-teams {
    color: var(--white);
    background:
        radial-gradient(circle at 90% 15%, rgba(81, 199, 241, .65) 0, rgba(81, 199, 241, 0) 22%),
        radial-gradient(circle at 65% 100%, rgba(239, 22, 157, .3) 0, rgba(239, 22, 157, 0) 35%),
        linear-gradient(134deg, #241052, #39137f 58%, #34106c);
}

.page-hero-teams .breadcrumb,
.page-hero-teams .hero-lead {
    color: rgba(255, 255, 255, .78);
}

.page-hero-teams .breadcrumb a {
    color: var(--mint);
}

.page-hero-teams .eyebrow {
    color: var(--yellow);
}

.page-hero-teams h1 em {
    color: var(--mint);
}

.team-hero-photo {
    position: relative;
    width: min(430px, 100%);
    min-height: 420px;
    margin-left: auto;
}

.team-hero-photo::before,
.team-hero-photo::after {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    content: "";
}

.team-hero-photo::before {
    top: 28px;
    left: -18px;
    width: 105px;
    height: 15px;
    background: var(--yellow);
    transform: rotate(-12deg);
}

.team-hero-photo::after {
    right: -12px;
    bottom: 44px;
    width: 17px;
    height: 118px;
    background: var(--mint);
    transform: rotate(8deg);
}

.team-hero-photo img {
    position: absolute;
    right: 16px;
    bottom: 14px;
    width: min(388px, calc(100% - 25px));
    height: 380px;
    border: 8px solid rgba(255, 255, 255, .95);
    border-radius: 46% 54% 52% 48% / 44% 49% 51% 56%;
    box-shadow: 0 26px 52px rgba(15, 4, 51, .36);
    object-fit: cover;
    transform: rotate(4deg);
}

.page-hero-method {
    background:
        radial-gradient(circle at 86% 16%, rgba(87, 226, 192, .6) 0, rgba(87, 226, 192, 0) 29%),
        linear-gradient(127deg, #fff6d3, #faf9ff 63%);
}

.method-hero-visual {
    padding: 18px;
    border-radius: 26px;
    background: rgba(255, 255, 255, .84);
    box-shadow: var(--shadow-soft);
}

.page-hero-over {
    color: var(--white);
    background:
        radial-gradient(circle at 88% 15%, rgba(255, 215, 51, .56) 0, rgba(255, 215, 51, 0) 25%),
        radial-gradient(circle at 98% 95%, rgba(81, 199, 241, .32) 0, rgba(81, 199, 241, 0) 28%),
        var(--purple-900);
}

.page-hero-over .breadcrumb,
.page-hero-over .hero-lead {
    color: rgba(255, 255, 255, .76);
}

.page-hero-over .breadcrumb a {
    color: var(--mint);
}

.page-hero-over .eyebrow {
    color: var(--yellow);
}

.over-hero-quote {
    padding: 43px 38px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 29px;
    background: rgba(36, 16, 82, .4);
    box-shadow: 0 20px 50px rgba(21, 8, 54, .25);
    transform: rotate(3deg);
}

.over-hero-quote p {
    margin-bottom: 23px;
    color: var(--yellow);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.65rem, 3vw, 2.4rem);
    font-style: italic;
    line-height: 1.25;
}

.over-hero-quote span {
    color: rgba(255, 255, 255, .7);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.page-hero-contact {
    min-height: 420px;
    background:
        radial-gradient(circle at 95% 12%, rgba(239, 22, 157, .18) 0, rgba(239, 22, 157, 0) 24%),
        radial-gradient(circle at 86% 90%, rgba(255, 215, 51, .8) 0, rgba(255, 215, 51, 0) 30%),
        var(--paper-purple);
}

.page-hero-contact .contact-hero-grid {
    grid-template-columns: minmax(0, 830px);
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(240px, .8fr);
    gap: 80px;
    align-items: center;
}

.contact-orbit {
    position: relative;
    width: 310px;
    height: 310px;
    margin-left: auto;
    border: 2px solid var(--purple-800);
    border-radius: 50%;
}

.contact-orbit::before,
.contact-orbit::after {
    position: absolute;
    border-radius: 50%;
    content: "";
}

.contact-orbit::before {
    top: 47px;
    left: -21px;
    width: 126px;
    height: 126px;
    background: var(--mint);
}

.contact-orbit::after {
    right: 21px;
    bottom: 30px;
    width: 95px;
    height: 95px;
    background: var(--yellow);
}

.contact-orbit span {
    position: absolute;
    z-index: 2;
    padding: 7px 9px;
    border-radius: 999px;
    background: var(--white);
    color: var(--purple-800);
    font-size: .78rem;
    font-weight: 850;
    box-shadow: 0 5px 12px rgba(43, 20, 96, .13);
}

.contact-orbit span:nth-child(1) { top: 7px; left: 88px; }
.contact-orbit span:nth-child(2) { top: 130px; right: -23px; }
.contact-orbit span:nth-child(3) { bottom: 15px; left: 49px; }
.contact-orbit span:nth-child(4) { top: 143px; left: -29px; }

/* Care page */
.highlight-card,
.statement-card,
.legacy-callout,
.contact-note {
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.highlight-card h3,
.statement-card p,
.legacy-callout h3 {
    font-size: clamp(1.45rem, 2.5vw, 2.05rem);
}

.highlight-card p:last-child,
.legacy-callout p:last-child {
    margin-bottom: 0;
    color: var(--ink-soft);
}

.highlight-card-care {
    background:
        radial-gradient(circle at 90% 13%, rgba(255, 255, 255, .75) 0, rgba(255, 255, 255, 0) 24%),
        var(--yellow);
}

.programme-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.programme-card {
    min-height: 328px;
    padding: 27px;
    border: 1px solid rgba(48, 27, 93, .12);
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(43, 25, 82, .05);
    transition: transform .22s ease, box-shadow .22s ease;
}

.programme-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.programme-status {
    display: inline-flex;
    margin-bottom: 19px;
    padding: 5px 9px;
    border-radius: 999px;
    background: var(--purple-100);
    color: var(--purple-800);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.programme-card h3 {
    margin-bottom: 5px;
}

.programme-location {
    min-height: 25px;
    margin-bottom: 18px;
    color: var(--purple-700);
    font-size: .88rem;
    font-weight: 750;
}

.programme-card dl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
    margin: 0 0 19px;
    padding: 15px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.programme-card dt {
    margin-bottom: 2px;
    color: var(--ink-soft);
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.programme-card dd {
    margin: 0;
    font-size: .84rem;
    font-weight: 750;
    line-height: 1.35;
}

.programme-card > p:not(.programme-status):not(.programme-location) {
    margin-bottom: 15px;
    color: var(--ink-soft);
    font-size: .94rem;
    line-height: 1.46;
}

.programme-pink { border-top: 5px solid var(--pink); }
.programme-yellow { border-top: 5px solid var(--yellow); }
.programme-mint { border-top: 5px solid var(--mint); }
.programme-blue { border-top: 5px solid var(--blue); }

.flyer-panel {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 36px;
    align-items: center;
    max-width: 850px;
    margin: 46px auto 0;
    padding: 28px;
    border-radius: 26px;
    background: var(--purple-800);
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

.flyer-panel img {
    width: 180px;
    border-radius: 8px;
    box-shadow: 0 12px 26px rgba(10, 4, 33, .3);
}

.flyer-panel .eyebrow {
    color: var(--mint);
}

.flyer-panel h3 {
    font-size: 2rem;
}

.flyer-panel p:not(.eyebrow) {
    max-width: 480px;
    color: rgba(255, 255, 255, .77);
}

.method-line-grid,
.instagram-grid,
.care-video-grid,
.spiral-grid,
.legacy-grid,
.collective-grid,
.detail-grid,
.training-bottom-grid,
.direct-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, .95fr);
    gap: clamp(42px, 7vw, 100px);
    align-items: center;
}

.method-line-image {
    padding: 27px;
    border-radius: 24px;
    background: var(--paper-purple);
}

.care-video-section {
    background:
        radial-gradient(circle at 85% 18%, rgba(81, 199, 241, .19) 0, rgba(81, 199, 241, 0) 29%),
        linear-gradient(135deg, #f8f4ff, var(--paper));
}

.care-video-intro .section-intro {
    max-width: 815px;
    margin-right: auto;
    margin-bottom: 42px;
    margin-left: auto;
    text-align: center;
}

.care-video-intro .section-intro > p:last-child {
    margin-right: auto;
    margin-left: auto;
}

.video-frame {
    position: relative;
    width: min(100%, 1080px);
    margin: 0 auto;
    padding: 9px;
    overflow: hidden;
    border: 1px solid rgba(66, 24, 155, .18);
    border-radius: 33px;
    background: linear-gradient(135deg, var(--yellow), var(--pink) 52%, var(--blue));
    box-shadow: 0 25px 62px rgba(38, 18, 87, .2);
}

.video-frame iframe {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    border: 0;
    border-radius: 24px;
    background: var(--purple-950);
}

.method-line-image img {
    width: 100%;
}

.check-list {
    display: grid;
    gap: 11px;
    margin: 24px 0 30px;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 27px;
    color: var(--ink-soft);
}

.check-list li::before {
    position: absolute;
    top: 7px;
    left: 0;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--pink);
    box-shadow: 0 0 0 4px var(--pink-soft);
    content: "";
}

.instagram-section {
    background: linear-gradient(135deg, #fcf9ff, var(--paper));
}

.instagram-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(285px, .7fr);
}

.button-instagram {
    margin-top: 7px;
    background: linear-gradient(117deg, #8a36be, #ee226a 50%, #ffbc38);
    color: var(--white);
}

.button-instagram img {
    width: 18px;
    height: 18px;
}

.instagram-card {
    overflow: hidden;
    border: 1px solid rgba(43, 25, 90, .13);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow-card);
}

.instagram-embed-frame {
    overflow: hidden;
    min-height: 420px;
    border: 1px solid rgba(43, 25, 90, .13);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow-card);
}

.instagram-embed-frame .instagram-media {
    min-width: 0 !important;
    width: calc(100% - 2px) !important;
    margin: 0 !important;
}

.instagram-card-top {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 48px;
    padding: 0 15px;
    color: var(--ink);
    font-size: .8rem;
    font-weight: 800;
}

.instagram-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: conic-gradient(var(--yellow), var(--pink), var(--purple-700), var(--yellow));
}

.instagram-more {
    margin-left: auto;
    letter-spacing: 2px;
}

.instagram-visual {
    position: relative;
    min-height: 294px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--purple-800), #6634bd 52%, #e927a5);
}

.instagram-visual > p {
    position: absolute;
    z-index: 3;
    top: 57px;
    left: 43px;
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.7rem;
    font-style: italic;
    font-weight: 400;
    letter-spacing: -.07em;
    line-height: .85;
}

.insta-shape {
    position: absolute;
    display: block;
    border-radius: 50%;
}

.shape-one {
    top: -50px;
    right: -36px;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(255, 255, 255, .55);
}

.shape-two {
    right: 34px;
    bottom: -62px;
    width: 150px;
    height: 150px;
    background: var(--yellow);
}

.shape-three {
    bottom: 45px;
    left: -40px;
    width: 110px;
    height: 110px;
    background: var(--mint);
}

.insta-bars {
    position: absolute;
    right: 32px;
    bottom: 28px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 6px;
    height: 45px;
}

.insta-bars i {
    display: block;
    width: 9px;
    border-radius: 99px;
    background: var(--purple-950);
}

.insta-bars i:nth-child(1) { height: 19px; }
.insta-bars i:nth-child(2) { height: 34px; }
.insta-bars i:nth-child(3) { height: 25px; }
.insta-bars i:nth-child(4) { height: 42px; }
.insta-bars i:nth-child(5) { height: 17px; }
.insta-bars i:nth-child(6) { height: 29px; }

.instagram-card-bottom {
    padding: 17px;
}

.instagram-card-bottom strong {
    display: block;
    font-size: .9rem;
}

.instagram-card-bottom p {
    margin: 3px 0 0;
    color: var(--ink-soft);
    font-size: .82rem;
}

/* Teams */
.statement-card {
    background: var(--purple-800);
    color: var(--white);
}

.statement-card p {
    max-width: 420px;
    margin-bottom: 23px;
    color: var(--yellow);
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    line-height: 1.22;
}

.statement-card span {
    display: block;
    max-width: 410px;
    color: rgba(255, 255, 255, .77);
    font-size: .91rem;
}

.experience-detail {
    background:
        radial-gradient(circle at 83% 50%, rgba(87, 226, 192, .4) 0, rgba(87, 226, 192, 0) 29%),
        var(--paper);
}

.experience-points {
    display: grid;
    gap: 14px;
}

.experience-points > div {
    display: grid;
    grid-template-columns: 49px 1fr;
    gap: 15px;
    align-items: center;
    padding: 19px;
    border-radius: 15px;
    background: var(--white);
    box-shadow: 0 6px 18px rgba(47, 25, 99, .08);
}

.point-icon {
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    border-radius: 50%;
    background: var(--mint);
    color: var(--purple-950);
    font-size: 1.35rem;
    font-weight: 900;
}

.experience-points > div:nth-child(2) .point-icon { background: var(--yellow); }
.experience-points > div:nth-child(3) .point-icon { background: var(--pink-soft); }

.experience-points p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.4;
}

.experience-points strong {
    color: var(--ink);
}

.training-detail {
    background: var(--paper-purple);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.process-step {
    min-height: 240px;
    padding: 23px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 8px 20px rgba(47, 26, 99, .07);
}

.process-step > span {
    display: inline-grid;
    width: 30px;
    height: 30px;
    margin-bottom: 25px;
    place-items: center;
    border-radius: 50%;
    background: var(--purple-800);
    color: var(--white);
    font-size: .72rem;
    font-weight: 900;
}

.process-step h3 {
    font-size: 1.3rem;
}

.process-step p {
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: .92rem;
}

.training-bottom-grid {
    margin-top: 64px;
    align-items: start;
}

.highlight-card-teams {
    background: var(--mint);
}

/* Method */
.square-method-section {
    background: var(--paper);
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.pillar-card {
    min-height: 335px;
    padding: 24px;
    border-radius: 18px;
}

.pillar-card h3 {
    font-size: 1.45rem;
}

.pillar-summary {
    font-size: 1.02rem;
    font-weight: 760;
    line-height: 1.35;
}

.pillar-card > p:last-child {
    margin-bottom: 0;
    color: rgba(36, 33, 58, .79);
    font-size: .91rem;
}

.pillar-yellow { background: var(--yellow-soft); }
.pillar-pink { background: var(--pink-soft); }
.pillar-blue { background: var(--blue-soft); }
.pillar-mint { background: var(--mint-soft); }

.workshop-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 13px;
}

.workshop-steps::before {
    position: absolute;
    top: 29px;
    right: 8%;
    left: 8%;
    z-index: 0;
    height: 1px;
    background: var(--purple-500);
    content: "";
}

.workshop-steps article {
    position: relative;
    z-index: 1;
    padding: 0 8px 0 0;
}

.workshop-steps span {
    display: grid;
    width: 59px;
    height: 59px;
    margin-bottom: 21px;
    place-items: center;
    border: 1px solid var(--purple-800);
    border-radius: 50%;
    background: var(--paper-purple);
    color: var(--purple-800);
    font-size: .78rem;
    font-weight: 900;
}

.workshop-steps h3 {
    font-size: 1.22rem;
}

.workshop-steps p {
    color: var(--ink-soft);
    font-size: .91rem;
    line-height: 1.45;
}

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

.spiral-visual {
    padding: 25px;
    border-radius: 21px;
    background: var(--purple-100);
}

.spiral-visual img {
    width: 100%;
}

.spiral-visual p {
    margin: 18px 0 0;
    color: var(--purple-700);
    font-size: .84rem;
    font-style: italic;
    text-align: center;
}

.method-promise {
    background: var(--purple-950);
    color: var(--white);
}

.method-promise-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(350px, 1fr);
    gap: clamp(44px, 8vw, 116px);
    align-items: center;
}

.method-promise h2 {
    color: var(--yellow);
}

.method-promise p:not(.eyebrow) {
    max-width: 560px;
    color: rgba(255, 255, 255, .76);
    font-size: 1.07rem;
}

.method-promise ul {
    display: grid;
    gap: 1px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 18px;
    list-style: none;
}

.method-promise li {
    display: grid;
    grid-template-columns: minmax(145px, .85fr) 1fr;
    gap: 18px;
    padding: 17px 20px;
    background: rgba(255, 255, 255, .06);
}

.method-promise li strong {
    color: var(--mint);
    font-size: .9rem;
}

.method-promise li span {
    color: rgba(255, 255, 255, .73);
    font-size: .87rem;
}

/* About */
.timeline {
    position: relative;
    display: grid;
    gap: 0;
}

.timeline::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 107px;
    width: 1px;
    background: var(--purple-500);
    content: "";
}

.timeline-item {
    display: grid;
    grid-template-columns: 84px 1fr;
    column-gap: 42px;
    padding: 0 0 37px;
    min-width: 0;
}

.timeline-item > p {
    position: relative;
    margin: 5px 0 0;
    color: var(--purple-800);
    font-size: .84rem;
    font-weight: 900;
}

.timeline-item > p::after {
    position: absolute;
    top: 1px;
    right: -29px;
    width: 15px;
    height: 15px;
    border: 4px solid var(--paper);
    border-radius: 50%;
    background: var(--pink);
    content: "";
}

.timeline-item h3 {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 6px;
    font-size: 1.53rem;
    min-width: 0;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.timeline-item span {
    grid-column: 2;
    grid-row: 2;
    max-width: 700px;
    min-width: 0;
    color: var(--ink-soft);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.legacy-callout {
    background: var(--yellow);
}

.collective-section {
    background: var(--purple-800);
    color: var(--white);
}

.collective-section .eyebrow {
    color: var(--yellow);
}

.collective-section .section-intro {
    margin-bottom: 22px;
}

.collective-section .section-intro > p:last-child,
.collective-section .body-copy {
    color: rgba(255, 255, 255, .79);
}

.collective-values {
    display: grid;
    gap: 14px;
}

.collective-values > div {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 15px;
    background: rgba(255, 255, 255, .09);
}

.collective-values > div > span {
    color: var(--mint);
    font-size: 1.65rem;
    font-weight: 900;
}

.collective-values p {
    margin: 0;
    color: rgba(255, 255, 255, .74);
    line-height: 1.45;
}

.collective-values strong {
    color: var(--white);
}

.partners-section {
    padding-top: 86px;
    padding-bottom: 86px;
}

.partner-list {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    max-width: 900px;
}

.partner-list span {
    padding: 9px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--purple-800);
    font-size: .85rem;
    font-weight: 800;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(310px, .82fr);
    gap: clamp(24px, 5vw, 64px);
    align-items: start;
}

.contact-form-panel {
    padding: clamp(28px, 4vw, 52px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-card);
}

.contact-form-panel h2 {
    max-width: 470px;
    font-size: clamp(2rem, 3.4vw, 3.2rem);
}

.contact-form-panel > p:not(.eyebrow) {
    max-width: 490px;
    color: var(--ink-soft);
    font-size: 1.04rem;
}

.contact-form {
    display: grid;
    gap: 19px;
    margin-top: 31px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
}

.contact-form label {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-size: .85rem;
    font-weight: 800;
}

.contact-form label span {
    color: var(--ink-soft);
    font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 13px;
    border: 1px solid rgba(34, 31, 63, .24);
    border-radius: 10px;
    background: var(--paper);
    color: var(--ink);
    font-size: .98rem;
    font-weight: 500;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form textarea {
    min-height: 155px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--purple-800);
    box-shadow: 0 0 0 4px var(--purple-100);
}

.honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.form-notice {
    margin-top: 22px;
    padding: 13px 15px;
    border-radius: 10px;
    font-size: .93rem;
    font-weight: 750;
}

.form-success {
    background: var(--mint-soft);
    color: #15564d;
}

.form-error {
    background: var(--pink-soft);
    color: #7b124f;
}

.contact-context-card {
    padding: clamp(28px, 4vw, 45px);
    border-radius: var(--radius-lg);
    background: var(--purple-800);
    color: var(--white);
    box-shadow: var(--shadow-card);
}

.contact-context-card .eyebrow {
    color: var(--mint);
}

.contact-context-card h3 {
    margin-top: 34px;
    margin-bottom: 8px;
    color: var(--yellow);
    font-size: 1.46rem;
}

.contact-context-card h3:first-of-type {
    margin-top: 0;
}

.contact-context-card > p:not(.eyebrow) {
    color: rgba(255, 255, 255, .76);
}

.contact-line {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    max-width: 560px;
    padding: 15px 0;
    border-top: 1px solid var(--line);
    transition: color .2s ease;
}

.contact-line:last-of-type {
    border-bottom: 1px solid var(--line);
}

.contact-context-card .contact-line {
    border-color: rgba(255, 255, 255, .22);
}

.contact-context-card .contact-line span {
    color: rgba(255, 255, 255, .6);
}

.contact-context-card .contact-line .contact-instagram-label {
    display: flex;
    align-items: center;
    color: var(--mint);
}

.contact-context-card .contact-instagram-label img {
    width: 19px;
    height: 19px;
}

.contact-context-card .contact-line strong {
    color: var(--white);
}

.contact-context-card .contact-line:hover strong {
    color: var(--mint);
}

.contact-line span {
    color: var(--ink-soft);
    font-size: .79rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.contact-line strong {
    color: var(--purple-800);
    font-size: .99rem;
}

.contact-line:hover strong {
    color: var(--pink);
}

.contact-line i {
    font-style: normal;
}

.contact-note {
    background: var(--purple-800);
    color: var(--white);
}

.contact-note .eyebrow {
    color: var(--mint);
}

.contact-note h3 {
    color: var(--yellow);
}

.contact-note p:last-child {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .77);
}

.faq-section {
    padding-top: 48px;
}

.faq-list {
    max-width: 820px;
}

.faq-list details {
    padding: 0;
    border-top: 1px solid var(--line);
}

.faq-list details:last-child {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    color: var(--ink);
    cursor: pointer;
    font-size: 1.06rem;
    font-weight: 800;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    color: var(--purple-800);
    font-size: 1.45rem;
    line-height: .8;
    transition: transform .2s ease;
}

.faq-list details[open] summary span {
    transform: rotate(45deg);
}

.faq-list details p {
    max-width: 690px;
    margin: -2px 0 20px;
    color: var(--ink-soft);
}

/* Footer */
.site-footer {
    padding: 70px 0 20px;
    background: var(--purple-950);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(120px, .72fr) minmax(150px, .8fr) minmax(210px, 1fr);
    gap: clamp(28px, 4vw, 65px);
    padding-bottom: 48px;
}

.footer-brand img {
    width: 92px;
    height: 92px;
    margin-bottom: 18px;
    border-radius: 17px;
    object-fit: cover;
}

.footer-title {
    margin-bottom: 7px;
    color: var(--yellow);
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: -.05em;
}

.footer-brand > p:last-child {
    max-width: 355px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .68);
    font-size: .9rem;
}

.footer-heading {
    margin-bottom: 12px;
    color: var(--mint);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.site-footer a:not(.brand) {
    display: block;
    margin: 8px 0;
    color: rgba(255, 255, 255, .75);
    font-size: .9rem;
    transition: color .2s ease;
}

.site-footer a.footer-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
    margin-top: 12px;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 50%;
    overflow: hidden;
}

.site-footer .footer-instagram img {
    width: 18px;
    height: 18px;
}

.site-footer .footer-instagram:hover {
    border-color: var(--yellow);
    background: rgba(255, 215, 51, .16);
}

.site-footer a:hover {
    color: var(--yellow);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .51);
    font-size: .76rem;
}

.footer-bottom p {
    margin: 0;
}

.site-footer .footer-bottom a {
    margin: 0;
    color: var(--mint);
    font-size: .76rem;
}

.footer-form {
    display: grid;
    gap: 10px;
    max-width: 290px;
}

.footer-form label:not(.honeypot) {
    display: grid;
    gap: 5px;
    color: rgba(255, 255, 255, .76);
    font-size: .77rem;
    font-weight: 750;
}

.footer-form input,
.footer-form textarea {
    width: 100%;
    padding: 9px 10px;
    border: 1px solid rgba(255, 255, 255, .29);
    border-radius: 9px;
    background: rgba(255, 255, 255, .08);
    color: var(--white);
    outline: none;
}

.footer-form textarea {
    min-height: 78px;
    resize: vertical;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
    color: rgba(255, 255, 255, .54);
}

.footer-form input:focus,
.footer-form textarea:focus {
    border-color: var(--mint);
    box-shadow: 0 0 0 3px rgba(87, 226, 192, .14);
}

.footer-form .button-footer {
    justify-self: start;
    min-height: 42px;
    padding: 11px 15px;
    border: 0;
    background: var(--mint);
    color: var(--purple-950);
    cursor: pointer;
}

.footer-form .button-footer:hover {
    background: var(--yellow);
}

/* Motion */
[data-reveal] {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity .55s ease, transform .55s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

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

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* Responsive */
@media (max-width: 1040px) {
    :root {
        --header-height: 74px;
    }

    .main-nav {
        gap: 15px;
        font-size: .83rem;
    }

    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .offer-grid-two {
        grid-template-columns: repeat(2, 1fr);
    }

    .pillar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .workshop-steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .workshop-steps::before {
        display: none;
    }
}

@media (max-width: 820px) {
    .container {
        width: min(calc(100% - 34px), var(--container));
    }

    .section {
        padding: 78px 0;
    }

    .section-intro-block {
        padding-top: 118px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 1px);
        right: 0;
        left: 0;
        display: grid;
        gap: 0;
        padding: 10px 17px 19px;
        border-bottom: 1px solid var(--line);
        background: var(--paper);
        box-shadow: 0 15px 25px rgba(35, 18, 85, .08);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity .2s ease, transform .2s ease;
    }

    .main-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .main-nav > a:not(.nav-cta):not(.nav-instagram) {
        padding: 12px 0;
        border-bottom: 1px solid rgba(42, 26, 84, .08);
        font-size: .96rem;
    }

    .main-nav > a:not(.nav-cta):not(.nav-instagram)::after {
        display: none;
    }

    .main-nav .nav-cta {
        display: inline-flex;
        width: max-content;
        margin-top: 13px;
    }

    .main-nav .nav-instagram {
        width: 38px;
        height: 38px;
        margin-top: 13px;
    }

    .hero-home-grid,
    .page-hero-grid,
    .contact-hero-grid,
    .split-intro,
    .square-preview-grid,
    .story-band-grid,
    .method-line-grid,
    .care-video-grid,
    .instagram-grid,
    .spiral-grid,
    .legacy-grid,
    .collective-grid,
    .detail-grid,
    .training-bottom-grid,
    .direct-contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-home-grid {
        min-height: unset;
        gap: 19px;
        padding-bottom: 38px;
    }

    .hero-art {
        width: min(410px, 100%);
        min-height: 340px;
        margin: -15px auto 0;
    }

    .audience-choice {
        transform: translateY(28px);
    }

    .page-hero {
        min-height: unset;
        padding: 53px 0 65px;
    }

    .page-hero-grid {
        gap: 38px;
    }

    .care-hero-image {
        width: min(440px, 100%);
        min-height: 356px;
        margin: 0 auto;
    }

    .team-hero-photo {
        width: min(420px, 100%);
        min-height: 390px;
        margin: 0 auto;
    }

    .team-hero-photo img {
        height: 355px;
    }

    .method-hero-visual {
        width: min(500px, 100%);
        margin: 0 auto;
    }

    .over-hero-quote {
        max-width: 500px;
    }

    .contact-orbit {
        margin: 0 auto;
    }

    .story-band-grid {
        gap: 40px;
    }

    .programme-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .flyer-panel {
        grid-template-columns: 144px 1fr;
        gap: 25px;
    }

    .flyer-panel img {
        width: 144px;
    }

    .method-line-grid {
        gap: 35px;
    }

    .method-line-image {
        order: 2;
    }

    .spiral-visual {
        padding: 18px;
    }

    .method-promise-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 35px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .brand-wordmark {
        display: none;
    }

    h1 {
        font-size: clamp(2.75rem, 12vw, 4rem);
    }

    .hero-lead,
    .body-copy {
        font-size: 1rem;
    }

    .hero-home {
        padding-top: 48px;
    }

    .hero-home-grid {
        padding-bottom: 20px;
    }

    .hero-art {
        min-height: 290px;
        transform: scale(.9);
        transform-origin: center top;
        margin-bottom: -26px;
    }

    .hero-photo-frame {
        right: 38px;
        width: 270px;
    }

    .orbit-one {
        right: 0;
        width: 295px;
        height: 295px;
    }

    .orbit-two {
        right: 56px;
        width: 235px;
        height: 235px;
    }

    .note-yellow {
        top: 45px;
        left: 0;
    }

    .note-mint {
        right: -8px;
        bottom: 20px;
        font-size: .96rem;
    }

    .audience-choice {
        grid-template-columns: 1fr;
        gap: 13px;
        transform: translateY(20px);
    }

    .audience-card {
        min-height: 226px;
        padding: 24px;
        border-radius: 22px;
    }

    .section-intro-block {
        padding-top: 98px;
    }

    .section-intro {
        margin-bottom: 34px;
    }

    .offer-grid,
    .offer-grid-two,
    .pillar-grid,
    .process-grid,
    .workshop-steps {
        grid-template-columns: 1fr;
    }

    .offer-card {
        min-height: 266px;
        padding: 23px;
    }

    .offer-card-large {
        min-height: 335px;
        padding: 27px;
    }

    .offer-eyebrow {
        margin-bottom: 18px;
    }

    .square-preview-visual {
        padding: 9px;
        border-radius: 18px;
    }

    .story-numbers {
        grid-template-columns: 1fr 1fr;
    }

    .story-numbers div {
        min-height: 117px;
        padding: 18px;
    }

    .story-numbers strong {
        font-size: 1.9rem;
    }

    .quote-chip {
        left: -3px;
        max-width: 215px;
        font-size: 1.1rem;
    }

    .care-hero-image img {
        height: 330px;
    }

    .team-hero-photo {
        min-height: 315px;
    }

    .team-hero-photo img {
        right: 8px;
        bottom: 12px;
        width: calc(100% - 21px);
        height: 286px;
        border-width: 6px;
    }

    .team-hero-photo::before {
        top: 18px;
        left: -3px;
        width: 80px;
        height: 12px;
    }

    .team-hero-photo::after {
        right: -5px;
        bottom: 36px;
        width: 13px;
        height: 82px;
    }

    .programme-card {
        min-height: unset;
        padding: 23px;
    }

    .programme-card dl {
        grid-template-columns: 1fr;
    }

    .flyer-panel {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 24px;
    }

    .flyer-panel img {
        width: 135px;
    }

    .method-line-image {
        padding: 15px;
    }

    .instagram-visual {
        min-height: 260px;
    }

    .process-step {
        min-height: 200px;
    }

    .workshop-steps article {
        display: grid;
        grid-template-columns: 55px 1fr;
        gap: 12px;
        padding-bottom: 16px;
    }

    .workshop-steps span {
        width: 48px;
        height: 48px;
        grid-row: span 2;
        margin: 0;
    }

    .workshop-steps h3 {
        margin: 0;
    }

    .workshop-steps p {
        grid-column: 2;
        margin: -2px 0 0;
    }

    .method-promise li {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .timeline::before {
        left: 74px;
    }

    .timeline-item {
        grid-template-columns: 55px 1fr;
        column-gap: 26px;
    }

    .timeline-item > p::after {
        right: -23px;
    }

    .timeline-item h3 {
        font-size: 1.28rem;
    }

    .contact-grid {
        gap: 14px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact-line {
        grid-template-columns: 1fr;
        gap: 2px;
    }

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

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        display: grid;
    }

    .video-frame {
        padding: 6px;
        border-radius: 22px;
    }

    .video-frame iframe {
        border-radius: 16px;
    }
}
.site-footer a.footer-instagram {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 37px;
    height: 37px;
    margin: 12px 0 0 !important;
    padding: 0 !important;
}

.site-footer a.footer-instagram img {
    display: block !important;
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
}
