:root {
	--rs-ink: #17204f;
	--rs-text: #4f5874;
	--rs-soft: #fffdf8;
	--rs-card: #ffffff;
	--rs-line: #ece8df;
	--rs-green: #8bc34a;
	--rs-green-dark: #6ca62f;
	--rs-pink: #ef5b8d;
	--rs-blue: #4aa3df;
	--rs-yellow: #ffd85a;
	--rs-orange: #ffb340;
	--rs-shadow: 0 16px 34px rgba(23, 32, 79, .08);
	--rs-radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: Nunito, ui-rounded, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: var(--rs-ink);
	background: var(--rs-soft);
	line-height: 1.65;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--rs-text); }
h1, h2, h3 { margin: 0 0 1rem; line-height: 1.12; letter-spacing: 0; }
h1 { font-size: 58px; }
h2 { font-size: 34px; }
h3 { font-size: 20px; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(860px, calc(100% - 40px)); }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.skip-link:focus { width: auto; height: auto; clip: auto; padding: 12px; background: #fff; z-index: 99; }
.icon svg { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.button, button, input[type=submit] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 12px 22px;
	border: 0;
	border-radius: var(--rs-radius);
	font-weight: 900;
	white-space: nowrap;
	cursor: pointer;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover, button:hover, input[type=submit]:hover { transform: translateY(-2px); }
.button--primary { color: #fff; background: var(--rs-pink); box-shadow: 0 12px 24px rgba(239, 91, 141, .24); }
.button--secondary { color: #fff; background: var(--rs-green); box-shadow: 0 12px 24px rgba(139, 195, 74, .22); }
.button--blue { color: #fff; background: var(--rs-blue); box-shadow: 0 12px 24px rgba(74, 163, 223, .22); }
.button--light { color: var(--rs-ink); background: #fff; border: 1px solid rgba(23,32,79,.12); }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.94); backdrop-filter: blur(16px); border-bottom: 1px solid var(--rs-line); }
.topbar { font-size: 13px; border-bottom: 1px solid var(--rs-line); }
.topbar__inner, .topbar__contacts, .topbar__social, .mainnav__inner { display: flex; align-items: center; gap: 18px; }
.topbar__inner { min-height: 40px; justify-content: space-between; }
.topbar__contacts { flex-wrap: wrap; color: #38405f; }
.topbar__contacts a, .topbar__contacts span { display: inline-flex; align-items: center; gap: 8px; }
.topbar .icon { color: var(--rs-green); }
.topbar__social a { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; color: #fff; background: var(--rs-blue); }
.mainnav__inner { min-height: 78px; justify-content: space-between; gap: 14px; }
.site-branding { flex: 0 1 360px; min-width: 0; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; text-transform: uppercase; }
.brand__mark, .brand--footer > .icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; color: #fff; background: linear-gradient(135deg, var(--rs-yellow), var(--rs-green)); }
.brand__text strong, .brand--footer strong { display: block; max-width: 300px; font-size: 14px; line-height: 1.12; }
.brand__text small, .brand small { display: block; font-size: 11px; color: var(--rs-text); letter-spacing: 0; }
.custom-logo { max-height: 64px; width: auto; }
.primary-nav { flex: 0 0 auto; }
.primary-nav ul { display: flex; align-items: center; flex-wrap: nowrap; gap: 3px; padding: 0; margin: 0; list-style: none; }
.primary-nav a { display: block; padding: 12px 7px; font-size: 13px; font-weight: 800; white-space: nowrap; }
.primary-nav a:hover, .primary-nav .current-menu-item > a { color: var(--rs-orange); }
.nav-toggle { display: none; width: 44px; padding: 0; background: #fff; border: 1px solid var(--rs-line); }
.nav-toggle span:not(.screen-reader-text) { width: 20px; height: 2px; margin: 3px 0; background: var(--rs-ink); }

.section { padding: 28px 0; }
.eyebrow { margin: 0 0 10px; color: var(--rs-green-dark); font-weight: 900; text-transform: uppercase; }
.hero { position: relative; overflow: hidden; padding: 64px 0 44px; }
.hero__grid { display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; gap: 48px; }
.hero h1 { margin-bottom: 22px; }
.hero h1 strong, .hero h1 span { color: var(--rs-pink); }
.hero__copy > p:not(.eyebrow) { max-width: 560px; font-size: 18px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero__media { position: relative; }
.hero__media img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: var(--rs-radius); box-shadow: 0 26px 60px rgba(23, 32, 79, .14); }
.doodle { position: absolute; pointer-events: none; font-weight: 900; }
.doodle-heart { left: -28px; top: 32px; color: var(--rs-pink); font-size: 48px; transform: rotate(-12deg); }
.doodle-sun { right: 12px; bottom: -28px; color: var(--rs-orange); font-size: 52px; }
.doodle-line { left: 22px; bottom: -22px; width: 92px; height: 24px; border-bottom: 6px solid var(--rs-green); border-radius: 50%; transform: rotate(7deg); }

.about-layout { display: grid; grid-template-columns: 330px 1fr; gap: 18px; align-items: start; }
.intro-card, .content-card, .feature-panel, .value-card, .listing-card, .parent-doc-grid article {
	background: var(--rs-card);
	border: 1px solid rgba(23,32,79,.07);
	border-radius: var(--rs-radius);
	box-shadow: var(--rs-shadow);
}
.intro-card { padding: 28px; }
.intro-card p { margin-bottom: 22px; }
.values-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.value-card { display: grid; align-content: start; gap: 14px; min-height: 210px; padding: 28px; text-align: center; }
.value-card .icon { display: grid; place-items: center; width: 60px; height: 60px; margin: 0 auto; border-radius: var(--rs-radius); }
.value-card--green .icon { color: var(--rs-green); background: #f0f9e8; }
.value-card--pink .icon { color: var(--rs-pink); background: #fff0f5; }
.value-card--yellow .icon { color: #e9a500; background: #fff8dc; }
.value-card--blue .icon { color: var(--rs-blue); background: #eef8ff; }
.value-card p { margin: 0; font-size: 14px; }

.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: start; }
.feature-panel { padding: 28px; }
.section-heading--compact h2 { margin-bottom: 18px; }
.section-heading--row { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.section-heading--row a { color: var(--rs-pink); font-weight: 900; }
.panel-image { width: 100%; aspect-ratio: 16/8.6; object-fit: cover; border-radius: var(--rs-radius); margin-bottom: 18px; }
.group-list { display: grid; gap: 9px; margin-bottom: 18px; }
.group-list a { display: grid; grid-template-columns: 14px 1fr auto; align-items: center; gap: 10px; font-size: 14px; }
.group-list span { width: 12px; height: 12px; border-radius: 50%; background: var(--rs-yellow); }
.group-list a:nth-child(2) span { background: var(--rs-pink); }
.group-list a:nth-child(3) span { background: var(--rs-blue); }
.group-list a:nth-child(4) span { background: var(--rs-green); }
.group-list em { color: var(--rs-text); font-style: normal; }
.day-table { display: grid; margin-bottom: 18px; border: 1px solid var(--rs-line); border-radius: var(--rs-radius); overflow: hidden; }
.day-table div { display: grid; grid-template-columns: 112px 1fr; gap: 18px; padding: 10px 12px; background: #fff; border-bottom: 1px solid var(--rs-line); font-size: 14px; }
.day-table div:last-child { border-bottom: 0; }
.day-table time { font-weight: 900; }
.day-table--large div { grid-template-columns: 150px 1fr; padding: 16px 18px; font-size: 16px; }
.activity-list { display: grid; gap: 16px; margin-bottom: 18px; }
.activity-list a { display: grid; grid-template-columns: 44px 1fr; gap: 12px; align-items: start; }
.activity-list .icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: var(--rs-radius); color: var(--rs-blue); background: #eef8ff; }
.activity-list small { display: block; color: var(--rs-text); line-height: 1.45; }

.news-gallery-grid { display: grid; grid-template-columns: .36fr .64fr; gap: 18px; align-items: start; }
.content-card { padding: 28px; }
.news-list { display: grid; gap: 14px; margin-bottom: 20px; }
.news-item { display: grid; grid-template-columns: 96px 1fr; gap: 14px; align-items: start; }
.news-item img { width: 96px; height: 74px; object-fit: cover; border-radius: var(--rs-radius); }
.news-item strong { display: block; font-size: 15px; }
.news-item small { display: block; color: var(--rs-text); }
.news-item p { margin: 4px 0 0; font-size: 13px; line-height: 1.45; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 20px; }
.gallery-tile { position: relative; aspect-ratio: 4/2.75; margin: 0; overflow: hidden; border-radius: var(--rs-radius); background: #f3f6f8; box-shadow: 0 10px 20px rgba(23, 32, 79, .06); transition: transform .25s ease; }
.gallery-tile:hover { transform: translateY(-3px); }
.gallery-tile__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.02); transition: opacity 1.15s ease, transform 3.8s ease; }
.gallery-tile__image.is-active { opacity: 1; transform: scale(1); }

.trust-grid { display: grid; grid-template-columns: .36fr .64fr; gap: 18px; align-items: stretch; }
.testimonial-slider { position: relative; overflow: hidden; }
.testimonial { display: none; }
.testimonial.is-active { display: block; }
.testimonial p { font-size: 17px; }
.testimonial p::before { content: "\201C"; display: block; color: var(--rs-pink); font-size: 64px; line-height: .8; font-weight: 900; }
.testimonial cite { display: block; color: var(--rs-ink); font-style: normal; font-weight: 900; text-align: right; }
.testimonial-dots { display: flex; gap: 8px; margin-top: 18px; }
.testimonial-dots span { width: 9px; height: 9px; border-radius: 50%; background: #e7e1d6; }
.testimonial-dots .is-active { background: var(--rs-pink); }
.recruitment-card { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; padding: 34px; overflow: hidden; border-radius: var(--rs-radius); background: linear-gradient(110deg, #e7f7ff, #fff7dc); box-shadow: var(--rs-shadow); }
.recruitment-card ul { display: grid; gap: 7px; padding: 0; margin: 18px 0 0; list-style: none; color: var(--rs-text); }
.recruitment-card li::before { content: "\2713"; margin-right: 10px; color: var(--rs-green); font-weight: 900; }
.recruitment-actions { display: grid; gap: 12px; }
.recruitment-page { display: grid; gap: 24px; }
.recruitment-form-section { max-width: 920px; margin-inline: auto; }
.recruitment-form { display: grid; gap: 18px; margin-top: 22px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form-field { display: grid; gap: 7px; color: var(--rs-ink); font-weight: 900; }
.form-field input, .form-field select, .form-field textarea { background: #fffdf8; }
.form-field textarea { resize: vertical; }
.form-field--hidden { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-consent { display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start; color: var(--rs-text); font-size: 14px; }
.form-consent input { width: 18px; min-height: 18px; margin-top: 3px; }
.form-notice { padding: 14px 16px; margin-top: 16px; border-radius: var(--rs-radius); font-weight: 900; }
.form-notice--success { color: #356d1f; background: #eef9e6; border: 1px solid #cfe9bd; }
.form-notice--error { color: #a3284d; background: #fff0f5; border: 1px solid #f6c8d9; }
.doodle-cloud { right: 36%; top: 24px; width: 72px; height: 44px; border-radius: 999px; background: rgba(74,163,223,.22); }
.doodle-cloud::before, .doodle-cloud::after { content: ""; position: absolute; border-radius: 50%; background: rgba(74,163,223,.22); }
.doodle-cloud::before { width: 30px; height: 30px; left: 12px; top: -12px; }
.doodle-cloud::after { width: 38px; height: 38px; right: 10px; top: -18px; }

.parents-panel { display: grid; grid-template-columns: 1.1fr repeat(4, 1fr); gap: 18px; align-items: stretch; padding: 28px; background: #fff; border: 1px solid rgba(23,32,79,.07); border-radius: var(--rs-radius); box-shadow: var(--rs-shadow); }
.parents-panel h2 { margin: 0; align-self: center; }
.parents-panel a { display: grid; gap: 8px; padding-left: 18px; border-left: 1px solid var(--rs-line); }
.parents-panel .icon { color: var(--rs-orange); font-size: 32px; }
.parents-panel span { color: var(--rs-pink); font-weight: 900; }

.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 18px; align-items: stretch; }
.contact-copy { padding: 30px; background: #fff; border-radius: var(--rs-radius); box-shadow: var(--rs-shadow); }
.contact-list { display: grid; gap: 12px; margin-top: 20px; }
.contact-list span { display: flex; align-items: center; gap: 10px; color: var(--rs-text); }
.contact-list .icon { color: var(--rs-green); }
.map-card { min-height: 280px; overflow: hidden; background: #fff; border-radius: var(--rs-radius); box-shadow: var(--rs-shadow); }
.map-card iframe { width: 100%; height: 100%; min-height: 280px; border: 0; }
.map-placeholder { display: grid; place-items: center; height: 100%; min-height: 280px; color: var(--rs-pink); background: linear-gradient(135deg, #f3f6f8 25%, #e7edf1 25%, #e7edf1 50%, #f3f6f8 50%, #f3f6f8 75%, #e7edf1 75%); background-size: 46px 46px; }
.map-placeholder .icon { font-size: 48px; }
.map-placeholder span { padding: 8px 12px; color: var(--rs-ink); background: #fff; border-radius: var(--rs-radius); font-weight: 900; }

.contact-band { padding: 24px 0; background: #fffaf0; }
.contact-band__grid { display: grid; grid-template-columns: repeat(4, 1fr) 170px; gap: 18px; align-items: center; }
.contact-band__grid > div:not(.mini-map) { display: grid; grid-template-columns: 38px 1fr; column-gap: 10px; align-items: center; }
.contact-band .icon { grid-row: span 2; color: var(--rs-green); font-size: 30px; }
.contact-band span { color: var(--rs-text); font-size: 14px; }
.mini-map { display: grid; place-items: center; height: 78px; border-radius: var(--rs-radius); background: #eef3f6; color: var(--rs-pink); }
.footer-main { padding: 46px 0 18px; color: #fff; background: linear-gradient(135deg, #83bd37, #6fb63c); }
.footer-main p, .footer-main a, .footer-copy { color: rgba(255,255,255,.88); }
.footer-main__grid { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 36px; }
.brand--footer { color: #fff; }
.brand--footer small { color: rgba(255,255,255,.8); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.18); }
.footer-main h2 { font-size: 16px; }
.footer-main ul { padding: 0; margin: 0; list-style: none; }
.footer-copy { margin-top: 34px; text-align: center; font-size: 13px; }

.page-section, .archive-layout, .single-layout, .page-layout { padding: 58px 0; }
.page-hero { max-width: 760px; margin-bottom: 26px; }
.listing-grid, .parent-doc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.listing-card { overflow: hidden; }
.listing-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.listing-card div, .parent-doc-grid article { padding: 24px; }
.listing-card span { color: var(--rs-pink); font-weight: 900; }
.gallery-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-page-grid figure { margin: 0; overflow: hidden; border-radius: var(--rs-radius); background: #fff; box-shadow: var(--rs-shadow); }
.gallery-page-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.gallery-page-grid figcaption { padding: 12px 14px; font-weight: 900; }
.parent-doc-grid article .icon { color: var(--rs-blue); font-size: 34px; }
.content-sidebar { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 28px; }
.posts-list { display: grid; gap: 22px; }
.post-card, .entry, .sidebar .widget, .comments-area { background: #fff; border-radius: var(--rs-radius); box-shadow: var(--rs-shadow); }
.post-card { overflow: hidden; }
.post-card__body, .entry, .sidebar .widget, .comments-area { padding: 28px; }
.post-card__thumb img, .entry-thumb img { width: 100%; border-radius: var(--rs-radius); }
.meta { color: var(--rs-text); font-size: 14px; }
.read-more, .entry-content a { color: var(--rs-pink); font-weight: 900; }
.search-form { display: flex; gap: 10px; }
.search-field, input, textarea, select { width: 100%; min-height: 44px; border: 1px solid var(--rs-line); border-radius: var(--rs-radius); padding: 10px 14px; font: inherit; }
.not-found__actions { display: flex; align-items: stretch; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.not-found__actions .search-form { flex: 1 1 470px; max-width: 470px; }
.not-found__actions .button { flex: 0 0 auto; }
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 1280px) {
	.site-branding { flex-basis: 300px; }
	.brand__text strong { max-width: 240px; font-size: 12px; }
	.primary-nav a { padding-inline: 5px; font-size: 12px; }
	.nav-cta { padding-inline: 14px; font-size: 13px; }
}

@media (max-width: 1120px) {
	h1 { font-size: 46px; }
	h2 { font-size: 30px; }
	.hero__grid, .about-layout, .news-gallery-grid, .trust-grid, .contact-layout, .content-sidebar { grid-template-columns: 1fr; }
	.values-grid, .program-grid, .contact-band__grid { grid-template-columns: repeat(2, 1fr); }
	.parents-panel { grid-template-columns: repeat(2, 1fr); }
	.parents-panel h2 { grid-column: 1 / -1; }
	.nav-toggle { display: inline-grid; place-items: center; }
	.primary-nav { position: absolute; left: 20px; right: 20px; top: 119px; display: none; padding: 14px; background: #fff; border-radius: var(--rs-radius); box-shadow: var(--rs-shadow); }
	.primary-nav.is-open { display: block; }
	.primary-nav ul { display: grid; }
	.nav-cta { display: none; }
}

@media (max-width: 720px) {
	.container, .narrow { width: min(100% - 28px, 1180px); }
	h1 { font-size: 38px; }
	h2 { font-size: 27px; }
	.topbar__inner, .topbar__contacts { align-items: flex-start; flex-direction: column; gap: 8px; padding: 8px 0; }
	.topbar__social { position: absolute; right: 14px; top: 9px; }
	.hero { padding-top: 42px; }
	.values-grid, .program-grid, .gallery-grid, .listing-grid, .gallery-page-grid, .parent-doc-grid, .contact-band__grid, .footer-main__grid, .parents-panel { grid-template-columns: 1fr; }
	.value-card { min-height: auto; text-align: left; grid-template-columns: 60px 1fr; align-items: center; }
	.value-card .icon { margin: 0; }
	.day-table div, .day-table--large div { grid-template-columns: 1fr; gap: 3px; }
	.news-item { grid-template-columns: 82px 1fr; }
	.news-item img { width: 82px; height: 72px; }
	.recruitment-card { grid-template-columns: 1fr; }
	.form-grid { grid-template-columns: 1fr; }
	.parents-panel a { border-left: 0; border-top: 1px solid var(--rs-line); padding: 16px 0 0; }
	.not-found__actions { display: grid; }
	.not-found__actions .search-form { max-width: none; }
	.search-form { flex-direction: column; }
}
