* { box-sizing: border-box; }

:root {
	--navy:        #16324a;
	--navy-dark:   #0b1e2d;
	--coral:       #ff7a59;
	--coral-light: #ffb199;
	--cream:       #fbf7f1;
	--warm-gray:   #6b6259;
	--light-gray:  #e8e1d8;
}

/* ─── Base ──────────────────────────────────────────────────────────────── */

body {
	margin: 0;
	background: var(--cream);
	color: var(--navy-dark);
	font-family:
		ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto,
		Helvetica, Arial, sans-serif;
	line-height: 1.6;
}

a { color: inherit; text-decoration-thickness: from-font; }

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

h1, h2, h3 {
	font-weight: 700;
	letter-spacing: -.02em;
	line-height: 1.2;
	margin: 0 0 .5em;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); }

p { margin: 0 0 1em; }

/* ─── Nav ───────────────────────────────────────────────────────────────── */

nav.site-nav {
	position: absolute;
	top: 0; left: 0; right: 0;
	z-index: 10;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5em;

	padding: 1.5em 2.5em;
}

nav.site-nav a.brand {
	color: #fff;
	font-weight: 700;
	font-size: 1.1rem;
	letter-spacing: .02em;
	text-decoration: none;
}

nav.site-nav ul {
	list-style: none;
	margin: 0; padding: 0;
	display: flex;
	align-items: center;
	gap: 2em;
}

nav.site-nav ul.lang-switch { gap: .75em; }

nav.site-nav ul a {
	color: rgba(255,255,255,.8);
	font-size: .9rem;
	font-weight: 500;
	text-decoration: none;
	letter-spacing: .04em;
	transition: color .15s;
}

nav.site-nav ul a:hover { color: var(--coral-light); }

nav.site-nav .cta-nav {
	color: #fff;
	background: var(--coral);
	padding: .5em 1.25em;
	border-radius: 2px;
	text-transform: none;
}

nav.site-nav .cta-nav:hover { background: var(--coral-light); color: var(--navy-dark); }

nav.site-nav ul.lang-switch a {
	text-transform: uppercase;
	font-size: .8rem;
	font-weight: 700;
	letter-spacing: .06em;
	border: 1px solid rgba(255,255,255,.35);
	padding: .3em .7em;
	border-radius: 2px;
}

nav.site-nav ul.lang-switch a:hover { border-color: var(--coral-light); }

/* ─── Hero ──────────────────────────────────────────────────────────────── */

.hero {
	position: relative;
	min-height: 100svh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	background: var(--navy-dark);
}

.hero-bg {
	position: absolute;
	inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(11,30,45,.2) 0%,
		rgba(11,30,45,.45) 60%,
		rgba(11,30,45,.85) 100%
	);
}

.hero-content {
	position: relative;
	z-index: 1;
	color: #fff;
	padding: 2em 1.5em;
	max-width: 44em;
}

.eyebrow {
	display: block;
	color: var(--coral-light);
	font-size: .8rem;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	margin-bottom: 1em;
}

.hero-content h1 {
	color: #fff;
	margin-bottom: .5em;
}

.hero-content .tagline {
	font-size: 1.15rem;
	color: rgba(255,255,255,.8);
	margin-bottom: 2em;
}

.hero-divider {
	width: 3em;
	height: 1px;
	background: var(--coral);
	margin: 0 auto 1.5em;
}

/* ─── CTA ───────────────────────────────────────────────────────────────── */

.cta {
	display: inline-block;
	text-decoration: none;
	font-weight: 600;
	font-size: .95rem;
	padding: .9em 2.2em;
	border-radius: 3px;
	transition: background .2s, color .2s, border-color .2s;
}

.cta-primary {
	background: var(--coral);
	color: #fff;
}

.cta-primary:hover { background: #ff6640; }

.cta-outline {
	border: 1px solid rgba(255,255,255,.5);
	color: #fff;
}

.cta-outline:hover {
	border-color: #fff;
	background: rgba(255,255,255,.1);
}

.hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 1em;
	justify-content: center;
}

/* ─── Section wrapper ───────────────────────────────────────────────────── */

.section {
	padding: 5em 2em;
	max-width: 72em;
	margin: 0 auto;
}

.section-header {
	text-align: center;
	margin-bottom: 3em;
}

.section-header h2 { margin-bottom: .4em; }

.section-header p {
	color: var(--warm-gray);
	max-width: 36em;
	margin: 0 auto;
}

/* ─── Courses ───────────────────────────────────────────────────────────── */

.courses-grid {
	list-style: none;
	padding: 0; margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(15em, 1fr));
	gap: 1.5em;
}

.courses-grid li {
	background: #fff;
	border: 1px solid var(--light-gray);
	border-radius: 6px;
	padding: 2em 1.75em;
}

.course-icon { font-size: 1.75rem; margin-bottom: .6em; }

.courses-grid h3 { font-size: 1.1rem; margin-bottom: .4em; }

.courses-grid p { color: var(--warm-gray); font-size: .95rem; margin: 0; }

/* ─── About ─────────────────────────────────────────────────────────────── */

.about { background: #fff; }

.about-layout {
	display: grid;
	grid-template-columns: minmax(14em, 22em) 1fr;
	gap: 3em;
	align-items: center;
}

.about-photo img { border-radius: 12px; }

.stats {
	list-style: none;
	padding: 0; margin: 2em 0 0;
	display: flex;
	flex-wrap: wrap;
	gap: 2em;
}

.stats li { display: flex; flex-direction: column; }

.stat-value {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--coral);
}

.stat-label {
	font-size: .85rem;
	color: var(--warm-gray);
}

/* ─── Testimonials ──────────────────────────────────────────────────────── */

.testimonials { background: var(--navy-dark); color: #fff; }

.testimonials .section-header h2,
.testimonials .section-header .eyebrow { color: #fff; }

.testimonials-grid {
	list-style: none;
	padding: 0; margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(16em, 1fr));
	gap: 1.5em;
}

.testimonials-grid li {
	background: rgba(255,255,255,.06);
	border-radius: 8px;
	padding: 2em;
}

.testimonials-grid .quote {
	font-size: 1.05rem;
	color: rgba(255,255,255,.9);
}

.testimonials-grid .quote-name {
	color: var(--coral-light);
	font-size: .9rem;
	font-weight: 600;
	margin: 0;
}

/* ─── FAQ ───────────────────────────────────────────────────────────────── */

.faq-list {
	list-style: none;
	padding: 0; margin: 0;
	max-width: 44em;
	margin: 0 auto;
}

.faq-list li {
	border-bottom: 1px solid var(--light-gray);
}

.faq-list summary {
	padding: 1.25em 0;
	font-weight: 600;
	cursor: pointer;
}

.faq-list details p {
	color: var(--warm-gray);
	padding-bottom: 1.25em;
	margin: 0;
}

/* ─── Contact strip ─────────────────────────────────────────────────────── */

.contact-strip {
	background: var(--coral);
	text-align: center;
	padding: 4em 2em;
}

.contact-strip .section { padding: 0; }

.contact-strip h2 {
	color: #fff;
	margin-bottom: .4em;
}

.contact-strip .eyebrow { color: rgba(255,255,255,.8); }

.contact-strip > .section > p {
	color: rgba(255,255,255,.85);
	margin-bottom: 1.5em;
}

.contact-strip .cta-primary {
	background: var(--navy-dark);
}

.contact-strip .cta-primary:hover { background: var(--navy); }

.contact-strip form {
	max-width: 28em;
	margin: 0 auto;
	text-align: left;
}

.contact-strip input:not([type="submit"]),
.contact-strip textarea {
	display: block;
	width: 100%;
	margin: 0 0 1em;
	padding: .75em 1em;
	font: inherit;
	border: 1px solid rgba(255,255,255,.4);
	border-radius: 3px;
	background: rgba(255,255,255,.9);
	transition: border-color .2s, box-shadow .2s;
}

.contact-strip textarea {
	min-height: 8em;
	resize: vertical;
}

.contact-strip input:focus,
.contact-strip textarea:focus {
	outline: none;
	border-color: var(--navy-dark);
	box-shadow: 0 0 0 3px rgba(11,30,45,.2);
}

.contact-strip .cf-turnstile { margin: 0 0 1em; }

/* ─── Message pages (thank-you / error) ─────────────────────────────────── */

.message-page {
	text-align: center;
	max-width: 36em;
	padding-top: 8em;
}

.message-page p {
	color: var(--warm-gray);
	margin-bottom: 1.5em;
}

/* ─── Footer ────────────────────────────────────────────────────────────── */

footer {
	background: var(--navy-dark);
	color: rgba(255,255,255,.5);
	padding: 3em 2.5em 2em;
	display: flex;
	flex-wrap: wrap;
	gap: 2em 4em;
	justify-content: space-between;
	align-items: flex-start;
}

footer .brand {
	color: #fff;
	font-weight: 700;
	font-size: 1.1rem;
	text-decoration: none;
	display: block;
	margin-bottom: .5em;
}

footer p { margin: 0 0 .3em; font-size: .9rem; }

footer a {
	color: rgba(255,255,255,.5);
	text-decoration: none;
	transition: color .15s;
}

footer a:hover { color: var(--coral-light); }

footer .copyright {
	width: 100%;
	padding-top: 2em;
	border-top: 1px solid rgba(255,255,255,.08);
	font-size: .8rem;
}

/* ─── Responsive ────────────────────────────────────────────────────────── */

@media (max-width: 800px) {
	.about-layout {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.about-photo { max-width: 16em; margin: 0 auto; }

	.stats { justify-content: center; }
}

@media (max-width: 700px) {
	nav.site-nav { padding: 1.25em 1.25em; }
	nav.site-nav ul:not(.lang-switch) { display: none; }

	.hero { min-height: 100svh; }

	.section { padding: 3.5em 1.25em; }

	footer { padding: 2.5em 1.25em; }
}
