:root {
	--sand: #f4f1e8;
	--charcoal: #1f2227;
	--steel: #2e3c4c;
	--signal: #ef7c2b;
	--teal: #1d6f7a;
	--ink-soft: #505861;
	--border: #d9d3c2;
	--radius: 14px;
	--shadow: 0 12px 30px rgba(16, 20, 24, 0.12);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: "Public Sans", "Segoe UI", sans-serif;
	color: var(--charcoal);
	background: radial-gradient(circle at top right, #fff4dd 0%, #f9f5eb 34%, #eef2f4 100%);
	line-height: 1.6;
}

.wrap {
	width: min(1120px, 92vw);
	margin: 0 auto;
}

h1,
h2,
h3,
.brand__name {
	font-family: "Oswald", "Arial Narrow", sans-serif;
	letter-spacing: 0.02em;
	line-height: 1.15;
	margin: 0 0 0.6rem;
}

a {
	color: var(--steel);
	text-decoration: none;
}

a:hover,
a:focus-visible {
	color: var(--teal);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	backdrop-filter: blur(8px);
	background: rgba(250, 247, 240, 0.84);
	border-bottom: 1px solid rgba(46, 60, 76, 0.12);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.85rem 0;
}

.brand {
	display: inline-flex;
	align-items: center;
	font-size: 1.45rem;
	color: var(--charcoal);
	font-weight: 600;
}

.menu,
.menu-fallback {
	display: flex;
	gap: 1.1rem;
	list-style: none;
	padding: 0;
	margin: 0;
	font-weight: 500;
}

.hero {
	padding: 5.5rem 0 3.5rem;
}

.hero__grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 2rem;
	align-items: stretch;
}

.eyebrow {
	display: inline-block;
	background: rgba(239, 124, 43, 0.12);
	border: 1px solid rgba(239, 124, 43, 0.35);
	color: #9f4e18;
	padding: 0.2rem 0.6rem;
	border-radius: 999px;
	font-size: 0.77rem;
	font-weight: 700;
	letter-spacing: 0.09em;
}

.hero h1 {
	font-size: clamp(2.1rem, 5.1vw, 4rem);
	max-width: 13ch;
}

.hero__copy p {
	max-width: 58ch;
	color: var(--ink-soft);
}

.hero__panel {
	background: linear-gradient(150deg, var(--steel), #1e2834);
	color: #ecf2f6;
	border-radius: calc(var(--radius) + 6px);
	padding: 1.6rem;
	box-shadow: var(--shadow);
}

.hero__panel ul {
	margin: 1.2rem 0 0;
	padding-left: 1rem;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: 1.2rem;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.15rem;
	border-radius: 999px;
	font-weight: 700;
	border: 2px solid transparent;
	transition: transform 180ms ease, background-color 180ms ease;
}

.btn:hover {
	transform: translateY(-2px);
}

.btn--solid {
	background: var(--signal);
	color: #1a1107;
}

.btn--solid:hover {
	background: #f89a46;
	color: #231b11;
}

.btn--ghost {
	border-color: rgba(46, 60, 76, 0.4);
	color: var(--steel);
}

.stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.9rem;
	margin-bottom: 4rem;
}

.stats article {
	background: rgba(255, 255, 255, 0.68);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1rem;
}

.stats h3 {
	font-size: 1.7rem;
	margin-bottom: 0.2rem;
	color: var(--teal);
}

.section-head h2 {
	font-size: clamp(1.6rem, 3.4vw, 2.7rem);
	max-width: 22ch;
}

.cards {
	margin-top: 1.2rem;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.2rem;
	box-shadow: 0 8px 26px rgba(12, 15, 18, 0.05);
}

.process {
	margin: 4rem 0;
	padding: 3.2rem 0;
	background:
		linear-gradient(0deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.72)),
		repeating-linear-gradient(-35deg, rgba(29, 111, 122, 0.09) 0, rgba(29, 111, 122, 0.09) 6px, transparent 6px, transparent 18px);
	border-top: 1px solid rgba(46, 60, 76, 0.14);
	border-bottom: 1px solid rgba(46, 60, 76, 0.14);
}

.process__grid {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 1.2rem 2rem;
}

.timeline {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.7rem;
}

.timeline li {
	background: white;
	border: 1px solid var(--border);
	border-left: 5px solid var(--teal);
	border-radius: 8px;
	padding: 0.8rem 1rem;
	font-weight: 500;
}

.timeline span {
	display: inline-block;
	margin-right: 0.5rem;
	font-weight: 800;
	color: var(--teal);
}

.cta {
	text-align: center;
	background: #19252e;
	color: #f5f8fb;
	border-radius: calc(var(--radius) + 8px);
	padding: 2.4rem 1.2rem;
	margin-bottom: 4.2rem;
}

.cta h2 {
	font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.cta p {
	max-width: 60ch;
	margin: 0 auto 1rem;
	color: #cfd9e0;
}

.content {
	padding: 3rem 0;
}

.prose h1 {
	font-size: clamp(1.8rem, 4vw, 3rem);
}

.post-list {
	display: grid;
	gap: 1rem;
}

.post-card {
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: #fff;
	padding: 1rem;
}

.site-footer {
	background: #161c23;
	color: #d0d8df;
	margin-top: 3rem;
}

.site-footer__inner {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	justify-content: space-between;
	padding: 2rem 0 1.3rem;
}

.site-footer__title {
	font-family: "Oswald", "Arial Narrow", sans-serif;
	font-size: 1.25rem;
	color: #fff;
}

.site-footer__links {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.site-footer__links a {
	color: #b8c3ce;
}

.site-footer__bar {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	padding: 0.6rem;
	font-size: 0.9rem;
}

.reveal {
	opacity: 0;
	transform: translateY(12px);
	transition: transform 550ms ease, opacity 550ms ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 900px) {
	.hero__grid,
	.cards,
	.stats,
	.process__grid {
		grid-template-columns: 1fr;
	}

	.site-header__inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.8rem;
	}

	.menu,
	.menu-fallback {
		flex-wrap: wrap;
	}
}
