:root {
	--bg: #f5efe5;
	--bg-strong: #efe3d2;
	--surface: rgba(255, 252, 246, 0.84);
	--surface-strong: #fffaf2;
	--surface-dark: #1b1714;
	--text: #241c17;
	--muted: #6f6157;
	--border: rgba(36, 28, 23, 0.1);
	--accent: #b85c38;
	--accent-strong: #8a3d21;
	--accent-soft: #f1d1bc;
	--gold: #d6a655;
	--shadow: 0 22px 60px rgba(36, 28, 23, 0.12);
	--radius-lg: 28px;
	--radius-md: 20px;
	--radius-sm: 14px;
	--content-width: 1180px;
}

* {
	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 left, rgba(214, 166, 85, 0.18), transparent 28%),
		radial-gradient(circle at top right, rgba(184, 92, 56, 0.14), transparent 24%),
		linear-gradient(180deg, #f9f3ea 0%, #f5efe5 48%, #efe7da 100%);
	line-height: 1.6;
}

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

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

.site-shell {
	min-height: 100vh;
	position: relative;
	overflow: hidden;
}

.site-shell::before,
.site-shell::after {
	content: "";
	position: absolute;
	border-radius: 999px;
	pointer-events: none;
	filter: blur(10px);
}

.site-shell::before {
	width: 24rem;
	height: 24rem;
	right: -10rem;
	top: 7rem;
	background: rgba(184, 92, 56, 0.12);
}

.site-shell::after {
	width: 16rem;
	height: 16rem;
	left: -4rem;
	top: 24rem;
	background: rgba(214, 166, 85, 0.14);
}

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

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.45rem 0.8rem;
	border-radius: 999px;
	background: rgba(255, 250, 242, 0.78);
	border: 1px solid rgba(255, 250, 242, 0.9);
	box-shadow: 0 12px 30px rgba(36, 28, 23, 0.08);
	color: var(--accent-strong);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	backdrop-filter: blur(18px);
	background: rgba(245, 239, 229, 0.74);
	border-bottom: 1px solid rgba(36, 28, 23, 0.08);
}

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

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.9rem;
}

.brand__mark {
	width: 2.8rem;
	height: 2.8rem;
	border-radius: 18px;
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, #2a211b, #b85c38);
	color: #fff7ef;
	box-shadow: 0 18px 35px rgba(42, 33, 27, 0.22);
	font-family: "Cormorant Garamond", serif;
	font-size: 1.4rem;
	font-weight: 700;
}

.brand__title {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.7rem;
	font-weight: 700;
	line-height: 1;
}

.brand__subtitle {
	color: var(--muted);
	font-size: 0.85rem;
}

.nav {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.nav a {
	padding: 0.75rem 1rem;
	border-radius: 999px;
	color: var(--muted);
	font-weight: 700;
}

.nav a:hover,
.nav a[aria-current="page"] {
	background: rgba(255, 250, 242, 0.92);
	color: var(--text);
}

.button,
.button-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	min-height: 3rem;
	padding: 0.8rem 1.2rem;
	border: 0;
	border-radius: 999px;
	font-weight: 800;
	cursor: pointer;
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button {
	background: linear-gradient(135deg, var(--accent), var(--accent-strong));
	color: #fff8f1;
	box-shadow: 0 18px 35px rgba(184, 92, 56, 0.25);
}

.button-secondary {
	background: rgba(255, 250, 242, 0.78);
	color: var(--text);
	border: 1px solid rgba(36, 28, 23, 0.08);
}

.button:hover,
.button-secondary:hover {
	transform: translateY(-2px);
}

.main-content {
	position: relative;
	z-index: 1;
}

.hero {
	padding: 4.5rem 0 2rem;
}

.hero__grid,
.split-grid,
.story-grid,
.visit-grid,
.detail-grid,
.list-grid {
	display: grid;
	gap: 1.5rem;
}

.hero__grid {
	grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.95fr);
	align-items: center;
}

.hero h1,
.section-title,
.detail-title,
.page-title {
	font-family: "Cormorant Garamond", serif;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin: 0;
}

.hero h1 {
	font-size: clamp(3.2rem, 7vw, 5.6rem);
	line-height: 0.92;
	max-width: 11ch;
}

.hero p,
.lead,
.section-copy,
.page-copy {
	color: var(--muted);
	font-size: 1.05rem;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin-top: 1.75rem;
}

.metrics {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 1.8rem;
}

.metric {
	min-width: 10rem;
}

.metric strong {
	display: block;
	font-size: 2rem;
	font-weight: 800;
}

.metric span {
	color: var(--muted);
	font-size: 0.92rem;
}

.hero-card,
.panel,
.recipe-card,
.stat-card,
.taxonomy-card,
.content-card {
	background: var(--surface);
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
}

.hero-card {
	overflow: hidden;
}

.hero-card__image {
	aspect-ratio: 4 / 4.6;
	overflow: hidden;
}

.hero-card__image img,
.recipe-card__media img,
.detail-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-card__body,
.panel,
.recipe-card__body,
.detail-meta,
.content-card,
.taxonomy-card {
	padding: 1.4rem;
}

.hero-card__body h2,
.recipe-card__title,
.content-card h3,
.panel h3 {
	margin: 0;
	font-size: 1.3rem;
}

.hero-card__body p,
.recipe-card__body p,
.content-card p,
.panel p,
.taxonomy-card p {
	color: var(--muted);
}

.section {
	padding: 1.5rem 0 4rem;
}

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

.section-title {
	font-size: clamp(2.3rem, 5vw, 3.5rem);
}

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

.recipe-card {
	overflow: hidden;
}

.recipe-card__media {
	aspect-ratio: 4 / 3;
	background: linear-gradient(135deg, #ead9c3, #c08c67);
}

.recipe-card__eyebrow,
.kicker {
	color: var(--accent-strong);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.recipe-card__meta,
.inline-meta,
.detail-facts,
.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}

.pill,
.tag-list a,
.inline-meta span,
.detail-facts span {
	display: inline-flex;
	align-items: center;
	padding: 0.42rem 0.75rem;
	border-radius: 999px;
	background: rgba(184, 92, 56, 0.08);
	color: var(--accent-strong);
	font-size: 0.82rem;
	font-weight: 700;
}

.story-grid,
.visit-grid,
.detail-grid,
.list-grid {
	grid-template-columns: minmax(0, 1.1fr) minmax(16rem, 0.9fr);
	align-items: start;
}

.story-block {
	padding: 2rem;
	background: linear-gradient(180deg, rgba(255, 250, 242, 0.84), rgba(255, 250, 242, 0.64));
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
}

.content-card {
	background: linear-gradient(180deg, rgba(36, 28, 23, 0.96), rgba(58, 45, 37, 0.96));
	color: #f9efe2;
}

.content-card p,
.content-card .muted-light {
	color: rgba(249, 239, 226, 0.72);
}

.list-stack,
.detail-stack {
	display: grid;
	gap: 1rem;
}

.list-stack ul,
.detail-stack ol,
.detail-stack ul {
	margin: 0;
	padding-left: 1.2rem;
}

.list-stack li,
.detail-stack li {
	margin-bottom: 0.65rem;
}

.page-hero {
	padding: 3.5rem 0 1.2rem;
}

.page-title {
	font-size: clamp(2.6rem, 5vw, 4rem);
}

.page-shell,
.detail-shell {
	padding-bottom: 4rem;
}

.grid-cards {
	display: grid;
	gap: 1.3rem;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-media {
	min-height: 26rem;
	overflow: hidden;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	background: linear-gradient(135deg, #ead9c3, #c08c67);
}

.detail-title {
	font-size: clamp(2.7rem, 5vw, 4.4rem);
	line-height: 0.95;
}

.detail-copy {
	color: var(--muted);
	font-size: 1.04rem;
}

.footer-panel {
	background: linear-gradient(180deg, rgba(36, 28, 23, 0.98), rgba(23, 18, 15, 0.98));
	color: #f9efe2;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	margin-top: 2rem;
}

.footer-panel a {
	color: rgba(249, 239, 226, 0.82);
}

.footer-bottom {
	max-width: 1100px; margin: 0 auto; padding: 1.2rem 2rem;
	font-size: .78rem; color: rgba(249,239,226,.35);
	display: flex; align-items: center; justify-content: space-between;
	flex-wrap: wrap; gap: .5rem;
	border-top: 1px solid rgba(249,239,226,.1);
}
.footer-hosted { font-size: .76rem; color: rgba(249,239,226,.28); }
.footer-hosted a { color: rgba(249,239,226,.45); text-decoration: underline; text-underline-offset: 3px; transition: color .2s; }
.footer-hosted a:hover { color: #f9c784; }

.footer-note,
.muted {
	color: var(--muted);
}

.footer-panel .muted {
	color: rgba(249, 239, 226, 0.62);
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.empty-state {
	padding: 2rem;
	text-align: center;
}

.fade-up {
	animation: fade-up 700ms ease both;
}

.fade-up:nth-child(2) {
	animation-delay: 90ms;
}

.fade-up:nth-child(3) {
	animation-delay: 180ms;
}

@keyframes fade-up {
	from {
		opacity: 0;
		transform: translateY(18px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 980px) {
	.hero__grid,
	.story-grid,
	.visit-grid,
	.detail-grid,
	.list-grid {
		grid-template-columns: 1fr;
	}

	.split-grid,
	.grid-cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.site-header__inner,
	.site-footer__inner,
	.section-heading {
		flex-direction: column;
		align-items: flex-start;
	}

	.nav {
		width: 100%;
		justify-content: flex-start;
	}

	.hero {
		padding-top: 3rem;
	}

	.hero h1 {
		font-size: clamp(2.7rem, 16vw, 4rem);
	}

	.split-grid,
	.grid-cards {
		grid-template-columns: 1fr;
	}

	.story-block,
	.panel,
	.recipe-card__body,
	.detail-meta,
	.content-card,
	.taxonomy-card {
		padding: 1.2rem;
	}
}