:root {
    --yellow: #fbc814;
    --ink: #171717;
    --graphite: #302f2f;
    --paper: #ffffff;
    --soft: #f6f3f2;
    --coral: #f38d8d;
    --plum: #2e003e;
    --line: rgba(23, 23, 23, .16);
    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Manrope", Arial, sans-serif;
    --container: min(1180px, calc(100vw - 48px));
    --shadow: 0 30px 80px rgba(23, 23, 23, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

.container { width: var(--container); margin-inline: auto; }
.narrow { max-width: 820px; }
.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: -80px; z-index: 9999; background: var(--yellow);
    padding: 10px 16px; font-weight: 700; transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.site-header {
    position: fixed; inset: 0 0 auto; z-index: 1000; background: rgba(255,255,255,.92);
    border-bottom: 1px solid transparent; backdrop-filter: blur(16px); transition: .25s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(23,23,23,.04); }
.header-inner { min-height: 94px; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.brand img { width: 225px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 26px; font-size: 13px; font-weight: 600; }
.main-nav > a { position: relative; padding: 12px 0; }
.main-nav > a:not(.nav-cta)::after {
    content: ""; position: absolute; left: 0; right: 100%; bottom: 6px; height: 2px; background: var(--yellow); transition: right .25s ease;
}
.main-nav > a:hover::after, .main-nav > a.is-active::after { right: 0; }
.nav-cta { border: 1px solid var(--ink); padding: 12px 18px !important; transition: .2s ease; }
.nav-cta:hover, .nav-cta.is-active { background: var(--ink); color: white; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 8px; }
.menu-toggle > span:not(.sr-only) { display: block; height: 2px; background: var(--ink); margin: 6px 0; transition: .2s ease; }

main { padding-top: 94px; }
.section { padding: 128px 0; }
.section-soft { background: var(--soft); }
.section-dark { background: var(--graphite); color: white; }
.eyebrow { margin: 0 0 26px; font-size: 11px; font-weight: 700; letter-spacing: .21em; text-transform: uppercase; }
.eyebrow-light { color: rgba(255,255,255,.67); }
h1, h2, h3 { font-family: var(--serif); line-height: .98; font-weight: 600; letter-spacing: -.025em; margin-top: 0; }
h1 { font-size: clamp(4rem, 7.4vw, 7.3rem); }
h2 { font-size: clamp(3rem, 5.5vw, 5.2rem); }
h3 { font-size: 2.2rem; }
p { margin-top: 0; }
.hero-lead { font-family: var(--serif); font-size: clamp(1.55rem, 2.4vw, 2.25rem); line-height: 1.25; }
.large-copy { font-family: var(--serif); font-size: clamp(1.6rem, 2.5vw, 2.35rem); line-height: 1.3; }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 28px; margin-top: 42px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 15px 24px; border: 1px solid currentColor; font-size: 13px; font-weight: 700; letter-spacing: .03em; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--ink); color: white; border-color: var(--ink); }
.button-dark:hover { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.button-light { background: white; color: var(--ink); border-color: white; }
.button-light:hover { background: var(--yellow); border-color: var(--yellow); }
.button-yellow { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.button-yellow:hover { background: white; border-color: white; }
.text-link { display: inline-flex; gap: 10px; align-items: center; font-size: 13px; font-weight: 700; border-bottom: 1px solid var(--ink); padding-bottom: 5px; }
.text-link span, .service-card a span { transition: transform .2s ease; }
.text-link:hover span, .service-card a:hover span { transform: translate(3px, -3px); }

.hero-home { min-height: calc(100vh - 94px); display: flex; align-items: stretch; overflow: hidden; background: linear-gradient(90deg, #fff 0 64%, #f5f2ef 64%); }
.hero-grid { min-height: calc(100vh - 94px); display: grid; grid-template-columns: 1.03fr .97fr; gap: 54px; align-items: center; }
.hero-copy { padding: 80px 0; }
.hero-copy h1 { max-width: 780px; margin-bottom: 34px; }
.hero-copy .hero-lead { max-width: 690px; }
.hero-art { position: relative; align-self: stretch; min-height: 620px; display: grid; place-items: center; }
.hero-art > img { position: absolute; width: min(700px, 58vw); max-width: none; right: -100px; top: 0; bottom: 0; height: 100%; object-fit: cover; opacity: .95; }
.hero-seal { position: relative; z-index: 2; width: 280px; aspect-ratio: 1; border-radius: 50%; background: var(--yellow); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; box-shadow: var(--shadow); transform: rotate(-5deg); }
.hero-seal::before, .hero-seal::after { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(23,23,23,.35); border-radius: 50%; }
.hero-seal::after { inset: 22px; }
.hero-seal strong { font-family: var(--serif); font-size: 4rem; line-height: .67; font-weight: 600; margin: 14px 0; }
.hero-seal span { font-size: 9px; text-transform: uppercase; font-weight: 700; letter-spacing: .22em; }

.statement { padding: 115px 0; }
.statement-grid { display: grid; grid-template-columns: .35fr 1fr; gap: 70px; }
.statement h2 { margin-bottom: 35px; max-width: 940px; }
.statement p:not(.eyebrow) { max-width: 720px; color: rgba(255,255,255,.72); font-size: 18px; }
.section-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 50px; margin-bottom: 72px; }
.section-heading h2 { max-width: 850px; margin-left: auto; }
.section-heading.compact { display: block; }
.section-heading.compact h2 { margin-left: 0; }
.service-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.service-card { min-height: 590px; padding: 48px; display: flex; flex-direction: column; align-items: flex-start; }
.service-card-dark { background: var(--ink); color: white; }
.service-card-soft { background: var(--soft); color: var(--ink); }
.service-number { font-family: var(--serif); font-size: 1.6rem; opacity: .55; }
.service-kicker { margin: auto 0 22px; font-size: 10px; font-weight: 700; letter-spacing: .18em; }
.service-card h3 { font-size: clamp(3rem, 4.5vw, 5rem); margin-bottom: 25px; }
.service-card p:not(.service-kicker) { max-width: 540px; opacity: .74; }
.service-card a { display: inline-flex; gap: 10px; align-items: center; margin-top: 28px; font-size: 13px; font-weight: 700; border-bottom: 1px solid currentColor; padding-bottom: 5px; }

.life-section { padding: 0; background: var(--yellow); overflow: hidden; }
.life-grid { min-height: 730px; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 80px; }
.life-quote { padding: 90px 0; }
.life-quote .quote-mark { font-family: var(--serif); font-size: 12rem; line-height: .3; margin-bottom: 45px; }
.life-quote h2 { font-size: clamp(3rem, 5.3vw, 5.4rem); }
.word-field { position: relative; min-height: 730px; border-left: 1px solid rgba(23,23,23,.25); }
.word-field span { position: absolute; font-family: var(--serif); white-space: nowrap; opacity: .72; transition: transform .8s ease; }
.word-field span:nth-child(1){left:8%;top:9%;font-size:3.8rem}.word-field span:nth-child(2){left:55%;top:5%;font-size:2.2rem}.word-field span:nth-child(3){left:30%;top:20%;font-size:2.8rem}.word-field span:nth-child(4){left:65%;top:24%;font-size:3rem}.word-field span:nth-child(5){left:10%;top:34%;font-size:2.1rem}.word-field span:nth-child(6){left:47%;top:39%;font-size:3.5rem}.word-field span:nth-child(7){left:14%;top:51%;font-size:3.1rem}.word-field span:nth-child(8){left:54%;top:54%;font-size:2.3rem}.word-field span:nth-child(9){left:8%;top:69%;font-size:2.7rem}.word-field span:nth-child(10){left:58%;top:72%;font-size:3rem}.word-field span:nth-child(11){left:28%;top:83%;font-size:2.2rem}.word-field span:nth-child(12){left:70%;top:88%;font-size:2rem}.word-field span:nth-child(n+13){display:none}

.privacy-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; }
.privacy-visual { min-height: 510px; background: var(--ink); color: white; position: relative; display: grid; place-items: center; text-align: center; overflow: hidden; }
.privacy-visual span { position: relative; z-index: 2; font-family: var(--serif); font-size: 2.3rem; line-height: 1.2; }
.privacy-ring { position: absolute; width: 380px; aspect-ratio: 1; border: 1px solid rgba(251,200,20,.55); border-radius: 50%; }
.privacy-ring::before, .privacy-ring::after { content:""; position:absolute; border-radius:50%; border:1px solid rgba(251,200,20,.25); inset:-50px; }
.privacy-ring::after { inset: 55px; border-color: rgba(251,200,20,.85); }
.privacy-grid h2 { margin-bottom: 32px; }
.privacy-grid p:not(.eyebrow) { max-width: 620px; }
.catherine-preview { border-top: 1px solid var(--line); }
.catherine-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; }
.catherine-grid h2 { font-size: clamp(3.2rem, 5vw, 5.3rem); }
.catherine-grid .text-link { margin-top: 20px; }
.cta-band { background: var(--ink); color: white; padding: 115px 0; }
.cta-band-inner { display: grid; grid-template-columns: .4fr 1fr auto; gap: 50px; align-items: center; }
.cta-band h2 { font-size: clamp(2.8rem, 4vw, 4.2rem); margin: 0; max-width: 780px; }

.inner-hero { position: relative; overflow: hidden; padding: 145px 0 125px; }
.inner-hero-dark { background: var(--graphite); color: white; }
.inner-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 100px; align-items: end; }
.inner-hero h1 { margin-bottom: 0; }
.inner-hero-copy { max-width: 620px; }
.inner-hero-copy > p:not(.hero-lead) { opacity: .72; }
.inner-hero-copy .button { margin-top: 24px; }
.split-heading { display: grid; grid-template-columns: .35fr 1fr; gap: 75px; }
.split-heading h2 { margin-bottom: 36px; }
.split-heading > div > p { max-width: 820px; }
.topics-section { padding: 128px 0; }
.topics-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.topics-grid article { padding: 38px; min-height: 330px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.topics-grid span, .values-grid span { font-family: var(--serif); font-size: 1.4rem; opacity: .5; }
.topics-grid h3 { margin: 70px 0 18px; font-size: 2rem; }
.topics-grid p { opacity: .72; }
.process-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 100px; }
.process-sticky { align-self: start; position: sticky; top: 140px; }
.process-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 90px 1fr; gap: 20px; padding: 42px 0; border-bottom: 1px solid var(--line); }
.process-list li > span { font-family: var(--serif); font-size: 1.6rem; opacity: .45; }
.process-list h3 { margin-bottom: 12px; }
.process-list p { max-width: 610px; opacity: .72; }
.quote-section { padding: 120px 0; background: var(--yellow); }
.quote-section p { font-family: var(--serif); font-size: clamp(3rem, 5.8vw, 6.1rem); line-height: 1.03; margin: 0; max-width: 1100px; }
.disclaimer-section { border-bottom: 1px solid var(--line); }
.disclaimer-section h2 { font-size: clamp(2.7rem, 4.5vw, 4.3rem); }

.workshops-hero { background: var(--soft); }
.workshops-hero h1 { max-width: 760px; }
.coral-art { position: absolute; width: 440px; right: -40px; bottom: -130px; opacity: .32; pointer-events: none; }
.format-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; }
.format-grid h2 { max-width: 720px; }
.format-points { border-top: 1px solid var(--line); }
.format-points > div { display: grid; grid-template-columns: 180px 1fr; gap: 30px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.format-points strong { font-family: var(--serif); font-size: 1.7rem; }
.format-points span { opacity: .65; }
.workshops-list { border-top: 1px solid var(--line); }
.workshops-list article { display: grid; grid-template-columns: 100px .8fr 1fr; gap: 30px; padding: 36px 0; border-bottom: 1px solid var(--line); align-items: start; }
.workshops-list article > span { font-family: var(--serif); font-size: 1.5rem; opacity: .45; }
.workshops-list article > div { display: contents; }
.workshops-list h3 { margin: 0; font-size: 2.35rem; }
.workshops-list p { margin: 0; opacity: .72; }
.art-therapy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.art-therapy-art { position: relative; min-height: 620px; background: var(--plum); overflow: hidden; }
.shape { position: absolute; display: block; mix-blend-mode: screen; }
.shape-a { width: 290px; height: 390px; background: var(--coral); border-radius: 47% 53% 70% 30% / 35% 45% 55% 65%; left: 40px; top: 90px; transform: rotate(25deg); }
.shape-b { width: 260px; height: 260px; border: 32px solid var(--yellow); border-radius: 50%; right: 40px; top: 50px; }
.shape-c { width: 350px; height: 90px; background: #fff; left: 120px; bottom: 90px; transform: rotate(-18deg); border-radius: 50%; opacity: .7; }
.shape-d { width: 180px; height: 180px; background: var(--yellow); right: 20px; bottom: 30px; clip-path: polygon(50% 0%, 100% 100%, 0 100%); }
.company-section { padding: 128px 0; }
.company-section .button { margin-top: 25px; }

.catherine-hero { padding: 120px 0; background: var(--yellow); }
.catherine-hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 90px; align-items: center; }
.catherine-hero h1 { font-size: clamp(4rem, 7vw, 7rem); }
.portrait-placeholder { min-height: 590px; background: var(--ink); color: white; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px; }
.portrait-monogram { font-family: var(--serif); font-size: 10rem; line-height: 1; color: var(--yellow); }
.portrait-placeholder p { max-width: 260px; font-size: 12px; opacity: .6; text-transform: uppercase; letter-spacing: .12em; }
.bio-grid { display: grid; grid-template-columns: .55fr 1.45fr; gap: 100px; }
.bio-aside { position: sticky; top: 140px; font-family: var(--serif); font-size: 2rem; line-height: 1.25; }
.bio-grid > div > p:not(.large-copy) { max-width: 800px; font-size: 18px; }
.values-section { padding: 0; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.values-grid article { min-height: 400px; padding: 60px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.values-grid article:nth-child(odd) { border-left: 1px solid var(--line); }
.values-grid h2 { margin: 100px 0 18px; font-size: 3.6rem; }
.personal-statement h2 { margin-bottom: 35px; }
.personal-statement .button { margin-top: 28px; }

.contact-hero { padding: 125px 0 140px; background: var(--soft); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: start; }
.contact-grid h1 { font-size: clamp(4rem, 6.8vw, 6.7rem); }
.direct-contact { margin-top: 60px; border-top: 1px solid var(--line); }
.direct-contact p { display: grid; grid-template-columns: 100px 1fr; padding: 16px 0; border-bottom: 1px solid var(--line); margin: 0; }
.direct-contact span { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; }
.direct-contact a { font-family: var(--serif); font-size: 1.45rem; }
.contact-form { background: white; padding: 50px; box-shadow: var(--shadow); }
.contact-form label { display: block; margin-bottom: 24px; }
.contact-form label > span:first-child { display: block; margin-bottom: 8px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .13em; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; padding: 12px 0; outline: none; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--yellow); box-shadow: 0 1px 0 var(--yellow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.consent-row { display: grid !important; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; }
.consent-row input { width: 18px; height: 18px; margin-top: 4px; }
.consent-row span { font-size: 12px !important; font-weight: 400 !important; text-transform: none !important; letter-spacing: 0 !important; }
.form-footnote { font-size: 11px; opacity: .6; margin-top: 16px; }
.honeypot { position: absolute !important; left: -9999px !important; }
.thanks-section { min-height: 70vh; display: grid; align-items: center; padding: 120px 0; background: var(--yellow); }
.thanks-section h1 { margin-bottom: 28px; }
.legal-section { padding: 120px 0; }
.legal-section h1 { margin-bottom: 65px; }
.legal-section h2 { font-size: 2.2rem; margin-top: 48px; margin-bottom: 15px; }
.legal-section a { text-decoration: underline; }
.legal-date { margin-top: 60px; opacity: .6; }

.site-footer { background: #111; color: white; padding: 80px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .75fr .75fr; gap: 80px; }
.footer-logo { width: 220px; margin-bottom: 24px; }
.footer-note { max-width: 470px; color: rgba(255,255,255,.57); }
.footer-title { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 18px; }
.footer-grid > div:not(:first-child) a { display: block; margin-bottom: 10px; color: rgba(255,255,255,.74); }
.footer-grid a:hover { color: var(--yellow); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 70px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.43); font-size: 11px; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 8px; }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
    :root { --container: min(100% - 36px, 960px); }
    .main-nav { gap: 15px; font-size: 11px; }
    .brand img { width: 195px; }
    .hero-grid, .inner-hero-grid { gap: 45px; }
    .topics-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-band-inner { grid-template-columns: 1fr; }
    .cta-band-inner .eyebrow { margin-bottom: 0; }
}

@media (max-width: 820px) {
    :root { --container: min(100% - 30px, 720px); }
    .section { padding: 90px 0; }
    .header-inner { min-height: 78px; }
    main { padding-top: 78px; }
    .brand img { width: 185px; }
    .menu-toggle { display: block; position: relative; z-index: 1002; }
    .menu-toggle.is-open > span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.is-open > span:nth-child(2) { opacity: 0; }
    .menu-toggle.is-open > span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .main-nav { position: fixed; inset: 0; z-index: 1001; background: var(--yellow); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 8px; padding: 90px 30px 40px; opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .25s ease; }
    .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
    .main-nav > a { font-family: var(--serif); font-size: 2.1rem; font-weight: 600; }
    .nav-cta { margin-top: 20px; font-family: var(--sans) !important; font-size: 13px !important; }
    .hero-home { background: white; }
    .hero-grid, .inner-hero-grid, .statement-grid, .split-heading, .service-cards, .life-grid, .privacy-grid, .catherine-grid, .process-grid, .format-grid, .art-therapy-grid, .catherine-hero-grid, .bio-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
    .hero-grid { min-height: auto; }
    .hero-copy { padding: 80px 0 35px; }
    .hero-art { min-height: 470px; background: var(--soft); margin-inline: -15px; }
    .hero-art > img { width: 760px; right: -190px; }
    .hero-seal { width: 230px; }
    .hero-seal strong { font-size: 3.2rem; }
    .statement-grid, .split-heading { gap: 25px; }
    .section-heading { display: block; }
    .section-heading h2 { margin-left: 0; }
    .service-card { min-height: 500px; padding: 34px; }
    .life-grid { gap: 0; }
    .word-field { border-left: 0; border-top: 1px solid rgba(23,23,23,.25); min-height: 520px; }
    .privacy-grid, .catherine-grid, .format-grid, .art-therapy-grid, .bio-grid, .contact-grid { gap: 55px; }
    .cta-band-inner { gap: 25px; }
    .inner-hero { padding: 100px 0; }
    .inner-hero-grid { align-items: start; }
    .topics-grid { grid-template-columns: 1fr; }
    .process-sticky, .bio-aside { position: static; }
    .workshops-list article { grid-template-columns: 60px 1fr; }
    .workshops-list article > div { display: block; }
    .workshops-list p { grid-column: 2; }
    .portrait-placeholder { min-height: 470px; }
    .values-grid { grid-template-columns: 1fr; }
    .values-grid article { border-left: 1px solid var(--line); }
    .footer-grid { gap: 42px; }
    .footer-bottom { flex-direction: column; }
}

@media (max-width: 560px) {
    :root { --container: calc(100% - 24px); }
    body { font-size: 15px; }
    h1 { font-size: clamp(3.3rem, 16vw, 5rem); }
    h2 { font-size: clamp(2.7rem, 13vw, 4rem); }
    .hero-copy { padding-top: 55px; }
    .button-row { align-items: flex-start; flex-direction: column; }
    .service-card { min-height: 460px; }
    .life-quote { padding: 80px 0 55px; }
    .life-quote .quote-mark { font-size: 8rem; }
    .word-field span:nth-child(1){font-size:2.8rem}.word-field span:nth-child(3){font-size:2.1rem}.word-field span:nth-child(4){font-size:2rem}.word-field span:nth-child(6){font-size:2.5rem}.word-field span:nth-child(7){font-size:2.3rem}.word-field span:nth-child(9){font-size:2rem}.word-field span:nth-child(10){font-size:2.2rem}
    .privacy-visual { min-height: 390px; }
    .privacy-ring { width: 280px; }
    .topics-grid article { min-height: 280px; padding: 28px; }
    .process-list li { grid-template-columns: 55px 1fr; }
    .format-points > div { grid-template-columns: 1fr; gap: 4px; }
    .workshops-list article { grid-template-columns: 45px 1fr; }
    .workshops-list h3 { font-size: 1.9rem; }
    .art-therapy-art { min-height: 470px; }
    .values-grid article { min-height: 330px; padding: 38px 28px; }
    .values-grid h2 { margin-top: 70px; }
    .contact-form { padding: 30px 22px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .direct-contact p { grid-template-columns: 1fr; gap: 2px; }
}

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