*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
:root {
 --sky: #4BBFE0;
 --sky-dark: #2FA8CC;
 --sun: #FFB830;
 --sun-light: #FFD57A;
 --grass: #5AC27A;
 --grass-light: #A8E4BC;
 --blush: #FF8FA3;
 --lavender: #B39DDB;
 --cream: #FFF8F0;
 --white: #FFFFFF;
 --text-dark: #2C3E50;
 --text-mid: #546E7A;
 --text-light: #90A4AE;
 --shadow: 0 4px 24px rgba(75,191,224,0.12);
 --radius: 18px;
 --radius-sm: 10px;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: 'Nunito', sans-serif;
	background: var(--cream);
	color: var(--text-dark);
	line-height: 1.7;
}
/* ══ NAV ══ */
nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: rgba(255,255,255,0.97);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 20px rgba(75,191,224,0.15);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 5%;
	height: 90px;
}
.logo {
	font-size: 34px;
	position: relative;
	margin: 0 !important;
}
.logo a {
	background-image: url(images/logo.png);
	background-repeat: no-repeat;
	display: block;
	float: left;
	width: 120px;
	height: 80px;
	margin-top: 0px;
	text-indent: -9999px;
}
.nav-links {
	display: flex;
	gap: 4px;
	list-style: none;
}
.nav-links a {
	text-decoration: none;
	color: var(--text-dark);
	font-weight: 700;
	font-size: 0.87rem;
	padding: 8px 14px;
	border-radius: 30px;
	transition: all 0.2s;
	letter-spacing: 0.02em;
}
.nav-links a:hover {
	background: rgba(75,191,224,0.12);
	color: var(--sky-dark);
}
.nav-links a.active {
	background: var(--sky);
	color: white;
}
.nav-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 1.6rem;
	color: var(--sky-dark);
}
/* ══ PAGE HEADER (inner pages) ══ */
.page-header {
	margin-top: 70px;
	padding: 60px 5% 50px;
	background: linear-gradient(135deg, var(--sky) 0%, var(--sky-dark) 60%, var(--grass) 100%);
	text-align: center;
	position: relative;
	overflow: hidden;
}
.page-header::before {
	content: attr(data-emoji);
	position: absolute;
	font-size: 180px;
	opacity: 0.1;
	right: 3%;
	top: 50%;
	transform: translateY(-50%);
}
.page-header .breadcrumb {
	font-size: 0.78rem;
	color: rgba(255,255,255,0.75);
	margin-bottom: 10px;
	font-weight: 600;
}
.page-header .breadcrumb a {
	color: rgba(255,255,255,0.75);
	text-decoration: none;
}
.page-header .breadcrumb a:hover {
	color: white;
}
.page-header h1 {
	font-family: 'Quicksand', sans-serif;
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	font-weight: 700;
	color: white;
	text-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.page-header p {
	color: rgba(255,255,255,0.88);
	font-size: 1rem;
	margin-top: 10px;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}
/* ══ SECTIONS ══ */
section {
	padding: 70px 5%;
}
.section-inner {
	max-width: 1080px;
	margin: 0 auto;
}
.section-label {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--sky-dark);
	margin-bottom: 12px;
}
h2.section-title {
	font-family: 'Quicksand', sans-serif;
	font-size: clamp(1.6rem, 3vw, 2.3rem);
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 14px;
}
.section-lead {
	color: var(--text-mid);
	font-size: 0.97rem;
	margin-bottom: 44px;
}
/* ══ BUTTONS ══ */
.btn-primary {
	display: inline-block;
	background: var(--sky);
	color: white;
	font-weight: 800;
	padding: 13px 30px;
	border-radius: 30px;
	text-decoration: none;
	transition: all 0.2s;
	font-size: 0.92rem;
}
.btn-primary:hover {
	background: var(--sky-dark);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(75,191,224,0.4);
}
.btn-outline {
	display: inline-block;
	border: 2px solid var(--sky);
	color: var(--sky);
	font-weight: 800;
	padding: 11px 28px;
	border-radius: 30px;
	text-decoration: none;
	transition: all 0.2s;
	font-size: 0.92rem;
}
.btn-outline:hover {
	background: var(--sky);
	color: white;
}
/* ══ FOOTER ══ */
footer {
	background: var(--text-dark);
	color: rgba(255,255,255,0.7);
	padding: 52px 5% 28px;
	text-align: center;
}
.footer-top {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 40px;
	max-width: 1000px;
	margin: 0 auto 40px;
	text-align: left;
}
.footer-col h4 {
	color: white;
	font-family: 'Quicksand', sans-serif;
	font-weight: 700;
	font-size: 0.95rem;
	margin-bottom: 14px;
}
.footer-col p, .footer-col a {
	font-size: 0.85rem;
	color: rgba(255,255,255,0.6);
	text-decoration: none;
	display: block;
	margin-bottom: 7px;
	line-height: 1.6;
	transition: color 0.2s;
}
.footer-col a:hover {
	color: var(--sun);
}
.footer-logo-col {
	text-align: left;
}
.footer-logo-text {
	font-family: 'Quicksand', sans-serif;
	font-size: 1.35rem;
	font-weight: 700;
	color: white;
}
.footer-logo-text span {
	color: var(--sun);
}
.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.1);
	padding-top: 22px;
	font-size: 0.78rem;
	color: rgba(255,255,255,0.4);
}
.footer-bottom a {
	color: var(--sun);
	text-decoration: none;
}
.footer-bottom a:hover {
	color: var(--sun-light);
	text-decoration: none;
}
/* ── HERO SLIDER ── */
.hero {
	margin-top: 70px;
	position: relative;
	height: 650px;
	overflow: hidden;
}
.slides {
	display: flex;
	width: 400%;
	height: 100%;
	transition: transform 0.7s cubic-bezier(.77, 0, .18, 1);
}
.slide {
	width: 25%;
	height: 100%;
	position: relative;
	display: flex;
	align-items: center;
}
.slide-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}
.slide-bg img {
	width:100%;
	height:auto;
}
.slide-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 65%, transparent 100%);
}
.slide-1 .slide-bg {
	background: linear-gradient(135deg, #4BBFE0, #A8E4BC 50%, #FFD57A);
}
.slide-2 .slide-bg {
	background: linear-gradient(135deg, #FFB830, #FF8FA3 50%, #B39DDB);
}
.slide-3 .slide-bg {
	background: linear-gradient(135deg, #5AC27A, #4BBFE0 55%, #B39DDB);
}
.slide-4 .slide-bg {
	background: linear-gradient(135deg, #B39DDB, #FF8FA3 50%, #FFB830);
}
.slide-emoji {
	position: absolute;
	font-size: clamp(110px, 18vw, 200px);
	opacity: 0.15;
	right: 4%;
	bottom: -15px;
	pointer-events: none;
}
.slide-content {
	position: relative;
	z-index: 2;
	padding: 0 8%;
}
.slide-eyebrow {
	display: inline-block;
	background: var(--sun);
	color: white;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 5px 14px;
	border-radius: 30px;
	margin-bottom: 14px;
}
.slide-content h2 {
	font-family: 'Quicksand', sans-serif;
	font-size: clamp(1.9rem, 3.8vw, 2.9rem);
	font-weight: 700;
	color: white;
	line-height: 1.2;
	margin-bottom: 14px;
	text-shadow: 0 2px 14px rgba(0,0,0,0.2);
}
.slide-content p {
	color: rgba(255,255,255,0.9);
	font-size: 1rem;
	margin-bottom: 26px;
}
.btn-hero {
	display: inline-block;
	background: white;
	color: var(--sky-dark);
	font-weight: 800;
	font-size: 0.9rem;
	padding: 12px 28px;
	border-radius: 30px;
	text-decoration: none;
	transition: all 0.2s;
	box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-hero:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 28px rgba(0,0,0,0.22);
}
.slider-dots {
	position: absolute;
	bottom: 22px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 5;
}
.dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255,255,255,0.45);
	cursor: pointer;
	border: none;
	transition: all 0.3s;
}
.dot.active {
	background: white;
	transform: scale(1.35);
}
.slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	background: rgba(255,255,255,0.22);
	border: none;
	border-radius: 50%;
	width: 46px;
	height: 46px;
	font-size: 1.4rem;
	color: white;
	cursor: pointer;
	transition: background 0.2s;
	backdrop-filter: blur(4px);
}
.slider-btn:hover {
	background: rgba(255,255,255,0.45);
}
.slider-prev {
	left: 20px;
}
.slider-next {
	right: 20px;
}
/* ── QUICK BOXES ── */
.quick-wrap {
	background: white;
	padding: 0 5% 60px;
}
.quick-boxes {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 1080px;
	margin: 0 auto;
	transform: translateY(-50px);
}
.qbox {
	background: white;
	border-radius: var(--radius);
	padding: 32px 24px;
	text-align: center;
	box-shadow: 0 6px 32px rgba(75,191,224,0.14);
	transition: transform 0.25s, box-shadow 0.25s;
	text-decoration: none;
	color: inherit;
	display: block;
}
.qbox:hover {
	transform: translateY(-6px);
	box-shadow: 0 14px 40px rgba(75,191,224,0.22);
}
.qbox-icon {
	font-size: 2.8rem;
	margin-bottom: 14px;
	display: block;
}
.qbox h3 {
	font-family: 'Quicksand', sans-serif;
	font-weight: 700;
	font-size: 1rem;
	color: var(--sky-dark);
	margin-bottom: 10px;
}
.qbox p {
	font-size: 0.86rem;
	color: var(--text-mid);
	margin-bottom: 14px;
}
.qbox-link {
	color: var(--sky-dark);
	font-weight: 800;
	font-size: 0.83rem;
}
/* ── ABOUT ── */
#about {
	background: white;
	padding-top: 0;
}
.about-grid {
	max-width: 1080px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}
.about-visual {
	border-radius: var(--radius);
	overflow: hidden;
	background: linear-gradient(135deg, var(--sky) 0%, var(--grass-light) 100%);
	min-height: 380px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.about-emojis {
	font-size: 5rem;
	text-align: center;
	line-height: 1.5;
}
.about-badge {
	position: absolute;
	bottom: 20px;
	right: 20px;
	background: white;
	border-radius: 14px;
	padding: 14px 18px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.about-badge strong {
	display: block;
	font-family: 'Quicksand', sans-serif;
	font-size: 2rem;
	color: var(--sky-dark);
}
.about-badge span {
	font-size: 0.78rem;
	color: var(--text-mid);
}
.about-stat-row {
	display: flex;
	gap: 18px;
	margin-bottom: 28px;
}
.stat {
	background: var(--cream);
	border-radius: var(--radius-sm);
	padding: 16px 18px;
	flex: 1;
}
.stat a {
	color: var(--sky-dark);
	font-weight:600;
	text-decoration:none;
}
.stat a:hover {
	text-decoration: underline;
}
.stat strong {
	font-family: 'Quicksand', sans-serif;
	font-size: 1.5rem;
	color: var(--sky-dark);
	display: block;
}
.stat span {
	font-size: 0.78rem;
	color: var(--text-mid);
}
/* ── AREAS ── */
#areas {
	background: var(--cream);
}
.areas-inner {
	max-width: 1080px;
	margin: 0 auto;
}
.areas-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 16px;
}
.area-pill {
	background: white;
	border-radius: 60px;
	padding: 14px 20px;
	text-align: center;
	box-shadow: var(--shadow);
	font-weight: 700;
	font-size: 0.9rem;
	color: var(--sky-dark);
	border: 2px solid transparent;
	transition: all 0.2s;
}
.area-pill:hover {
	border-color: var(--sky);
	transform: translateY(-2px);
}
.area-pill span {
	display: block;
	font-size: 1.4rem;
	margin-bottom: 4px;
}
/* SERVICES GRID */
#services {
	background: white;
}
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
}
.scard {
	background: var(--cream);
	border-radius: var(--radius);
	padding: 30px 26px;
	box-shadow: var(--shadow);
	transition: transform 0.25s, box-shadow 0.25s;
	border-top: 4px solid var(--sky);
}
.scard:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 36px rgba(75,191,224,0.18);
}
.scard-icon {
	font-size: 2.6rem;
	margin-bottom: 14px;
}
.scard h3 {
	font-family: 'Quicksand', sans-serif;
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--text-dark);
	margin-bottom: 10px;
}
.scard p {
	font-size: 0.88rem;
	color: var(--text-mid);
	line-height: 1.7;
}
.scard-tag {
	display: inline-block;
	margin-top: 14px;
	font-size: 0.72rem;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 20px;
	color: white;
}
.scard:nth-child(1) {
	border-color: var(--grass);
}
.scard:nth-child(2) {
	border-color: var(--sky);
}
.scard:nth-child(3) {
	border-color: var(--blush);
}
.scard:nth-child(4) {
	border-color: var(--lavender);
}
.scard:nth-child(5) {
	border-color: var(--sun);
}
.scard:nth-child(6) {
	border-color: var(--sky-dark);
}
.scard:nth-child(7) {
	border-color: var(--grass);
}
.scard:nth-child(8) {
	border-color: var(--blush);
}
/* TIMETABLE */
#timetable {
	background: var(--cream);
}
.tt-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}
.tt-card {
	background: white;
	border-radius: var(--radius);
	padding: 28px 26px;
	box-shadow: var(--shadow);
	border-left: 5px solid var(--sky);
}
.tt-card:last-child {
	border-left-color: var(--grass);
}
.tt-card h3 {
	font-family: 'Quicksand', sans-serif;
	font-weight: 700;
	font-size: 1rem;
	color: var(--sky-dark);
	margin-bottom: 14px;
}
.tt-card:last-child h3 {
	color: var(--grass);
}
.tt-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.87rem;
	padding: 10px 0;
	border-bottom: 1px solid #f0f0f0;
	color: var(--text-mid);
}
.tt-row:last-child {
	border: none;
}
.tt-row strong {
	color: var(--text-dark);
	font-weight: 700;
}
/* FEES */
#fees {
	background: white;
}
.fees-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
}
.fee-card {
	background: linear-gradient(135deg, var(--sky) 0%, var(--sky-dark) 100%);
	border-radius: var(--radius);
	padding: 28px 22px;
	text-align: center;
	color: white;
}
.fee-card.alt {
	background: linear-gradient(135deg, var(--grass) 0%, #3DAA64 100%);
}
.fee-card.alt2 {
	background: linear-gradient(135deg, var(--lavender) 0%, #9575CD 100%);
}
.fee-card.alt3 {
	background: linear-gradient(135deg, var(--sun) 0%, #E6A000 100%);
}
.fee-label {
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	opacity: 0.85;
	margin-bottom: 8px;
}
.fee-age {
	font-size: 0.88rem;
	opacity: 0.9;
	margin-bottom: 6px;
}
.fee-name {
	font-family: 'Quicksand', sans-serif;
	font-weight: 700;
	font-size: 1.1rem;
	margin-bottom: 14px;
}
.fee-note {
	font-size: 0.78rem;
	opacity: 0.8;
	margin-top: 12px;
}
/* ACTIVITIES */
#activities {
	background: white;
}
.act-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
	gap: 28px;
}
.act-card {
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: transform 0.25s, box-shadow 0.25s;
	background: white;
}
.act-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 14px 40px rgba(75,191,224,0.2);
}
.act-thumb {
	height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 4.5rem;
	position: relative;
	overflow: hidden;
}
.act-thumb-label {
	position: absolute;
	bottom: 12px;
	right: 14px;
	background: rgba(255,255,255,0.9);
	border-radius: 20px;
	padding: 4px 12px;
	font-size: 0.73rem;
	font-weight: 800;
	color: var(--text-dark);
}
.act-body {
	padding: 22px 24px;
}
.act-body h3 {
	font-family: 'Quicksand', sans-serif;
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--text-dark);
	margin-bottom: 10px;
}
.act-body p {
	font-size: 0.87rem;
	color: var(--text-mid);
	line-height: 1.7;
	margin-bottom: 14px;
}
.act-ages {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}
.age-tag {
	background: var(--cream);
	border-radius: 20px;
	padding: 4px 10px;
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--sky-dark);
}
/* PHILOSOPHY */
#philosophy {
	background: var(--cream);
}
.phil-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 22px;
}
.phil-card {
	background: white;
	border-radius: var(--radius);
	padding: 28px 22px;
	text-align: center;
}
.phil-card .phil-icon {
	font-size: 2.5rem;
	margin-bottom: 14px;
}
.phil-card h3 {
	font-family: 'Quicksand', sans-serif;
	font-weight: 700;
	font-size: 0.97rem;
	color: var(--text-dark);
	margin-bottom: 8px;
}
.phil-card p {
	font-size: 0.84rem;
	color: var(--text-mid);
}
/* FILTER TABS */
.filter-bar {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}
.filter-btn {
	padding: 9px 20px;
	border-radius: 30px;
	border: 2px solid #e0e8ef;
	background: white;
	color: var(--text-mid);
	font-family: inherit;
	font-weight: 700;
	font-size: 0.85rem;
	cursor: pointer;
	transition: all 0.2s;
}
.filter-btn:hover {
	border-color: var(--sky);
	color: var(--sky-dark);
}
.filter-btn.active {
	background: var(--sky);
	border-color: var(--sky);
	color: white;
}
/* GALLERY GRID */
#gallery {
	background: white;
}
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.gallery-item {
	border-radius: var(--radius-sm);
	overflow: hidden;
	background: var(--cream);
	cursor: pointer;
	position: relative;
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.25s, box-shadow 0.25s;
	box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.gallery-item:hover {
	transform: scale(1.03);
	box-shadow: 0 8px 28px rgba(75,191,224,0.2);
}
.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.gallery-item.placeholder {
	border: 2px dashed #d0dde6;
	background: #f7fbff;
	flex-direction: column;
	gap: 8px;
	cursor: default;
}
.gallery-item.placeholder:hover {
	transform: none;
	box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.placeholder-icon {
	font-size: 2rem;
	opacity: 0.35;
}
.placeholder-text {
	font-size: 0.75rem;
	color: var(--text-light);
	font-weight: 700;
	text-align: center;
	padding: 0 10px;
}
/* Span some items for visual variety */
.gallery-item.wide {
	grid-column: span 2;
	aspect-ratio: 2/1;
}
.gallery-item.tall {
	grid-row: span 2;
	aspect-ratio: 1/2;
}
/* CATEGORY SECTIONS */
.cat-section {
	margin-bottom: 60px;
}
.cat-section:last-child {
	margin-bottom: 0;
}
.cat-title {
	font-family: 'Quicksand', sans-serif;
	font-weight: 700;
	font-size: 1.2rem;
	color: var(--text-dark);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.cat-title::after {
	content: '';
	flex: 1;
	height: 2px;
	background: linear-gradient(to right, var(--sky), transparent);
}
/* CONTACT LAYOUT */

#contact {
	background: white;
}
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 60px;
	align-items: start;
}
/* INFO SIDE */
.cinfo-blocks {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 32px;
}
.cinfo-block {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	background: var(--cream);
	border-radius: var(--radius-sm);
	padding: 18px 20px;
}
.cinfo-icon-wrap {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--sky), var(--sky-dark));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	flex-shrink: 0;
}
.cinfo-text strong {
	display: block;
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--text-light);
	margin-bottom: 3px;
}
.cinfo-text span, .cinfo-text a {
	font-size: 0.96rem;
	color: var(--text-dark);
	text-decoration: none;
	line-height: 1.6;
}
.cinfo-text a:hover {
	color: var(--sky);
}
.map-wrap {
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	margin-bottom:30px;
}
.map-wrap iframe {
	width: 100%;
	height: 260px;
	border: none;
	display: block;
}
/* FAQ */
#faq {
	background: var(--cream);
}
.faq-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.faq-item {
	background: white;
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow);
	overflow: hidden;
}
.faq-q {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 22px;
	cursor: pointer;
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--text-dark);
}
.faq-q:hover {
	color: var(--sky-dark);
}
.faq-toggle {
	font-size: 1.3rem;
	color: var(--sky);
	transition: transform 0.3s;
	flex-shrink: 0;
}
.faq-a {
	padding: 0 22px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease, padding 0.3s;
	font-size: 0.88rem;
	color: var(--text-mid);
	line-height: 1.8;
}
.faq-item.open .faq-a {
	max-height: 200px;
	padding: 0 22px 18px;
}
.faq-item.open .faq-toggle {
	transform: rotate(45deg);
}
/* LIGHTBOX */
.lightbox {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.88);
	z-index: 9999;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.lightbox.open {
	display: flex;
}
.lightbox img {
	max-width: 90vw;
	max-height: 85vh;
	border-radius: var(--radius);
	box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
	position: absolute;
	top: 20px;
	right: 24px;
	background: none;
	border: none;
	color: white;
	font-size: 2.2rem;
	cursor: pointer;
	line-height: 1;
}
.lightbox-prev, .lightbox-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255,255,255,0.15);
	border: none;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	color: white;
	font-size: 1.5rem;
	cursor: pointer;
	transition: background 0.2s;
}
.lightbox-prev:hover, .lightbox-next:hover {
	background: rgba(255,255,255,0.3);
}
.lightbox-prev {
	left: 20px;
}
.lightbox-next {
	right: 20px;
}
/* UPLOAD NOTE */
.upload-note {
	background: linear-gradient(135deg, #e8f7ff, #f0fff7);
	border: 2px dashed var(--sky);
	border-radius: var(--radius);
	padding: 28px;
	text-align: center;
	margin-bottom: 40px;
}
.upload-note h3 {
	font-family: 'Quicksand', sans-serif;
	font-weight: 700;
	color: var(--sky-dark);
	margin-bottom: 8px;
}
.upload-note p {
	font-size: 0.88rem;
	color: var(--text-mid);
}
/* ══ MOBILE ══ */
 @media (max-width: 768px) {
.gallery-grid {
	grid-template-columns: repeat(2, 1fr);
}
.gallery-item.wide {
	grid-column: span 2;
}
.gallery-item.tall {
	grid-row: span 1;
	aspect-ratio: 1;
}
.schedule-table {
	font-size: 0.8rem;
}
.schedule-table td, .schedule-table th {
	padding: 10px 10px;
}
.tt-grid {
	grid-template-columns: 1fr;
}
.quick-boxes {
	grid-template-columns: 1fr;
	transform: translateY(0);
	margin-top: 24px;
}
.quick-wrap {
	padding-bottom: 40px;
}
.about-grid {
	grid-template-columns: 1fr;
	gap: 32px;
}
.about-stat-row {
	flex-direction: column;
}
.hero {
	height: 440px;
}
.nav-links {
	display: none;
	flex-direction: column;
	position: absolute;
	top: 70px;
	left: 0;
	width: 100%;
	background: white;
	padding: 16px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.nav-links.open {
	display: flex;
}
.nav-toggle {
	display: block;
}
.footer-top {
	grid-template-columns: 1fr;
	gap: 24px;
	text-align: center;
}
.footer-logo-col {
	text-align: center;
}
.contact-grid {
	grid-template-columns: 1fr;
	gap: 36px;
}
.form-row {
	grid-template-columns: 1fr;
}
.form-card {
	padding: 24px 20px;
}
}
 @media (max-width: 480px) {
.gallery-grid {
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}
}