*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--navy: #0f1c2e;
	--navy-mid: #1a2a4a;
	--gold: #c9a84c;
	--gold-light: #f0c040;
	--gold-pale: #f5e6b8;
	--white: #faf8f4;
	--gray: #8a8a8a;
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--navy);
	color: var(--white);
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	overflow-x: hidden;
}

/* ---- HERO ---- */
.hero {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	text-align: center;
	padding: 40px 24px;
	background:
		radial-gradient(
			ellipse at 50% 0%,
			rgba(201, 168, 76, 0.12) 0%,
			transparent 60%
		),
		radial-gradient(
			ellipse at 20% 80%,
			rgba(201, 168, 76, 0.06) 0%,
			transparent 50%
		),
		linear-gradient(180deg, #0a1220 0%, #0f1c2e 50%, #0a1220 100%);
}

.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(
			1px 1px at 20% 30%,
			rgba(201, 168, 76, 0.4) 0%,
			transparent 100%
		),
		radial-gradient(
			1px 1px at 80% 20%,
			rgba(201, 168, 76, 0.3) 0%,
			transparent 100%
		),
		radial-gradient(
			1px 1px at 60% 70%,
			rgba(201, 168, 76, 0.2) 0%,
			transparent 100%
		),
		radial-gradient(
			1px 1px at 40% 80%,
			rgba(201, 168, 76, 0.3) 0%,
			transparent 100%
		),
		radial-gradient(
			1px 1px at 90% 60%,
			rgba(201, 168, 76, 0.2) 0%,
			transparent 100%
		);
	pointer-events: none;
}

.cross-icon {
	font-size: 32px;
	color: var(--gold);
	margin-bottom: 16px;
	animation: fadeDown 1s ease forwards;
	opacity: 0;
}

.hero-label {
	font-family: 'Cinzel', serif;
	font-size: 11px;
	letter-spacing: 0.3em;
	color: var(--gold);
	text-transform: uppercase;
	margin-bottom: 20px;
	animation: fadeDown 1s ease 0.2s forwards;
	opacity: 0;
}

.hero-title {
	font-family: 'Cinzel', serif;
	font-size: clamp(28px, 6vw, 64px);
	font-weight: 700;
	line-height: 1.1;
	color: var(--white);
	margin-bottom: 8px;
	animation: fadeDown 1s ease 0.4s forwards;
	opacity: 0;
}

.hero-title span {
	color: var(--gold);
}

.hero-subtitle {
	font-family: 'Cinzel', serif;
	font-size: clamp(14px, 2.5vw, 22px);
	font-weight: 400;
	color: var(--gold-pale);
	letter-spacing: 0.15em;
	margin-bottom: 32px;
	animation: fadeDown 1s ease 0.6s forwards;
	opacity: 0;
}

.divider {
	width: 80px;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--gold), transparent);
	margin: 0 auto 32px;
	animation: fadeDown 1s ease 0.8s forwards;
	opacity: 0;
}

.hero-description {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(16px, 2.5vw, 22px);
	font-style: italic;
	color: var(--gold-pale);
	max-width: 600px;
	line-height: 1.8;
	margin-bottom: 48px;
	animation: fadeDown 1s ease 1s forwards;
	opacity: 0;
}

.coming-soon-badge {
	display: inline-block;
	border: 1px solid var(--gold);
	color: var(--gold);
	font-family: 'Cinzel', serif;
	font-size: 11px;
	letter-spacing: 0.25em;
	padding: 10px 28px;
	margin-bottom: 48px;
	animation: fadeDown 1s ease 1.2s forwards;
	opacity: 0;
	position: relative;
	overflow: hidden;
}

.coming-soon-badge::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(201, 168, 76, 0.05);
}

/* ---- MISSION SECTION ---- */
.mission {
	padding: 80px 24px;
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.section-label {
	font-family: 'Cinzel', serif;
	font-size: 10px;
	letter-spacing: 0.3em;
	color: var(--gold);
	text-transform: uppercase;
	margin-bottom: 24px;
}

.mission-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 300;
	color: var(--white);
	line-height: 1.3;
	margin-bottom: 32px;
}

.mission-text {
	font-family: 'Lato', sans-serif;
	font-size: 15px;
	font-weight: 300;
	color: rgba(250, 248, 244, 0.75);
	line-height: 1.9;
	margin-bottom: 20px;
}

/* ---- VALUES ---- */
.values {
	padding: 60px 24px;
	background: rgba(201, 168, 76, 0.04);
	border-top: 1px solid rgba(201, 168, 76, 0.15);
	border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.values-inner {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 40px;
	margin-top: 48px;
}

.value-item {
	text-align: center;
}

.value-icon {
	font-size: 28px;
	margin-bottom: 16px;
	color: var(--gold);
}

.value-title {
	font-family: 'Cinzel', serif;
	font-size: 13px;
	letter-spacing: 0.15em;
	color: var(--gold);
	margin-bottom: 12px;
}

.value-text {
	font-size: 14px;
	font-weight: 300;
	color: rgba(250, 248, 244, 0.65);
	line-height: 1.7;
}

/* ---- LANGUAGES ---- */
.languages {
	padding: 80px 24px;
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}

.lang-pills {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-top: 32px;
}

.lang-pill {
	border: 1px solid rgba(201, 168, 76, 0.4);
	color: var(--gold-pale);
	font-family: 'Cinzel', serif;
	font-size: 12px;
	letter-spacing: 0.2em;
	padding: 10px 24px;
	background: rgba(201, 168, 76, 0.05);
}

/* ---- SCRIPTURE ---- */
.scripture-section {
	padding: 80px 24px;
	text-align: center;
	background: linear-gradient(
		180deg,
		transparent,
		rgba(201, 168, 76, 0.06),
		transparent
	);
}

.scripture-text {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(20px, 3.5vw, 32px);
	font-style: italic;
	font-weight: 300;
	color: var(--gold-pale);
	max-width: 650px;
	margin: 0 auto 16px;
	line-height: 1.6;
}

.scripture-ref {
	font-family: 'Cinzel', serif;
	font-size: 11px;
	letter-spacing: 0.2em;
	color: var(--gold);
}

/* ---- CONTACT ---- */
.contact {
	padding: 80px 24px;
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
}

.contact-email {
	display: inline-block;
	font-family: 'Cinzel', serif;
	font-size: 13px;
	letter-spacing: 0.15em;
	color: var(--gold);
	border-bottom: 1px solid rgba(201, 168, 76, 0.4);
	padding-bottom: 4px;
	text-decoration: none;
	margin: 24px 0;
	transition: color 0.3s;
}

.contact-email:hover {
	color: var(--gold-light);
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 24px;
	margin-top: 32px;
	flex-wrap: wrap;
}

.social-link {
	font-family: 'Cinzel', serif;
	font-size: 11px;
	letter-spacing: 0.2em;
	color: rgba(250, 248, 244, 0.6);
	text-decoration: none;
	border: 1px solid rgba(201, 168, 76, 0.2);
	padding: 8px 20px;
	transition: all 0.3s;
}

.social-link:hover {
	color: var(--gold);
	border-color: var(--gold);
	background: rgba(201, 168, 76, 0.05);
}

/* ---- FOOTER ---- */
footer {
	border-top: 1px solid rgba(201, 168, 76, 0.15);
	padding: 32px 24px;
	text-align: center;
}

.footer-text {
	font-size: 12px;
	color: rgba(250, 248, 244, 0.35);
	letter-spacing: 0.1em;
}

.footer-text span {
	color: var(--gold);
}

/* ---- ANIMATIONS ---- */
@keyframes fadeDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ---- SCROLL REVEAL ---- */
.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition:
		opacity 0.8s ease,
		transform 0.8s ease;
}
.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 600px) {
	.values-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}
