:root {
	--bg: #f6f0e7;
	--bg-soft: #fbf7f1;
	--panel: #f0e3d1;
	--surface: rgba(255, 250, 244, 0.82);
	--text: #2f241d;
	--muted: #6f5a4d;
	--accent: #9f5f3c;
	--accent-dark: #7d4325;
	--line: rgba(65, 43, 28, 0.12);
	--shadow: 0 20px 60px rgba(71, 45, 25, 0.12);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Manrope", sans-serif;
	color: var(--text);
	background:
		radial-gradient(circle at top, rgba(255, 255, 255, 0.7), transparent 35%),
		linear-gradient(180deg, #f4ecdf 0%, #f8f2e9 36%, #f7efe4 100%);
}

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

.container {
	width: min(1120px, calc(100% - 2rem));
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 10;
	backdrop-filter: blur(14px);
	background: rgba(246, 240, 231, 0.85);
	border-bottom: 1px solid var(--line);
}

.nav-bar,
.footer-layout {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.nav-bar {
	min-height: 78px;
}

.brand {
	font-family: "Cormorant Garamond", serif;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.site-nav {
	display: flex;
	gap: 1rem;
	font-size: 0.96rem;
	margin-bottom: 12px;
}

.site-nav a {
	padding: 0.55rem 0.9rem;
	border-radius: 999px;
	color: var(--muted);
	transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
	background: rgba(159, 95, 60, 0.12);
	color: var(--text);
}

.hero,
.benefits,
.story,
.preview {
	padding: 5rem 0;
}

.hero {
	padding-top: 4.5rem;
}

.hero-layout,
.story-layout {
	display: grid;
	gap: 2rem;
}

.hero-layout {
	align-items: center;
}

.eyebrow {
	margin: 0 0 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	font-size: 0.74rem;
	font-weight: 700;
	color: var(--accent-dark);
}

h1,
h2,
h3 {
	margin: 0;
	font-family: "Cormorant Garamond", serif;
	line-height: 0.95;
}

h1 {
	font-size: clamp(3.1rem, 8vw, 5.9rem);
	max-width: 11ch;
}

h2 {
	font-size: clamp(2.2rem, 5vw, 3.6rem);
	max-width: 14ch;
}

h3 {
	font-size: 1.8rem;
}

p {
	margin: 0;
	line-height: 1.7;
}

.hero-text,
.story-copy,
.benefit-card p,
.preview-card p,
.footer-layout p {
	color: var(--muted);
}

.hero-text {
	margin-top: 1.5rem;
	max-width: 59ch;
	font-size: 1.05rem;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2rem;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.95rem 1.35rem;
	border-radius: 999px;
	font-weight: 700;
	transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.button:hover {
	transform: translateY(-1px);
}

.button-primary {
	background: var(--accent);
	color: #fff9f3;
}

.button-primary:hover {
	background: var(--accent-dark);
}

.button-secondary {
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.56);
}

.hero-panel {
	justify-self: stretch;
}

.panel-card,
.benefit-card,
.preview-card {
	border: 1px solid var(--line);
	border-radius: 28px;
	background: var(--surface);
	box-shadow: var(--shadow);
}

.panel-card {
	padding: 2rem;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(240, 227, 209, 0.95)),
		var(--panel);
}

.panel-label {
	display: inline-block;
	margin-bottom: 0.9rem;
	padding: 0.4rem 0.75rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.62);
	color: var(--accent-dark);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.panel-card h2 {
	font-size: clamp(2rem, 4vw, 2.8rem);
	max-width: 12ch;
}

.panel-list {
	margin: 1.4rem 0 0;
	padding-left: 1.1rem;
	color: var(--muted);
}

.panel-list li+li {
	margin-top: 0.6rem;
}

.section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.benefit-grid,
.preview-grid {
	display: grid;
	gap: 1.25rem;
}

.benefit-card,
.preview-card {
	padding: 1.5rem;
}

.benefit-card h3,
.preview-card h3 {
	margin-bottom: 0.8rem;
}

.story {
	background: rgba(255, 250, 244, 0.58);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.story-copy {
	display: grid;
	gap: 1rem;
	max-width: 62ch;
}

.preview-heading {
	align-items: center;
}

.text-link {
	color: var(--accent-dark);
	font-weight: 700;
}

.book-cover {
	height: 220px;
	border-radius: 22px;
	display: flex;
	align-items: end;
	padding: 1rem;
	margin-bottom: 1.25rem;
	color: rgba(255, 250, 244, 0.95);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.cover-amber {
	background: linear-gradient(160deg, #d98f5f, #8d4b30);
}

.cover-olive {
	background: linear-gradient(160deg, #7c8a55, #39452a);
}

.cover-rust {
	background: linear-gradient(160deg, #bf704c, #6e3422);
}

.site-footer {
	padding: 2rem 0 3rem;
	border-top: 1px solid var(--line);
}

.footer-brand {
	display: inline-block;
	margin-bottom: 0.25rem;
}

.footer-meta {
	text-align: right;
}

@media (min-width: 760px) {
	.hero-layout {
		grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.85fr);
	}

	.story-layout {
		grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
		align-items: start;
	}

	.benefit-grid,
	.preview-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 759px) {

	.nav-bar,
	.footer-layout,
	.section-heading {
		flex-direction: column;
		align-items: start;
	}

	.footer-meta {
		text-align: left;
	}

	.hero,
	.benefits,
	.story,
	.preview {
		padding: 4rem 0;
	}
}