/* ─── Reset & Base ─────────────────────────────────────────────────── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--forest: #253225;
	--bark: #3b2b1c;
	--ochre: #a07028;
	--ochre-dk: #7a5218;
	--sage: #6a7b5e;
	--stone: #6b6355;
	--parchment: #f3ede4;
	--paper: #faf7f2;
	--border: #dcd5ca;
	--white: #ffffff;
	--text: #1a1714;
	--muted: #6b6355;

	--font-serif: "Playfair Display", Georgia, serif;
	--font-sans: "Inter", system-ui, sans-serif;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-sans);
	color: var(--text);
	background: var(--white);
	line-height: 1.65;
}

.container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

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

/* ─── Buttons ───────────────────────────────────────────────────────── */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.6rem 1.4rem;
	border-radius: 4px;
	font-weight: 500;
	font-size: 0.9rem;
	letter-spacing: 0.01em;
	cursor: pointer;
	transition: all 0.16s ease;
	border: 1.5px solid transparent;
}

.btn-primary {
	background: var(--ochre);
	color: var(--white);
	border-color: var(--ochre);
}
.btn-primary:hover {
	background: var(--ochre-dk);
	border-color: var(--ochre-dk);
}

.btn-ghost {
	background: transparent;
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.35);
}
.btn-ghost:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.7);
}

.btn-lg {
	padding: 0.8rem 2rem;
	font-size: 0.95rem;
}

/* ─── Nav ───────────────────────────────────────────────────────────── */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: rgba(37, 50, 37, 0.94);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 62px;
}

.logo {
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--parchment);
	letter-spacing: -0.01em;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.nav-links a:not(.btn) {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
	letter-spacing: 0.01em;
	transition: color 0.15s;
}
.nav-links a:not(.btn):hover {
	color: rgba(255, 255, 255, 0.9);
}

/* ─── Hero ──────────────────────────────────────────────────────────── */
.hero {
	position: relative;
	background: linear-gradient(
		160deg,
		var(--forest) 0%,
		#181512 45%,
		var(--bark) 100%
	);
	padding: 140px 0 80px;
	overflow: hidden;
}

.hero-inner {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.badge {
	display: inline-block;
	color: rgba(243, 237, 228, 0.55);
	border: 1px solid rgba(243, 237, 228, 0.2);
	padding: 0.3rem 0.85rem;
	border-radius: 2px;
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 1.4rem;
}

.hero-text h1 {
	font-family: var(--font-serif);
	font-size: clamp(2.4rem, 4.8vw, 3.7rem);
	font-weight: 900;
	color: var(--parchment);
	line-height: 1.08;
	margin-bottom: 1.4rem;
}

.hero-sub {
	color: rgba(243, 237, 228, 0.6);
	font-size: 1.05rem;
	max-width: 460px;
	margin-bottom: 2.25rem;
	line-height: 1.7;
}
.hero-sub strong {
	color: var(--parchment);
	font-weight: 600;
}

.hero-actions {
	display: flex;
	gap: 0.85rem;
	flex-wrap: wrap;
}

/* Fly card */
.hero-visual {
	display: flex;
	justify-content: center;
}

.fly-card {
	background: rgba(243, 237, 228, 0.05);
	border: 1px solid rgba(243, 237, 228, 0.1);
	border-radius: 10px;
	overflow: hidden;
	width: 272px;
	transition: transform 0.3s ease;
}
.fly-card:hover {
	transform: translateY(-4px);
}

.fly-img-placeholder {
	background: rgba(0, 0, 0, 0.25);
	padding: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.fly-img-placeholder svg {
	width: 100%;
	max-width: 160px;
}

.fly-info {
	padding: 1rem 1.25rem 1.1rem;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.fly-name {
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--parchment);
}
.fly-tier {
	font-size: 0.8rem;
	color: rgba(243, 237, 228, 0.4);
}
.fly-price {
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--ochre);
	margin-top: 0.3rem;
}

.hero-wave {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	line-height: 0;
}
.hero-wave svg {
	display: block;
	width: 100%;
	height: 60px;
}

/* ─── Stats ─────────────────────────────────────────────────────────── */
.stats {
	background: var(--paper);
	padding: 3rem 0;
	border-bottom: 1px solid var(--border);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	text-align: center;
}

.stat {
	padding: 1rem 1rem 0.75rem;
}

.stat-num {
	display: block;
	font-family: var(--font-serif);
	font-size: 2.8rem;
	font-weight: 900;
	color: var(--ochre);
	line-height: 1;
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: 0.88rem;
	color: var(--stone);
	letter-spacing: 0.01em;
}

/* ─── Sections ──────────────────────────────────────────────────────── */
.section {
	padding: 5.5rem 0;
}
.section-alt {
	background: var(--parchment);
}

.section-title {
	font-family: var(--font-serif);
	font-size: clamp(1.7rem, 2.8vw, 2.5rem);
	font-weight: 900;
	text-align: center;
	margin-bottom: 0.65rem;
	color: var(--text);
}

.section-sub {
	text-align: center;
	color: var(--stone);
	font-size: 1rem;
	margin-bottom: 3.5rem;
}

/* Steps */
.steps {
	display: flex;
	align-items: flex-start;
	gap: 0;
}

.step {
	flex: 1;
	padding: 2rem;
	text-align: center;
}

.step-num {
	font-family: var(--font-serif);
	font-size: 3rem;
	font-weight: 900;
	color: var(--border);
	line-height: 1;
	margin-bottom: 1rem;
}

.step h3 {
	font-size: 1.05rem;
	font-weight: 600;
	margin-bottom: 0.6rem;
	color: var(--text);
}

.step p {
	color: var(--stone);
	font-size: 0.92rem;
	line-height: 1.65;
}

.step-divider {
	flex-shrink: 0;
	width: 1px;
	height: 120px;
	background: var(--border);
	margin-top: 3rem;
}

/* Features */
.features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.feature {
	background: var(--white);
	border-radius: 8px;
	padding: 2rem 2rem 2rem 1.75rem;
	border: 1px solid var(--border);
	border-left: 3px solid transparent;
	transition:
		border-left-color 0.2s,
		box-shadow 0.2s;
}
.feature:hover {
	border-left-color: var(--ochre);
	box-shadow: 0 4px 20px rgba(26, 23, 20, 0.06);
}

.feature-icon {
	width: 36px;
	height: 36px;
	color: var(--sage);
	margin-bottom: 1.1rem;
}
.feature-icon svg {
	width: 100%;
	height: 100%;
}

.feature h3 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--text);
}

.feature p {
	color: var(--stone);
	font-size: 0.92rem;
	line-height: 1.65;
}

/* ─── CTA / Signup ──────────────────────────────────────────────────── */
.cta-section {
	background: linear-gradient(160deg, var(--forest) 0%, var(--bark) 100%);
	text-align: center;
	padding: 6rem 0;
}

.cta-inner h2 {
	font-family: var(--font-serif);
	font-size: clamp(1.7rem, 2.8vw, 2.5rem);
	font-weight: 900;
	color: var(--parchment);
	margin-bottom: 0.7rem;
}

.cta-inner > p {
	color: rgba(243, 237, 228, 0.55);
	font-size: 1rem;
	margin-bottom: 2.25rem;
}

.cta-actions {
	display: flex;
	gap: 0.85rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* ─── Footer ────────────────────────────────────────────────────────── */
.footer {
	background: var(--text);
	padding: 2.75rem 0;
	text-align: center;
}

.footer .logo {
	font-size: 1.15rem;
	color: var(--parchment);
}
.footer-tagline {
	color: rgba(243, 237, 228, 0.35);
	font-size: 0.85rem;
	margin: 0.4rem 0;
}
.footer-copy {
	color: rgba(243, 237, 228, 0.2);
	font-size: 0.78rem;
}

/* ─── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 768px) {
	.nav-links a:not(.btn) {
		display: none;
	}

	.hero-inner {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.hero-sub {
		margin: 0 auto 2rem;
	}
	.hero-actions {
		justify-content: center;
	}
	.hero-visual {
		display: none;
	}

	.stats-grid {
		grid-template-columns: 1fr;
	}

	.steps {
		flex-direction: column;
		align-items: center;
	}
	.step-divider {
		width: 120px;
		height: 1px;
		margin: 0;
	}

	.features {
		grid-template-columns: 1fr;
	}
}
