:root {
	/* Brand palette (settable by tweaks panel). Variable names retain "teal-" prefix
     for minimal CSS churn but the values are no longer green. */
	--teal-900: #0e5180;
	--teal-800: #1266a0;
	--teal-700: #167ac0;
	--teal-600: #198fe0;
	--teal-400: #55aeeb;
	--paper: #f4f8fc;
	--paper-2: #e9f1f8;
	--beige: #eaf4fc;
	--ink: #15273f;
	--ink-soft: #4d617a;
	--white: #ffffff;

	/* Background tints (rgba — opacity baked in so palettes control mood) */
	--bg-tint-a: rgba(117, 189, 239, 0.3); /* upper-right wash */
	--bg-tint-b: rgba(85, 174, 235, 0.2); /* upper-left */
	--bg-tint-c: rgba(149, 204, 242, 0.34); /* lower-right */
	--bg-tint-d: rgba(18, 102, 160, 0.1); /* lower-left dark */
	--bg-base-from: #f1f7fc; /* page paper top */
	--bg-base-mid: #e6eff8;
	/* Floating background blobs */
	--blob-a: rgba(85, 174, 235, 0.42);
	--blob-b: rgba(18, 102, 160, 0.28);
	--blob-c: rgba(149, 204, 242, 0.5);

	/* Splash droplet colors (used by splashes.js) */
	--splash-cyan: #9ed6e4;
	--splash-bright: #75bdef;
	--splash-mid: #55aeeb;
	--splash-blue: #359fe7;
	--splash-royal: #198fe0;
	--splash-deep: #167ac0;
	--splash-light: #b6dcf6;
	--splash-pale: #d5eafa;

	--radius-sm: 12px;
	--radius: 18px;
	--radius-lg: 28px;

	--shadow-sm: 0 2px 14px -8px rgba(1, 104, 109, 0.18);
	--shadow:
		0 18px 50px -30px rgba(1, 79, 83, 0.35),
		0 2px 14px -8px rgba(1, 104, 109, 0.18);
	--shadow-lg: 0 40px 90px -50px rgba(1, 79, 83, 0.45);

	--content-w: 1200px;

	/* tweak vars (set by JS) */
	--bg-saturation: 1;
	--parallax-strength: 1;
}

* {
	box-sizing: border-box;
}
html,
body {
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family:
		"Inter",
		system-ui,
		-apple-system,
		sans-serif;
	color: var(--ink);
	background: var(--paper);
	font-size: 16px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

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

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

.container {
	max-width: var(--content-w);
	margin: 0 auto;
	padding: 0 32px;
}

/* ========================================================
   BACKGROUND LAYER (fixed parallax base)
   ======================================================== */
.bg-layer {
	position: fixed;
	inset: 0;
	z-index: -2;
	overflow: hidden;
	background: radial-gradient(
		120% 80% at 20% 0%,
		var(--bg-base-from) 0%,
		var(--bg-base-mid) 40%,
		var(--paper) 80%
	);
}

.bg-gradient {
	position: absolute;
	inset: -10%;
	background:
		radial-gradient(60% 50% at 80% 10%, var(--bg-tint-a) 0%, transparent 60%),
		radial-gradient(50% 50% at 10% 30%, var(--bg-tint-b) 0%, transparent 60%),
		radial-gradient(50% 50% at 80% 80%, var(--bg-tint-c) 0%, transparent 60%),
		radial-gradient(60% 50% at 20% 95%, var(--bg-tint-d) 0%, transparent 60%);
	pointer-events: none;
	opacity: var(--bg-saturation);
}

.bg-blob {
	position: absolute;
	width: 60vw;
	height: 60vw;
	border-radius: 50%;
	filter: blur(20px);
	opacity: var(--bg-saturation);
	pointer-events: none;
}
.blob-a {
	top: -10vw;
	right: -10vw;
	background: radial-gradient(
		circle at 50% 50%,
		var(--blob-a),
		transparent 70%
	);
}
.blob-b {
	bottom: 10vh;
	left: -15vw;
	background: radial-gradient(
		circle at 50% 50%,
		var(--blob-b),
		transparent 70%
	);
}
.blob-c {
	top: 35vh;
	left: 50vw;
	transform: translateX(-50%);
	width: 50vw;
	height: 50vw;
	background: radial-gradient(
		circle at 50% 50%,
		var(--blob-c),
		transparent 70%
	);
}

.bg-blob {
	position: absolute;
	width: 60vw;
	height: 60vw;
	filter: blur(2px);
	opacity: var(--bg-saturation);
	pointer-events: none;
}
.blob-a {
	top: -10vw;
	right: -10vw;
}
.blob-b {
	bottom: 10vh;
	left: -15vw;
}
.blob-c {
	top: 35vh;
	left: 50vw;
	transform: translateX(-50%);
	width: 50vw;
	height: 50vw;
}

.grain {
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: 0.5;
	mix-blend-mode: multiply;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.07  0 0 0 0 0.30  0 0 0 0 0.50  0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.deco-line {
	position: absolute;
	width: 140%;
	height: 200px;
	left: -20%;
	pointer-events: none;
}
.deco-line-a {
	top: 60vh;
	transform: translateY(0);
}
.deco-line-b {
	top: 140vh;
	transform: translateY(0);
}

/* ========================================================
   TYPOGRAPHY
   ======================================================== */
h1,
h2,
h3,
h4,
h5 {
	font-family: "Manrope", sans-serif;
	font-weight: 600;
	color: var(--ink);
	margin: 0;
	letter-spacing: -0.02em;
}
em {
	font-family: "Cormorant Garamond", serif;
	font-style: italic;
	font-weight: 500;
	color: var(--teal-800);
	letter-spacing: 0;
}

/* ========================================================
   HEADER
   ======================================================== */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	padding: 16px 0;
	transition:
		background 0.3s ease,
		backdrop-filter 0.3s ease,
		padding 0.3s ease,
		border-color 0.3s ease;
	border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
	background: rgba(244, 248, 252, 0.85);
	backdrop-filter: saturate(140%) blur(16px);
	-webkit-backdrop-filter: saturate(140%) blur(16px);
	padding: 10px 0;
	border-bottom-color: rgba(18, 102, 160, 0.1);
}

/* Inner pages — always opaque header (no scroll-triggered transition) */
body.inner-page .site-header {
	background: rgba(244, 248, 252, 0.92);
	backdrop-filter: saturate(140%) blur(16px);
	-webkit-backdrop-filter: saturate(140%) blur(16px);
	border-bottom: 1px solid rgba(18, 102, 160, 0.12);
	padding: 10px 0;
}
.header-row {
	display: flex;
	align-items: center;
	gap: 32px;
}
.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}
.brand-mark {
	width: 40px;
	height: 40px;
	display: inline-flex;
}
.brand-mark svg {
	width: 100%;
	height: 100%;
}
.brand-text {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}
.brand-title {
	font-family: "Manrope", sans-serif;
	font-weight: 700;
	font-size: 17px;
	color: var(--teal-800);
	letter-spacing: -0.01em;
}
.brand-sub {
	font-size: 11px;
	color: var(--ink-soft);
	letter-spacing: 0.02em;
}

.site-nav {
	display: flex;
	gap: 28px;
	margin-left: auto;
	font-size: 14px;
	font-weight: 500;
}
.site-nav a {
	color: var(--ink);
	position: relative;
	padding: 4px 0;
	transition: color 0.2s;
}
.site-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	height: 1px;
	background: var(--teal-800);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}
.site-nav a:hover {
	color: var(--teal-800);
}
.site-nav a:hover::after {
	transform: scaleX(1);
}

/* ========================================================
   NAV DROPDOWN (О школе)
   ======================================================== */
.nav-dropdown {
	position: relative;
}
/* invisible bridge so hover survives moving down to menu */
.nav-dropdown::after {
	content: "";
	position: absolute;
	top: 100%;
	left: -20px;
	right: -20px;
	height: 18px;
	display: none;
}
.nav-dropdown:hover::after,
.nav-dropdown:focus-within::after,
.nav-dropdown.is-open::after {
	display: block;
}

.nav-trigger {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: transparent;
	border: 0;
	padding: 4px 0;
	font: inherit;
	font-weight: 500;
	color: var(--ink);
	cursor: pointer;
	position: relative;
	transition: color 0.2s;
}
.nav-trigger .caret {
	width: 10px;
	height: 7px;
	transition: transform 0.25s ease;
	flex-shrink: 0;
}
.nav-trigger:hover,
.nav-dropdown:focus-within .nav-trigger,
.nav-dropdown.is-open .nav-trigger {
	color: var(--teal-800);
}
.nav-dropdown:hover .nav-trigger .caret,
.nav-dropdown.is-open .nav-trigger .caret,
.nav-dropdown:focus-within .nav-trigger .caret {
	transform: rotate(180deg);
}

.nav-trigger::after {
	content: "";
	position: absolute;
	left: 0;
	right: 14px; /* don't extend under caret */
	bottom: -2px;
	height: 1px;
	background: var(--teal-800);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}
.nav-dropdown:hover .nav-trigger::after,
.nav-dropdown.is-open .nav-trigger::after,
.nav-dropdown:focus-within .nav-trigger::after {
	transform: scaleX(1);
}

.nav-dropdown-menu {
	position: absolute;
	top: calc(100% + 18px);
	left: -16px;
	min-width: 260px;
	padding: 8px;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: saturate(140%) blur(16px);
	-webkit-backdrop-filter: saturate(140%) blur(16px);
	border: 1px solid rgba(18, 102, 160, 0.12);
	border-radius: 14px;
	box-shadow:
		0 30px 60px -30px rgba(14, 81, 128, 0.45),
		0 10px 24px -16px rgba(14, 81, 128, 0.25);
	display: flex;
	flex-direction: column;
	gap: 2px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition:
		opacity 0.22s ease,
		visibility 0.22s ease,
		transform 0.25s ease;
	z-index: 60;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.nav-dropdown-menu a {
	padding: 10px 14px;
	border-radius: 8px;
	font-family: "Inter", sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: var(--ink);
	transition:
		background 0.15s,
		color 0.15s,
		padding-left 0.2s;
	position: static; /* clear .site-nav a inheritance for ::after */
	white-space: nowrap;
}
.nav-dropdown-menu a::after {
	display: none;
}
.nav-dropdown-menu a:hover {
	background: rgba(18, 102, 160, 0.08);
	color: var(--teal-800);
	padding-left: 18px;
}

.header-cta {
	padding: 10px 22px;
	font-size: 14px;
}

/* ========================================================
   HAMBURGER + SIDE MENU
   ======================================================== */
.burger {
	display: none;
	width: 44px;
	height: 44px;
	background: transparent;
	border: 1px solid rgba(1, 104, 109, 0.18);
	border-radius: 12px;
	cursor: pointer;
	position: relative;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	margin-left: auto;
	padding: 0;
	transition:
		background 0.2s,
		border-color 0.2s;
}
.burger:hover {
	background: rgba(1, 104, 109, 0.06);
}
.burger span {
	display: block;
	width: 18px;
	height: 1.5px;
	background: var(--teal-800);
	border-radius: 2px;
	transition:
		transform 0.3s ease,
		opacity 0.25s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(6.5px) rotate(45deg);
}
.burger[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}
.burger[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-6.5px) rotate(-45deg);
}

.side-menu {
	position: fixed;
	inset: 0;
	z-index: 100;
	pointer-events: none;
	visibility: hidden;
}
.side-menu.is-open {
	pointer-events: auto;
	visibility: visible;
}
.side-menu-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(1, 79, 83, 0.32);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	opacity: 0;
	transition: opacity 0.3s ease;
}
.side-menu.is-open .side-menu-backdrop {
	opacity: 1;
}

.side-menu-panel {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: min(380px, 90vw);
	background: var(--paper);
	background-image:
		radial-gradient(
			60% 40% at 100% 0%,
			rgba(117, 189, 239, 0.2) 0%,
			transparent 70%
		),
		radial-gradient(
			60% 50% at 0% 100%,
			rgba(149, 204, 242, 0.18) 0%,
			transparent 70%
		);
	box-shadow: -30px 0 60px -20px rgba(1, 79, 83, 0.3);
	display: flex;
	flex-direction: column;
	padding: 24px 28px 28px;
	transform: translateX(100%);
	transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
	overflow: hidden;
}
.side-menu.is-open .side-menu-panel {
	transform: translateX(0);
}

.side-menu-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 36px;
}
.side-menu-close {
	width: 40px;
	height: 40px;
	background: transparent;
	border: 1px solid rgba(1, 104, 109, 0.15);
	border-radius: 10px;
	color: var(--teal-800);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition:
		background 0.2s,
		color 0.2s;
}
.side-menu-close:hover {
	background: var(--teal-800);
	color: var(--white);
}
.side-menu-close svg {
	width: 18px;
	height: 18px;
}

.side-menu-nav {
	display: flex;
	flex-direction: column;
	gap: 2px;
	position: relative;
	z-index: 2;
}
.side-menu-nav > a {
	display: flex;
	align-items: baseline;
	gap: 16px;
	padding: 14px 0;
	font-family: "Manrope", sans-serif;
	font-weight: 500;
	font-size: 22px;
	letter-spacing: -0.01em;
	color: var(--ink);
	border-bottom: 1px solid rgba(18, 102, 160, 0.08);
	transition:
		color 0.2s,
		padding-left 0.25s ease;
}
.side-menu-nav > a:hover {
	color: var(--teal-800);
	padding-left: 6px;
}
.side-menu-nav > a .num,
.side-menu-section .num {
	font-family: "Cormorant Garamond", serif;
	font-style: italic;
	font-size: 13px;
	color: var(--teal-400);
	font-weight: 500;
	min-width: 22px;
}

/* Side menu expandable section */
.side-menu-section {
	display: block;
	padding: 0;
}
.side-menu-expand {
	display: flex;
	width: 100%;
	align-items: baseline;
	gap: 16px;
	background: transparent;
	border: 0;
	padding: 14px 0;
	font-family: "Manrope", sans-serif;
	font-weight: 500;
	font-size: 22px;
	letter-spacing: -0.01em;
	color: var(--ink);
	cursor: pointer;
	text-align: left;
	border-bottom: 1px solid rgba(18, 102, 160, 0.08);
	transition:
		color 0.2s,
		padding-left 0.25s ease;
}
.side-menu-expand:hover {
	color: var(--teal-800);
	padding-left: 6px;
}
.side-menu-expand .caret {
	width: 14px;
	height: 9px;
	margin-left: auto;
	align-self: center;
	color: var(--teal-400);
	transition: transform 0.25s ease;
	flex-shrink: 0;
}
.side-menu-expand[aria-expanded="true"] .caret {
	transform: rotate(180deg);
}
.side-menu-sub {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
	padding-left: 38px;
}
.side-menu-expand[aria-expanded="true"] + .side-menu-sub {
	max-height: 4280px;
}
.side-menu-sub a {
	display: block;
	padding: 10px 0;
	font-family: "Manrope", sans-serif;
	font-size: 16.5px;
	font-weight: 500;
	color: var(--ink-soft);
	border: 0;
	transition:
		color 0.2s,
		padding-left 0.25s;
}
.side-menu-sub a:hover {
	color: var(--teal-800);
	padding-left: 4px;
}
.side-menu-sub a:last-child {
	padding-bottom: 16px;
}

.side-menu-cta {
	margin-top: auto;
	padding-top: 32px;
	position: relative;
	z-index: 2;
}
.side-menu-cta .btn {
	width: 100%;
}
.side-menu-contact {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-top: 18px;
	font-size: 14px;
}
.side-menu-contact a {
	color: var(--ink-soft);
	transition: color 0.2s;
}
.side-menu-contact a:first-child {
	color: var(--teal-800);
	font-weight: 500;
	font-size: 17px;
}
.side-menu-contact a:hover {
	color: var(--teal-900);
}

.side-menu-bird {
	position: absolute;
	right: -40px;
	top: 35%;
	width: 240px;
	opacity: 0.18;
	pointer-events: none;
	transform: rotate(8deg);
	z-index: 1;
}
.side-menu-bird img {
	mix-blend-mode: multiply;
	width: 100%;
}

body.menu-open {
	overflow: hidden;
}

/* ========================================================
   ACCESSIBILITY ("Версия для слабовидящих")
   ======================================================== */
/* Header button (compact eye + label) */
.a11y-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	/* padding: 8px 14px; */
	padding: 19px 41px;
	color: white;
	background: #55aeeb;
	border: 1px solid rgba(18, 102, 160, 0.18);
	border-radius: 10px;
	/* color: var(--teal-800); */
	font-family: "Inter", sans-serif;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	transition:
		background 0.2s,
		border-color 0.2s;
	margin-left: 12px;
	white-space: nowrap;
}
.a11y-btn:hover {
	background: rgba(18, 102, 160, 0.06);
	border-color: rgba(18, 102, 160, 0.35);
}
.a11y-btn.is-on {
	background: var(--teal-800);
	color: var(--white);
	border-color: var(--teal-800);
}
.a11y-btn svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.side-a11y {
	width: 100%;
	margin-top: 10px;
	font-size: 14px;
}

/* Sliding panel */
.a11y-panel {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 90;
	background: #0e5180;
	background: var(--teal-900);
	color: #fff !important;
	transform: translateY(-100%);
	transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.3);
}
.a11y-panel.is-open {
	transform: translateY(0);
}
.a11y-panel-inner {
	padding: 18px 32px 22px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px 32px;
	align-items: center;
}
.a11y-row {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}
.a11y-label {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.78);
	font-weight: 500;
	min-width: 130px;
}
.a11y-group {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}
.a11y-opt {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-width: 36px;
	height: 36px;
	padding: 0 12px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	color: #15273f;
	font-family: "Inter", sans-serif;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition:
		background 0.15s,
		border-color 0.15s;
}
.a11y-opt:hover {
	background: rgba(255, 255, 255, 0.16);
}
.a11y-opt.is-active {
	background: #fff;
	color: #0e5180;
	border-color: #fff;
}
.a11y-scheme-btn {
	position: relative;
	padding: 0;
	width: 44px;
	overflow: hidden;
}
.a11y-scheme-btn .dot {
	display: block;
	position: absolute;
	border-radius: 50%;
	border: 1px solid rgba(0, 0, 0, 0.15);
}
.a11y-scheme-btn .dot-bg {
	width: 28px;
	height: 28px;
	left: 6px;
	top: 50%;
	transform: translateY(-50%);
}
.a11y-scheme-btn .dot-fg {
	width: 16px;
	height: 16px;
	right: 6px;
	top: 50%;
	transform: translateY(-50%);
}
.a11y-scheme-btn.is-active {
	background: #fff;
}
.a11y-actions {
	grid-column: span 2;
	display: flex;
	gap: 10px;
	justify-content: flex-end;
	flex-wrap: wrap;
	padding-top: 8px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.a11y-actions .btn-ghost {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.4);
}
.a11y-actions .btn-ghost:hover {
	background: rgba(255, 255, 255, 0.12);
}
.a11y-actions .btn-primary {
	background: #fff;
	color: var(--teal-900);
}
.a11y-actions .btn-primary:hover {
	background: rgba(255, 255, 255, 0.9);
	color: var(--teal-900);
	box-shadow: none;
}

/* When panel is open, push the page content down so it doesn't sit under the panel */
body:has(.a11y-panel.is-open) {
	padding-top: 260px;
}
body:has(.a11y-panel.is-open) .site-header {
	top: 260px;
}
@media (max-width: 900px) {
	body:has(.a11y-panel.is-open) {
		padding-top: 380px;
	}
	body:has(.a11y-panel.is-open) .site-header {
		top: 380px;
	}
}

/* ========================================================
   ACCESSIBILITY — when a11y mode is active
   ======================================================== */
body.a11y-on {
	/* Base font-size scaling (used inside text-only rules below) */
}

/* Hide all decorative layers when a11y is on */
body.a11y-on .bg-layer,
body.a11y-on .birds,
body.a11y-on .blot,
body.a11y-on .blot-band,
body.a11y-on .deco-line,
body.a11y-on .float-bird,
body.a11y-on .hero-bird,
body.a11y-on .hero-stamp,
body.a11y-on .scroll-hint,
body.a11y-on .wave-div,
body.a11y-on .enroll-bird,
body.a11y-on .side-menu-bird {
	display: none !important;
}

/* Flatten glass / decorative backgrounds */
body.a11y-on .glass,
body.a11y-on .glass-thin,
body.a11y-on .glass-strong,
body.a11y-on .card,
body.a11y-on .program,
body.a11y-on .teacher,
body.a11y-on .ach,
body.a11y-on .faq,
body.a11y-on .enroll,
body.a11y-on .card-quote {
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
	background: transparent !important;
	box-shadow: none !important;
	border: 1px solid currentColor !important;
	border-radius: 0 !important;
}
body.a11y-on .card-accent,
body.a11y-on .program-accent {
	background: transparent !important;
	color: inherit !important;
}
body.a11y-on .card-accent h3,
body.a11y-on .card-accent p,
body.a11y-on .card-accent .card-num,
body.a11y-on .program-accent h3,
body.a11y-on .program-accent p,
body.a11y-on .program-accent .program-tag,
body.a11y-on .program-accent .program-len {
	color: inherit !important;
}

body.a11y-on .section-tint::before {
	display: none !important;
}
body.a11y-on .teacher-photo {
	background: transparent !important;
	border: 1px solid currentColor !important;
}
body.a11y-on .teacher-photo::after {
	display: none !important;
}
body.a11y-on em {
	font-family: inherit !important;
	font-style: normal !important;
	font-weight: 700 !important;
	text-decoration: none !important;
	color: inherit !important;
}
body.a11y-on .brand-mark,
body.a11y-on .enroll-form .field span {
	color: inherit !important;
}

/* Buttons in a11y mode — outlined, no transforms */
body.a11y-on .btn {
	background: transparent !important;
	color: inherit !important;
	border: 2px solid currentColor !important;
	box-shadow: none !important;
	transform: none !important;
}
body.a11y-on .btn:hover {
	background: currentColor !important;
}
body.a11y-on .btn:hover * {
	color: var(--a11y-bg) !important;
}
body.a11y-on .btn:hover {
	color: var(--a11y-bg) !important;
}

/* Inputs */
body.a11y-on .enroll-form input {
	background: transparent !important;
	border: 1px solid currentColor !important;
	color: inherit !important;
}

/* Header keeps a solid bg in a11y mode */
body.a11y-on .site-header {
	position: static !important;
	background: transparent !important;
	backdrop-filter: none !important;
	border-bottom: 1px solid currentColor !important;
}
body.a11y-on main {
	padding-top: 0 !important;
}
body.a11y-on .hero {
	min-height: auto !important;
	padding: 40px 0 !important;
}

/* Force visible focus outlines */
body.a11y-on a:focus,
body.a11y-on button:focus,
body.a11y-on input:focus,
body.a11y-on summary:focus {
	outline: 3px solid currentColor !important;
	outline-offset: 2px !important;
}

/* Font size scaling via CSS var --a11y-fs (1, 1.25, 1.5) */
body.a11y-on {
	font-size: calc(18px * var(--a11y-fs, 1)) !important;
	line-height: 1.6 !important;
	letter-spacing: var(--a11y-ls, 0) !important;
}
body.a11y-on .hero-title {
	font-size: calc(48px * var(--a11y-fs, 1)) !important;
}
body.a11y-on .sec-title {
	font-size: calc(36px * var(--a11y-fs, 1)) !important;
}
body.a11y-on .enroll-title {
	font-size: calc(36px * var(--a11y-fs, 1)) !important;
}
body.a11y-on h3 {
	font-size: calc(22px * var(--a11y-fs, 1)) !important;
}
body.a11y-on h4 {
	font-size: calc(18px * var(--a11y-fs, 1)) !important;
}
body.a11y-on .meta-num {
	font-size: calc(40px * var(--a11y-fs, 1)) !important;
}
body.a11y-on .hero-lede,
body.a11y-on .sec-lede {
	font-size: calc(18px * var(--a11y-fs, 1)) !important;
}
body.a11y-on .btn {
	font-size: calc(16px * var(--a11y-fs, 1)) !important;
	padding: calc(12px * var(--a11y-fs, 1)) calc(22px * var(--a11y-fs, 1)) !important;
}

/* Hide images when "off" */
body.a11y-on.a11y-img-off img,
body.a11y-on.a11y-img-off svg {
	display: none !important;
}
body.a11y-on.a11y-img-off .gal-img {
	background: transparent !important;
	border: 1px solid currentColor !important;
}
body.a11y-on.a11y-img-off .gal-img::before {
	content: attr(data-label);
	display: block;
	padding: 16px;
	font-size: 14px;
}

/* Font family choices */
body.a11y-on.a11y-font-sans,
body.a11y-on.a11y-font-sans * {
	font-family: "Inter", Arial, Helvetica, sans-serif !important;
}
body.a11y-on.a11y-font-serif,
body.a11y-on.a11y-font-serif * {
	font-family: Georgia, "Times New Roman", serif !important;
}

/* Color schemes (vars get used by .btn hover above for inverse text color) */
body.a11y-on.a11y-scheme-bw {
	background: #fff !important;
	color: #000 !important;
	--a11y-bg: #fff;
	--a11y-fg: #000;
}
body.a11y-on.a11y-scheme-wb {
	background: #000 !important;
	color: #fff !important;
	--a11y-bg: #000;
	--a11y-fg: #fff;
}
body.a11y-on.a11y-scheme-yb {
	background: #000 !important;
	color: #ffd200 !important;
	--a11y-bg: #000;
	--a11y-fg: #ffd200;
}
body.a11y-on.a11y-scheme-bb {
	background: #9dd0ff !important;
	color: #063763 !important;
	--a11y-bg: #9dd0ff;
	--a11y-fg: #063763;
}
body.a11y-on.a11y-scheme-br {
	background: #f7f3e8 !important;
	color: #4a3520 !important;
	--a11y-bg: #f7f3e8;
	--a11y-fg: #4a3520;
}

/* Inherit color throughout */
body.a11y-on,
body.a11y-on h1,
body.a11y-on h2,
body.a11y-on h3,
body.a11y-on h4,
body.a11y-on h5,
body.a11y-on p,
body.a11y-on a,
body.a11y-on span,
body.a11y-on div,
body.a11y-on li,
body.a11y-on summary,
body.a11y-on label,
body.a11y-on .brand-title,
body.a11y-on .brand-sub,
body.a11y-on .hero-eyebrow,
body.a11y-on .sec-eyebrow,
body.a11y-on .enroll-eyebrow,
body.a11y-on .meta-label,
body.a11y-on .meta-num,
body.a11y-on .footer-tag,
body.a11y-on .footer-col p,
body.a11y-on .footer-col a,
body.a11y-on .footer-col h5,
body.a11y-on .footer-bottom span,
body.a11y-on .program-tag,
body.a11y-on .program-len,
body.a11y-on .ach-year,
body.a11y-on .teacher-role,
body.a11y-on .arrow,
body.a11y-on .link-arrow,
body.a11y-on .brand-title,
body.a11y-on .brand-text,
body.a11y-on .nav a,
body.a11y-on .site-nav a,
body.a11y-on .hero-eyebrow .dot {
	color: inherit !important;
	/* background: transparent !important; */
}
body.a11y-on .hero-eyebrow,
body.a11y-on .program-tag {
	border-color: currentColor !important;
}
body.a11y-on .site-footer {
	background: transparent !important;
	padding-top: 40px !important;
	margin-top: 60px !important;
	border-top: 1px solid currentColor !important;
}
body.a11y-on .site-footer::before {
	display: none !important;
}
body.a11y-on .footer-grid {
	border-bottom-color: currentColor !important;
}

/* Hide tweaks button when a11y is on */
body.a11y-on .twk-fab,
body.a11y-on .twk-panel {
	display: none !important;
}

@media (max-width: 900px) {
	.a11y-panel-inner {
		grid-template-columns: 1fr;
		gap: 10px 0;
		padding: 16px 20px;
	}
	.a11y-btn span {
		display: none;
	}
	.a11y-btn {
		padding: 8px;
	}
	.a11y-label {
		min-width: 110px;
		font-size: 12.5px;
	}
}
@media (max-width: 1080px) {
	.a11y-btn {
		display: none;
	} /* show button only inside the side menu on narrow viewports */
}

/* ========================================================
   INNER PAGES — News listing & article
   ======================================================== */

/* Active nav link */
.site-nav a.is-current {
	color: var(--teal-800);
	font-weight: 600;
}
.site-nav a.is-current::after {
	transform: scaleX(1);
}

/* Breadcrumb */
.breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--ink-soft);
	margin-bottom: 28px;
	flex-wrap: wrap;
}
.breadcrumb a {
	color: var(--teal-800);
	transition: color 0.2s;
}
.breadcrumb a:hover {
	color: var(--teal-900);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.breadcrumb .bc-sep {
	color: var(--ink-soft);
	opacity: 0.5;
}
.breadcrumb [aria-current="page"] {
	color: var(--ink);
}

/* Page hero (used on Новости.html etc) */
.page-hero {
	position: relative;
	padding: 90px 0 56px;
	overflow: hidden;
}
.page-title {
	font-family: "Manrope", sans-serif;
	font-size: clamp(44px, 6.5vw, 52px);
	line-height: 1.04;
	letter-spacing: -0.03em;
	font-weight: 600;
	margin: 0;
	text-wrap: balance;
}
.page-lede {
	margin-top: 24px;
	font-size: clamp(17px, 1.4vw, 19px);
	color: var(--ink-soft);
	line-height: 1.6;
	max-width: 620px;
	text-wrap: pretty;
}

/* Filter chips */
.filter-chips {
	display: flex;
	gap: 8px;
	margin-top: 40px;
	flex-wrap: wrap;
}
.chip {
	padding: 9px 18px;
	font-family: "Inter", sans-serif;
	font-size: 14px;
	font-weight: 500;
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid rgba(18, 102, 160, 0.18);
	color: var(--ink);
	border-radius: 999px;
	cursor: pointer;
	transition: all 0.2s ease;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}
.chip:hover {
	background: rgba(255, 255, 255, 0.75);
	border-color: var(--teal-800);
	color: var(--teal-800);
}
.chip.is-active {
	background: var(--teal-800);
	color: var(--white);
	border-color: var(--teal-800);
}

/* Meta line — date + category */
.meta-line {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	font-size: 13px;
	color: var(--ink-soft);
	margin-bottom: 14px;
}
.meta-line time {
	color: var(--ink-soft);
}
.dot-sep {
	color: var(--ink-soft);
	opacity: 0.5;
}

.cat-tag {
	display: inline-block;
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-weight: 600;
	padding: 3px 10px;
	border-radius: 999px;
	border: 1px solid currentColor;
}
.cat-news {
	color: var(--teal-800);
}
.cat-events {
	color: var(--teal-700);
}
.cat-exhibitions {
	color: #6b4fb0;
} /* keep slight hue variation between categories */
.cat-achievements {
	color: #c76b45;
}
.cat-materials {
	color: #2d6a4f;
}
.cat-documents {
	color: var(--ink-soft);
}

/* Featured card */
.featured-sec {
	padding: 24px 0 32px;
}
.featured {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 32px;
	padding: 24px;
	align-items: stretch;
	position: relative;
	overflow: hidden;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}
.featured:hover {
	transform: translateY(-3px);
	box-shadow: 0 30px 60px -30px rgba(14, 81, 128, 0.35);
}
.featured-link {
	position: absolute;
	inset: 0;
	z-index: 1;
}
.featured-cover {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: var(--paper-2);
}
.featured-cover svg {
	width: 100%;
	height: 100%;
	display: block;
}
.featured-badge {
	position: absolute;
	top: 18px;
	left: 18px;
	background: var(--teal-900);
	color: #fff;
	font-size: 11px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	padding: 6px 12px;
	border-radius: 999px;
	font-weight: 600;
	z-index: 2;
}
.featured-body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 16px 8px 16px 0;
	position: relative;
	z-index: 2;
	pointer-events: none;
}
.featured-body * {
	pointer-events: auto;
}
.featured-title {
	font-family: "Manrope", sans-serif;
	font-size: clamp(28px, 3.5vw, 42px);
	line-height: 1.1;
	letter-spacing: -0.025em;
	font-weight: 600;
	margin: 0 0 16px;
	text-wrap: balance;
}
.featured-lede {
	font-size: 16.5px;
	color: var(--ink-soft);
	line-height: 1.6;
	margin: 0 0 24px;
	text-wrap: pretty;
}
.read-more {
	font-family: "Manrope", sans-serif;
	font-weight: 600;
	color: var(--teal-800);
	font-size: 15px;
	align-self: flex-start;
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s;
}
.read-more i {
	font-style: normal;
	display: inline-block;
	transition: transform 0.25s;
	margin-left: 2px;
}
.featured:hover .read-more {
	border-bottom-color: var(--teal-800);
}
.featured:hover .read-more i {
	transform: translateX(4px);
}

/* News grid */
.news-grid-sec {
	padding: 12px 0 60px;
}
.news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	position: relative;
	z-index: 2;
}
.news-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	position: relative;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}
.news-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 30px 60px -30px rgba(14, 81, 128, 0.35);
}
.news-card.is-filtered-out {
	display: none;
}
.card-link {
	position: absolute;
	inset: 0;
	z-index: 1;
}
.news-cover {
	width: 100%;
	aspect-ratio: 4 / 2.8;
	overflow: hidden;
	background: var(--paper-2);
	border-radius: 10px 10px 0 0;
	margin: -1px -1px 0 -1px; /* extend to card edge */
	border-bottom: 1px solid rgba(18, 102, 160, 0.08);
}
.news-cover svg {
	width: 100%;
	height: 100%;
	display: block;
}
.news-body {
	padding: 22px 22px 24px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
	position: relative;
	z-index: 2;
	pointer-events: none;
}
.news-body * {
	pointer-events: auto;
}
.news-body h3 {
	font-size: 19px;
	line-height: 1.25;
	margin: 0;
	letter-spacing: -0.01em;
}
.news-body p {
	font-size: 14.5px;
	line-height: 1.55;
	color: var(--ink-soft);
	margin: 0;
	text-wrap: pretty;
}

/* Pagination */
.pagination {
	margin-top: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	list-style: none;
}
.page-btn {
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 1px solid rgba(18, 102, 160, 0.18);
	color: var(--ink);
	border-radius: 10px;
	font-family: "Manrope", sans-serif;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
}
.page-btn:hover:not([disabled]) {
	border-color: var(--teal-800);
	color: var(--teal-800);
	background: rgba(255, 255, 255, 0.5);
}
.page-btn.is-current {
	background: var(--teal-800);
	border-color: var(--teal-800);
	color: var(--white);
}
.page-btn[disabled] {
	opacity: 0.4;
	cursor: not-allowed;
}
.page-ellipsis {
	color: var(--ink-soft);
	padding: 0 4px;
}

/* =================
   ARTICLE PAGE
   ================= */
.article-head {
	padding: 80px 0 40px;
	position: relative;
}
.article-head-inner {
	max-width: 880px;
	margin: 0 auto;
}
.article-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	font-size: 13px;
	color: var(--ink-soft);
	margin-bottom: 20px;
}
.article-title {
	font-family: "Manrope", sans-serif;
	/* font-size: clamp(38px, 5.5vw, 68px); */
	    font-size: clamp(30px, 5.5vw, 32px);
	line-height: 1.06;
	letter-spacing: -0.032em;
	font-weight: 600;
	margin: 0 0 24px;
	text-wrap: balance;
}
.article-lede {
	font-size: clamp(18px, 1.5vw, 21px);
	color: var(--ink-soft);
	line-height: 1.5;
	margin: 0 0 36px;
	text-wrap: pretty;
}
.article-author {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-top: 28px;
	border-top: 1px solid rgba(18, 102, 160, 0.15);
}
.author-avatar {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--teal-600), var(--teal-900));
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Cormorant Garamond", serif;
	font-style: italic;
	color: var(--beige);
	font-size: 22px;
}
.author-avatar::before {
	content: attr(data-init);
}
.author-name {
	font-weight: 600;
	color: var(--ink);
}
.author-role {
	font-size: 13px;
	color: var(--ink-soft);
	font-family: "Cormorant Garamond", serif;
	font-style: italic;
}

/* Cover */
.article-cover {
	margin: 16px auto 56px;
	max-width: 1280px;
	padding: 0 32px;
}
.article-cover .cover-img {
	width: 100%;
	aspect-ratio: 2 / 1;
	overflow: hidden;
	border-radius: 20px;
	background: var(--paper-2);
}
.article-cover .cover-img svg {
	width: 100%;
	height: 100%;
	display: block;
}
.article-cover figcaption {
	margin-top: 14px;
	font-family: "Cormorant Garamond", serif;
	font-style: italic;
	font-size: 16px;
	color: var(--ink-soft);
	text-align: center;
}

/* Article body */
.article-body {
	max-width: 760px;
	margin: 0 auto;
	font-size: 17.5px;
	line-height: 1.7;
	color: var(--ink);
}
.article-body p {
	margin: 0 0 22px;
	text-wrap: pretty;
}
.article-body h2 {
	font-family: "Manrope", sans-serif;
	font-size: 28px;
	letter-spacing: -0.02em;
	margin: 48px 0 18px;
	font-weight: 600;
	line-height: 1.2;
}
.article-body strong {
	font-weight: 600;
	color: var(--ink);
}

.article-list {
	margin: 0 0 28px;
	padding-left: 1.5em;
}
.article-list li {
	margin-bottom: 10px;
	text-wrap: pretty;
}
.article-list li::marker {
	color: var(--teal-800);
	font-weight: 600;
}

.article-image {
	margin: 36px 0 40px;
	padding: 0;
}
.article-image .cover-img {
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	border-radius: 14px;
	background: var(--paper-2);
}
.article-image .cover-img svg {
	width: 100%;
	height: 100%;
	display: block;
}
.article-image figcaption {
	margin-top: 12px;
	font-family: "Cormorant Garamond", serif;
	font-style: italic;
	font-size: 15.5px;
	color: var(--ink-soft);
	text-align: center;
}

.pull-quote {
	margin: 44px -32px;
	padding: 36px 40px;
	border-left: 3px solid var(--teal-800);
	background: rgba(149, 204, 242, 0.18);
	border-radius: 0 16px 16px 0;
}
.pull-quote p {
	font-family: "Cormorant Garamond", serif;
	font-style: italic;
	font-size: 26px;
	line-height: 1.3;
	color: var(--teal-900);
	margin: 0 0 16px;
	text-wrap: balance;
}
.pull-quote cite {
	display: block;
	font-style: normal;
	font-family: "Inter", sans-serif;
	font-size: 13px;
	letter-spacing: 0.05em;
	color: var(--teal-800);
	text-transform: uppercase;
	font-weight: 600;
}

.article-cta {
	margin: 40px 0;
	padding: 32px 32px 28px;
	text-align: left;
	border-radius: 18px;
}
.article-cta h3 {
	font-size: 22px;
	margin: 0 0 8px;
	line-height: 1.25;
}
.article-cta p {
	font-size: 15px;
	color: var(--ink-soft);
	margin: 0 0 20px;
}
.article-cta-row {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

/* Article footer (tags + share) */
.article-footer {
	margin-top: 48px;
	padding-top: 28px;
	border-top: 1px solid rgba(18, 102, 160, 0.15);
	display: flex;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}
.article-tags {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}
.tag-label {
	font-size: 13px;
	color: var(--ink-soft);
}
.tag {
	display: inline-block;
	padding: 5px 11px;
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid rgba(18, 102, 160, 0.18);
	border-radius: 999px;
	font-size: 13px;
	color: var(--teal-800);
	transition: all 0.2s;
}
.tag:hover {
	background: var(--teal-800);
	color: #fff;
	border-color: var(--teal-800);
}

.article-share {
	display: flex;
	align-items: center;
	gap: 8px;
}
.share-label {
	font-size: 13px;
	color: var(--ink-soft);
}
.share-btn {
	width: 36px;
	height: 36px;
	background: transparent;
	border: 1px solid rgba(18, 102, 160, 0.18);
	border-radius: 8px;
	color: var(--teal-800);
	cursor: pointer;
	font-family: "Inter", sans-serif;
	font-size: 12px;
	font-weight: 600;
	transition: all 0.2s;
}
.share-btn:hover {
	background: var(--teal-800);
	color: #fff;
	border-color: var(--teal-800);
}

.related-sec {
	padding: 80px 0;
}

/* Responsive */
@media (max-width: 1080px) {
	.news-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.featured {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 720px) {
	.news-grid {
		grid-template-columns: 1fr;
	}
	.page-hero {
		padding: 100px 0 40px;
	}
	.article-head {
		padding: 100px 0 24px;
	}
	.article-cover {
		padding: 0 20px;
	}
	.article-body {
		padding: 0 20px;
		font-size: 16.5px;
	}
	.pull-quote {
		margin: 32px 0;
		padding: 24px;
		border-radius: 14px;
	}
	.article-footer {
		flex-direction: column;
		gap: 16px;
	}
	.pagination {
		flex-wrap: wrap;
	}
}

/* ========================================================
   TWEAKS PANEL — palette picker grid
   ======================================================== */
.palette-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	padding: 2px 0 6px;
}
.palette-card {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 8px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	cursor: pointer;
	transition:
		border-color 0.15s ease,
		background 0.15s ease,
		transform 0.15s ease;
	text-align: left;
}
.palette-card:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.18);
}
.palette-card.is-active {
	border-color: rgba(255, 255, 255, 0.6);
	background: rgba(255, 255, 255, 0.12);
}
.palette-swatches {
	display: flex;
	height: 22px;
	border-radius: 4px;
	overflow: hidden;
}
.palette-swatch {
	flex: 1;
	display: block;
}
.palette-label {
	font-size: 11.5px;
	color: rgba(255, 255, 255, 0.85);
	font-weight: 500;
	letter-spacing: 0.01em;
}

/* ========================================================
   BUTTONS
   ======================================================== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 28px;
	border-radius: 14px;
	font-family: "Manrope", sans-serif;
	font-weight: 600;
	font-size: 15px;
	letter-spacing: -0.005em;
	cursor: pointer;
	border: 1px solid transparent;
	transition: all 0.25s ease;
	text-decoration: none;
}
.btn-primary {
	background: var(--teal-800);
	color: var(--white);
}
.btn-primary:hover {
	background: var(--teal-900);
	transform: translateY(-1px);
	box-shadow: 0 12px 28px -14px rgba(1, 79, 83, 0.6);
}
.btn-ghost {
	background: transparent;
	color: var(--teal-800);
	border-color: var(--teal-800);
}
.btn-ghost:hover {
	background: rgba(1, 104, 109, 0.06);
}

/* ========================================================
   GLASS PANELS (transparent scrolling content)
   ======================================================== */
.glass {
	background: rgba(255, 255, 255, 0.55);
	backdrop-filter: blur(14px) saturate(135%);
	-webkit-backdrop-filter: blur(14px) saturate(135%);
	border: 1px solid rgba(255, 255, 255, 0.6);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.6) inset,
		var(--shadow);
	border-radius: var(--radius);
}
.glass-thin {
	background: rgba(255, 255, 255, 0.42);
	backdrop-filter: blur(10px) saturate(125%);
	-webkit-backdrop-filter: blur(10px) saturate(125%);
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: var(--radius);
}
.glass-strong {
	background: rgba(255, 255, 255, 0.72);
	backdrop-filter: blur(20px) saturate(140%);
	-webkit-backdrop-filter: blur(20px) saturate(140%);
	border: 1px solid rgba(255, 255, 255, 0.65);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
}

/* ========================================================
   HERO
   ======================================================== */
.hero {
	position: relative;
	/* min-height: 100vh; */
	padding: 140px 0 80px;
	overflow: hidden;
}
.hero-grid {
	position: relative;
	z-index: 2;
	max-width: 900px;
}
.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--teal-800);
	font-weight: 600;
	padding: 8px 14px;
	background: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(1, 104, 109, 0.15);
	border-radius: 999px;
}
.hero-eyebrow .dot {
	width: 6px;
	height: 6px;
	background: var(--teal-400);
	border-radius: 50%;
	box-shadow: 0 0 0 4px rgba(44, 154, 160, 0.25);
}
.hero-title {
	font-size: clamp(48px, 7vw, 96px);
	line-height: 1.02;
	font-weight: 600;
	margin-top: 28px;
	letter-spacing: -0.035em;
	text-wrap: balance;
}
.hero-lede {
	margin-top: 28px;
	font-size: clamp(17px, 1.4vw, 20px);
	max-width: 560px;
	color: var(--ink-soft);
	line-height: 1.55;
	text-wrap: pretty;
}
.hero-ctas {
	margin-top: 36px;
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.hero-meta {
	display: flex;
	align-items: stretch;
	gap: 28px;
	margin-top: 80px;
	padding-top: 32px;
	border-top: 1px solid rgba(1, 104, 109, 0.18);
	flex-wrap: wrap;
}
.meta-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.meta-num {
	font-family: "Cormorant Garamond", serif;
	font-style: italic;
	font-weight: 500;
	font-size: 56px;
	line-height: 1;
	text-align: center;
	color: var(--teal-800);
}
.meta-label {
	font-size: 12px;
	letter-spacing: 0.05em;
	color: var(--ink-soft);
	line-height: 1.35;
	text-transform: lowercase;
}
.meta-divider {
	width: 1px;
	background: rgba(1, 104, 109, 0.18);
	align-self: stretch;
}

/* hero bird — shifted right so it sits past the headline & decor line */
.hero-bird {
	position: absolute;
	right: -4%;
	top: 9%;
	width: 720px;
	max-width: 60vw;
	z-index: 3; /* sit above blots so the bird stays legible */
	mix-blend-mode: multiply;
	opacity: 0.85;
	pointer-events: none;
	will-change: transform;
	filter: contrast(1.12);
}

.hero-stamp {
	position: absolute;
	right: 8%;
	bottom: 12%;
	width: 140px;
	height: 140px;
	z-index: 1;
	opacity: 0.7;
	pointer-events: none;
	animation: stamp-rotate 60s linear infinite;
}
@keyframes stamp-rotate {
	to {
		transform: rotate(360deg);
	}
}

.scroll-hint {
	position: absolute;
	left: 50%;
	bottom: 28px;
	transform: translateX(-50%);
	font-size: 11px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--teal-800);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	z-index: 3;
	opacity: 0.7;
}
.scroll-hint i {
	width: 1px;
	height: 40px;
	background: linear-gradient(to bottom, var(--teal-800), transparent);
	position: relative;
	display: block;
}
.scroll-hint i::after {
	content: "";
	position: absolute;
	width: 5px;
	height: 5px;
	background: var(--teal-800);
	border-radius: 50%;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	animation: scroll-dot 2s ease-in-out infinite;
}
@keyframes scroll-dot {
	0% {
		top: 0;
		opacity: 1;
	}
	100% {
		top: 30px;
		opacity: 0;
	}
}

/* ========================================================
   WATERCOLOR BLOTS (between sections)
   Painterly splashes generated by splashes.js
   ======================================================== */
.blot {
	position: absolute;
	pointer-events: none;
	z-index: 1;
	opacity: calc(0.85 * var(--bg-saturation));
	mix-blend-mode: multiply;
}
.blot svg {
	width: 100%;
	height: 100%;
	display: block;
	overflow: visible;
}
.blot-a {
	width: 440px;
	height: 250px;
	left: -60px;
	bottom: -30px;
}
.blot-b {
	width: 380px;
	height: 220px;
	right: 4%;
	bottom: -25px;
}
.blot-c {
	width: 480px;
	height: 270px;
	left: 4%;
	top: -25px;
}
.blot-d {
	width: 520px;
	height: 290px;
	right: -100px;
	top: -40px;
}
.blot-e {
	width: 360px;
	height: 210px;
	left: 28%;
	bottom: -20px;
}
.blot-f {
	width: 400px;
	height: 230px;
	right: 14%;
	top: -20px;
}

/* extra inter-section blot bands */
.blot-band {
	position: relative;
	width: 100%;
	height: 0;
	z-index: 4;
	pointer-events: none;
}
.blot-band .blot {
	position: absolute;
}
.blot-band-1 .blot {
	left: 8%;
	top: -120px;
	width: 380px;
	height: 220px;
}
.blot-band-2 .blot {
	right: 6%;
	top: -110px;
	width: 360px;
	height: 210px;
}
.blot-band-3 .blot {
	left: 36%;
	top: -100px;
	width: 320px;
	height: 190px;
}

/* ========================================================
   WAVE DIVIDERS
   ======================================================== */
.wave-div {
	position: relative;
	height: 80px;
	overflow: hidden;
}
.wave-div svg {
	width: 100%;
	height: 100%;
	display: block;
}

/* ========================================================
   SECTIONS (shared)
   ======================================================== */
.section {
	position: relative;
	padding: 30px 0;
	overflow: hidden;
}
.section-tint::before {
	content: "";
	position: absolute;
	inset: 0;
	/* background: linear-gradient(
		180deg,
		rgba(1, 104, 109, 0.04) 0%,
		rgba(44, 154, 160, 0.08) 50%,
		rgba(1, 104, 109, 0.04) 100%
	); */
	pointer-events: none;
}

.sec-head {
	margin-bottom: 56px;
	max-width: 720px;
	position: relative;
	z-index: 2;
}
.sec-head-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	max-width: none;
	gap: 32px;
	flex-wrap: wrap;
}
.sec-head-center {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
.sec-head-center .sec-eyebrow,
.sec-head-center .sec-title {
	display: block;
}
.sec-eyebrow {
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--teal-800);
	font-weight: 600;
	margin-bottom: 16px;
}
.sec-title {
	font-size: clamp(36px, 4.4vw, 64px);
	line-height: 1.05;
	letter-spacing: -0.03em;
	text-wrap: balance;
}
.sec-lede {
	margin-top: 20px;
	font-size: 17px;
	color: var(--ink-soft);
	line-height: 1.6;
	max-width: 620px;
	text-wrap: pretty;
}

.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--teal-800);
	font-weight: 500;
	font-size: 15px;
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s;
}
.link-arrow span {
	transition: transform 0.25s;
	display: inline-block;
}
.link-arrow:hover {
	border-bottom-color: var(--teal-800);
}
.link-arrow:hover span {
	transform: translateX(4px);
}

/* ========================================================
   ABOUT
   ======================================================== */
.about-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 24px;
	position: relative;
	z-index: 2;
}
.card {
	padding: 32px 28px;
	grid-column: span 3;
	position: relative;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}
.card:hover {
	transform: translateY(-3px);
	box-shadow: 0 30px 60px -30px rgba(1, 79, 83, 0.35);
}
.card-tall {
	grid-column: span 3;
	grid-row: span 2;
	display: flex;
	flex-direction: column;
}
.card-tall .card-line {
	margin-top: auto;
	height: 1px;
	background: linear-gradient(to right, var(--teal-800), transparent);
	margin-bottom: 0;
}
.card-num {
	font-family: "Cormorant Garamond", serif;
	font-style: italic;
	color: var(--teal-400);
	font-size: 22px;
	margin-bottom: 16px;
}
.card h3 {
	font-size: 24px;
	margin-bottom: 12px;
	line-height: 1.2;
}
.card p {
	color: var(--ink-soft);
	font-size: 15px;
	line-height: 1.6;
	margin: 0;
	text-wrap: pretty;
}
.card-accent {
	background: rgb(105 169 216);
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
}
.card-accent .card-num {
	color: rgba(234, 223, 203, 0.85);
}
.card-accent h3 {
	color: var(--white);
}
.card-accent p {
	color: rgba(255, 255, 255, 0.82);
}
.card-quote {
	background: rgba(234, 223, 203, 0.55);
	border-color: rgba(234, 223, 203, 0.7);
}
.card-quote .quote {
	font-family: "Cormorant Garamond", serif;
	font-style: italic;
	font-size: 26px;
	line-height: 1.3;
	color: var(--teal-900);
	margin: 0 0 16px 0;
	text-wrap: balance;
}
.card-quote .quote-by {
	font-size: 13px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--teal-800);
	opacity: 0.75;
}

.float-bird {
	position: absolute;
	pointer-events: none;
	mix-blend-mode: multiply;
	opacity: 0.55;
	z-index: 1;
	will-change: transform;
}
.float-bird-a {
	right: 4%;
	top: 8%;
	width: 240px;
	transform: rotate(-6deg);
}
.float-bird-b {
	left: -4%;
	bottom: 4%;
	width: 320px;
	opacity: 0.5;
	transform: rotate(5deg);
}

/* ========================================================
   PROGRAMS
   ======================================================== */
.programs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	position: relative;
	z-index: 2;
}
.program {
	padding: 32px 28px 24px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	transition: all 0.3s ease;
	cursor: pointer;
}
.program:hover {
	transform: translateY(-4px);
	box-shadow: 0 30px 60px -30px rgba(1, 79, 83, 0.4);
	/* background: rgba(255, 255, 255, 0.72); */
}
.program-tag {
	display: inline-block;
	align-self: flex-start;
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--teal-800);
	padding: 4px 10px;
	border: 1px solid rgba(1, 104, 109, 0.3);
	border-radius: 999px;
}
.program h3 {
	font-size: 22px;
	line-height: 1.2;
}
.program p {
	color: var(--ink-soft);
	font-size: 14.5px;
	line-height: 1.55;
	margin: 0;
	flex: 1;
}
.program-foot {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 8px;
	padding-top: 16px;
	border-top: 1px solid rgba(1, 104, 109, 0.12);
}
.program-len {
	font-size: 12px;
	letter-spacing: 0.05em;
	color: var(--ink-soft);
	text-transform: uppercase;
}
.arrow {
	font-size: 18px;
	color: var(--teal-800);
	transition: transform 0.3s;
}
.program:hover .arrow {
	transform: translateX(4px);
}

.program-accent {
	background: #69a9d8;
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.18);
}
.program-accent h3,
.program-accent .arrow {
	color: var(--white);
}
.program-accent p {
	color: rgba(255, 255, 255, 0.82);
}
.program-accent .program-tag {
	color: rgba(234, 223, 203, 0.95);
	border-color: rgba(234, 223, 203, 0.4);
}
.program-accent .program-len {
	color: rgba(234, 223, 203, 0.8);
}
.program-accent .program-foot {
	border-top-color: rgba(255, 255, 255, 0.18);
}

/* ========================================================
   GALLERY
   ======================================================== */
.gallery {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-auto-rows: 160px;
	gap: 16px;
	position: relative;
	z-index: 2;
}
.gal {
	padding: 14px;
	overflow: hidden;
	transition: transform 0.35s ease;
	cursor: pointer;
}
.gal:hover {
	transform: translateY(-4px);
}
.gal-img {
	width: 100%;
	height: 100%;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
	background: var(--paper-2);
}
.gal-img svg {
	width: 100%;
	height: 100%;
}
.gal-img::after {
	content: attr(data-label);
	position: absolute;
	left: 12px;
	bottom: 12px;
	background: rgba(255, 255, 255, 0.92);
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 11px;
	color: var(--teal-900);
	opacity: 1;
	transform: translateY(4px);
	transition: all 0.3s ease;
	font-weight: 500;
}
.gal:hover .gal-img::after {
	opacity: 1;
	transform: translateY(0);
}

.gal-1 {
	grid-column: span 2;
	grid-row: span 3;
}
.gal-2 {
	grid-column: span 4;
	grid-row: span 2;
}
.gal-3 {
	grid-column: span 2;
	grid-row: span 2;
}
.gal-4 {
	grid-column: span 2;
	grid-row: span 3;
}
.gal-5 {
	grid-column: span 4;
	grid-row: span 2;
}

/* ========================================================
   TEACHERS
   ======================================================== */
.teachers {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
	position: relative;
	z-index: 2;
}
.teacher {
	padding: 24px 22px 26px;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}
.teacher:hover {
	transform: translateY(-4px);
	box-shadow: 0 30px 60px -30px rgba(1, 79, 83, 0.4);
}
.teacher-photo {
	width: 100%;
	aspect-ratio: 1 / 1.05;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--teal-600) 0%, var(--teal-900) 100%);
	margin-bottom: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(234, 223, 203, 0.9);
	font-family: "Cormorant Garamond", serif;
	font-style: italic;
	font-size: 64px;
	position: relative;
	overflow: hidden;
}
.teacher-photo::before {
	content: attr(data-init);
}
.teacher-photo::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(
			circle at 70% 30%,
			rgba(255, 255, 255, 0.18),
			transparent 50%
		),
		radial-gradient(circle at 20% 80%, rgba(85, 174, 235, 0.4), transparent 50%);
	mix-blend-mode: overlay;
}
.teacher h3 {
	font-size: 19px;
	margin-bottom: 4px;
}
.teacher-role {
	font-size: 13px;
	color: var(--teal-800);
	margin-bottom: 12px;
	font-style: italic;
	font-family: "Cormorant Garamond", serif;
	font-size: 17px;
}
.teacher p {
	margin: 0;
	font-size: 14px;
	color: var(--ink-soft);
	line-height: 1.55;
}

/* ========================================================
   ACHIEVEMENTS
   ======================================================== */
.achievements {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
	list-style: none;
	padding: 0;
	margin: 0;
	position: relative;
	z-index: 2;
}
.ach {
	padding: 28px 28px 28px 86px;
	position: relative;
	transition: transform 0.25s;
}
.ach:hover {
	transform: translateY(-2px);
}
.ach-year {
	position: absolute;
	left: 28px;
	top: 28px;
	font-family: "Cormorant Garamond", serif;
	font-style: italic;
	font-weight: 500;
	font-size: 32px;
	color: var(--teal-400);
	line-height: 1;
}
.ach h4 {
	font-size: 17px;
	margin-bottom: 6px;
	line-height: 1.3;
}
.ach p {
	font-size: 14px;
	color: var(--ink-soft);
	margin: 0;
	line-height: 1.55;
}

/* ========================================================
   FAQ
   ======================================================== */
.faq-container {
	max-width: 820px;
}
.faq {
	padding: 8px 32px;
}
.faq details {
	border-bottom: 1px solid rgba(1, 104, 109, 0.12);
	padding: 22px 0;
}
.faq details:last-child {
	border-bottom: 0;
}
.faq summary {
	font-family: "Manrope", sans-serif;
	font-weight: 600;
	font-size: 17px;
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	color: var(--ink);
	transition: color 0.2s;
}
.faq summary::-webkit-details-marker {
	display: none;
}
.faq summary::after {
	content: "+";
	font-family: "Manrope", sans-serif;
	font-weight: 300;
	font-size: 28px;
	color: var(--teal-800);
	transition: transform 0.3s ease;
	line-height: 0.8;
	flex-shrink: 0;
}
.faq details[open] summary::after {
	transform: rotate(45deg);
}
.faq summary:hover {
	color: var(--teal-800);
}
.faq-body {
	margin-top: 14px;
	font-size: 15px;
	line-height: 1.65;
	color: var(--ink-soft);
	max-width: 680px;
	text-wrap: pretty;
}

/* ========================================================
   ENROLL
   ======================================================== */
.enroll {
	padding: 64px 56px 56px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.enroll-bird {
	position: absolute;
	right: -40px;
	top: -60px;
	width: 320px;
	opacity: 0.18;
	pointer-events: none;
	transform: rotate(8deg);
}
.enroll-bird img {
	mix-blend-mode: multiply;
}
.enroll-eyebrow {
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--teal-800);
	font-weight: 600;
	margin-bottom: 18px;
}
.enroll-title {
	font-size: clamp(36px, 4vw, 56px);
	line-height: 1.05;
	letter-spacing: -0.03em;
	margin-bottom: 18px;
}
.enroll-lede {
	font-size: 17px;
	color: var(--ink-soft);
	line-height: 1.6;
	max-width: 560px;
	margin: 0 auto 40px;
	text-wrap: pretty;
}
.enroll-form {
	display: grid;
	/* grid-template-columns: 1fr 1fr 2fr auto; */
	gap: 14px;
	max-width: 760px;
	margin: 0 auto;
	position: relative;
	text-align: left;
}
.enroll-form .field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 12px;
	letter-spacing: 0.05em;
	color: var(--teal-800);
	font-weight: 500;
}
.enroll-form input {
	padding: 14px 16px;
	border: 1px solid rgba(1, 104, 109, 0.2);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.7);
	font-family: "Inter", sans-serif;
	font-size: 15px;
	color: var(--ink);
	/* transition:
		border-color 0.2s,
		background 0.2s; */
}
/* .enroll-form input:focus {
	outline: none;
	border-color: var(--teal-800);
	background: var(--white);
} */
.enroll-form .btn {
	align-self: end;
	height: 50px;
}
.enroll-sent {
	position: absolute;
	inset: 0;
	background: var(--teal-800);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	font-weight: 500;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.35s;
}
.enroll-form.sent .enroll-sent {
	opacity: 1;
}
.enroll-foot {
	margin-top: 24px;
	font-size: 14px;
	color: var(--ink-soft);
}
.enroll-foot a {
	color: var(--teal-800);
	font-weight: 600;
	border-bottom: 1px solid rgba(1, 104, 109, 0.3);
}

/* ========================================================
   FOOTER
   ======================================================== */
.site-footer {
	background: var(--teal-900);
	color: rgba(234, 223, 203, 0.8);
	padding: 80px 0 24px;
	margin-top: 60px;
	position: relative;
	overflow: hidden;
}
.site-footer::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(60% 60% at 90% 0%, rgba(44, 154, 160, 0.25), transparent),
		radial-gradient(60% 60% at 0% 100%, rgba(1, 104, 109, 0.4), transparent);
	pointer-events: none;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 48px;
	position: relative;
	z-index: 2;
	padding-bottom: 60px;
	border-bottom: 1px solid rgba(234, 223, 203, 0.15);
}
.brand-dark .brand-title {
	color: var(--beige);
}
.brand-dark .brand-sub {
	color: rgba(234, 223, 203, 0.6);
}
.footer-tag {
	margin-top: 24px;
	font-family: "Cormorant Garamond", serif;
	font-style: italic;
	font-size: 22px;
	line-height: 1.3;
	color: rgba(234, 223, 203, 0.9);
}
.footer-col h5 {
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(234, 223, 203, 0.5);
	font-weight: 500;
	margin-bottom: 18px;
}
.footer-col p {
	margin: 0 0 10px;
	font-size: 14.5px;
	color: rgba(234, 223, 203, 0.85);
	line-height: 1.55;
}
.footer-col a:hover {
	color: var(--white);
}
.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 24px;
	font-size: 12.5px;
	letter-spacing: 0.04em;
	color: rgba(234, 223, 203, 0.55);
	position: relative;
	z-index: 2;
}

/* ========================================================
   FLOATING BIRDS LAYER (parallax)
   ======================================================== */
.birds {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: -1;
}

/* ========================================================
   RESPONSIVE
   ======================================================== */
@media (max-width: 1080px) {
	.about-grid {
		grid-template-columns: repeat(4, 1fr);
	}
	.card,
	.card-tall {
		grid-column: span 2;
		grid-row: auto;
	}
	.programs {
		grid-template-columns: repeat(2, 1fr);
	}
	.teachers {
		grid-template-columns: repeat(2, 1fr);
	}
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
	.site-nav {
		display: none;
	}
	.header-cta {
		display: none;
	}
	.burger {
		display: inline-flex;
	}
}
@media (max-width: 720px) {
	.container {
		padding: 0 20px;
	}
	.hero {
		padding-top: 110px;
	}
	.hero-bird {
		width: 380px;
		max-width: 80vw;
		opacity: 0.5;
		top: auto;
		bottom: 20%;
		/* right: -20%; */
	}
	.about-grid,
	.programs,
	.teachers,
	.achievements {
		grid-template-columns: 1fr;
	}
	.gallery {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: 120px;
	}
	.gal-1,
	.gal-2,
	.gal-3,
	.gal-4,
	.gal-5 {
		grid-column: span 2;
		grid-row: span 2;
	}
	.enroll-form {
		grid-template-columns: 1fr;
	}
	.enroll {
		padding: 40px 24px;
	}
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}
	.footer-bottom {
		flex-direction: column;
		gap: 8px;
	}
	.hero-meta {
		gap: 16px;
	}
	.meta-num {
		font-size: 40px;
	}
	.meta-divider {
		display: none;
	}
}
