:root {
	--navy: #0b2545;
	--teal-dark: #0e7c86;
	--teal: #2ec4b6;
	--teal-light: #7fe7dc;
	--white: #ffffff;
	--gray-soft: #f4f6f7;
	--gray-warm: #6b7280;
	--radius: 14px;
	--shadow: 0 8px 24px rgba(11, 37, 69, 0.08);
	--font: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	font-family: var(--font);
	color: var(--navy);
	background: var(--white);
	line-height: 1.5;
}

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

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

.container {
	width: 100%;
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 24px;
}

/* Nav */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--white);
	border-bottom: 1px solid #eceff1;
}

.site-header nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 0 24px;
	max-width: 1120px;
	margin: 0 auto;
}

.site-header .logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	padding: 8px 0;
}

.site-header .logo img {
	height: 64px;
}

.nav-tagline {
	flex: 1;
	margin: 0;
	text-align: center;
	font-style: italic;
	font-weight: 600;
	letter-spacing: 0.01em;
	color: var(--teal-dark);
	font-size: clamp(0.75em, 2.2vw, 1.05em);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media (max-width: 720px) {
	.site-header nav {
		flex-wrap: wrap;
		padding: 10px 24px;
	}
	.site-header .logo {
		order: 1;
		padding: 0;
	}
	.site-header .logo img {
		height: 56px;
	}
	.menu-toggle {
		order: 2;
	}
	.nav-tagline {
		order: 3;
		width: 100%;
		white-space: normal;
		overflow: visible;
		text-overflow: clip;
		font-size: clamp(0.85em, 4vw, 1.05em);
		padding-top: 4px;
	}
}

.site-header .links {
	display: flex;
	align-items: center;
	gap: 28px;
	font-size: 0.95em;
	font-weight: 600;
}

.site-header .links a:hover {
	color: var(--teal-dark);
}

.btn-cta {
	background: var(--navy);
	color: var(--white) !important;
	padding: 10px 22px;
	border-radius: 999px;
	font-weight: 600;
	transition: background 0.2s ease;
}

.btn-cta:hover {
	background: var(--teal-dark);
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	font-weight: 700;
	font-size: 1em;
	color: var(--navy);
	font-family: var(--font);
}

@media (max-width: 720px) {
	.site-header .links {
		position: fixed;
		inset: 64px 0 0 0;
		background: var(--white);
		flex-direction: column;
		align-items: flex-start;
		padding: 24px;
		gap: 20px;
		display: none;
	}
	.site-header .links.open {
		display: flex;
	}
	.menu-toggle {
		display: block;
	}
}

/* Footer */
.site-footer {
	background: var(--navy);
	color: var(--teal-light);
	padding: 48px 24px 40px;
	margin-top: 80px;
	text-align: center;
	font-size: 0.9em;
	border-top: 3px solid var(--teal);
}

.site-footer a:hover {
	color: var(--white);
}

.site-footer .footer-logo {
	height: 72px;
	margin: 0 auto 20px;
}

@media (max-width: 720px) {
	.site-footer .footer-logo {
		height: 84px;
	}
}

/* Sections */
.hero {
	background: var(--navy);
	color: var(--white);
	text-align: center;
	padding: 90px 24px;
}

.hero p.eyebrow {
	color: var(--teal-light);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-size: 0.85em;
	font-weight: 700;
	margin-bottom: 12px;
}

.hero h1 {
	font-size: clamp(2em, 5vw, 3.2em);
	margin: 0 0 16px;
	letter-spacing: -0.02em;
}

.hero p.lead {
	max-width: 560px;
	margin: 0 auto 28px;
	color: #cdd8e3;
	font-size: 1.1em;
}

section.container {
	padding-top: 64px;
	padding-bottom: 64px;
}

section {
	padding: 64px 0;
}

h2.section-title {
	font-size: 1.8em;
	margin-bottom: 32px;
	text-align: center;
	letter-spacing: -0.01em;
}

/* Cards */
.grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}

.card {
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
	background: var(--white);
	border: 1px solid #eceff1;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 32px rgba(11, 37, 69, 0.12);
}

.card .photo {
	height: 200px;
	background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 0.9em;
	font-weight: 600;
	text-align: center;
	padding: 16px;
}

.card .body {
	padding: 20px;
}

.card h3 {
	margin: 0 0 8px;
	font-size: 1.2em;
}

.card p {
	color: var(--gray-warm);
	font-size: 0.95em;
	margin: 0 0 16px;
}

.badge {
	display: inline-block;
	background: var(--gray-soft);
	color: var(--navy);
	border-radius: 999px;
	padding: 4px 12px;
	font-size: 0.8em;
	font-weight: 600;
	margin-right: 8px;
	margin-bottom: 8px;
}

.price {
	font-size: 1.3em;
	font-weight: 700;
	color: var(--navy);
}

.price small {
	font-size: 0.6em;
	color: var(--gray-warm);
	font-weight: 500;
}

.btn {
	display: inline-block;
	background: var(--teal);
	color: var(--white);
	padding: 10px 20px;
	border-radius: 999px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	font-size: 0.95em;
	font-family: var(--font);
	transition: background 0.2s ease;
}

.btn:hover {
	background: var(--teal-dark);
}

.btn.secondary {
	background: transparent;
	color: var(--navy);
	border: 1.5px solid var(--navy);
}

.btn.secondary:hover {
	background: var(--navy);
	color: var(--white);
}

.empty-state {
	text-align: center;
	color: var(--gray-warm);
	padding: 40px;
}

.skeleton {
	background: linear-gradient(90deg, var(--gray-soft) 25%, #e9edf0 37%, var(--gray-soft) 63%);
	background-size: 400% 100%;
	animation: skeleton-loading 1.4s ease infinite;
	border-radius: 8px;
	height: 16px;
}

@keyframes skeleton-loading {
	0% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0 50%;
	}
}

/* Forms */
label {
	display: block;
	font-weight: 600;
	font-size: 0.9em;
	margin-bottom: 6px;
}

input,
select,
textarea {
	width: 100%;
	padding: 11px 14px;
	border: 1.5px solid #dde3e7;
	border-radius: 10px;
	font-family: var(--font);
	font-size: 1em;
	margin-bottom: 18px;
}

input:focus,
select:focus,
textarea:focus {
	outline: none;
	border-color: var(--teal);
}
