:root {
	--bg: #f7f2ea;
	--surface: rgba(255, 255, 255, 0.72);
	--text: #1c1712;
	--muted: #645a4c;
	--line: rgba(28, 23, 18, 0.12);
	--accent-deep: #7d5731;
	--shadow: 0 22px 50px rgba(40, 28, 18, 0.1);
	--radius-lg: 30px;
	--container: 1160px;
	--font-heading: "Cormorant Garamond", Georgia, serif;
	--font-body: "Manrope", "Segoe UI", sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-width: 320px;
	font-family: var(--font-body);
	color: var(--text);
	background:
		radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 32%),
		linear-gradient(180deg, #f2ece3 0%, var(--bg) 52%, #efe5d6 100%);
}

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

.page-shell {
	overflow: hidden;
}

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

.site-header {
	position: sticky;
	top: 0;
	z-index: 10;
	backdrop-filter: blur(14px);
	background: rgba(247, 242, 234, 0.74);
	border-bottom: 1px solid rgba(28, 23, 18, 0.08);
}

.header-inner,
.site-nav,
.hero-actions,
.footer-grid {
	display: flex;
	align-items: center;
}

.header-inner {
	justify-content: space-between;
	padding: 1rem 0;
	gap: 1rem;
}

.brand-mark {
	font-family: var(--font-heading);
	font-size: 1.9rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.site-nav {
	gap: 0.4rem;
	flex-wrap: wrap;
}

.nav-link {
	padding: 10px 20px;
	border-radius: 999px;
	color: var(--muted);
	transition: background-color 180ms ease, color 180ms ease;
	text-align: center;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
	background: rgba(28, 23, 18, 0.08);
	color: var(--text);
}

.hero,
.info-section,
.featured-section,
.promo-section {
	padding: 5rem 0;
}

.hero {
	padding-top: 4.5rem;
}

.hero-grid,
.info-grid,
.featured-grid,
.promo-grid {
	display: grid;
	gap: 1.5rem;
}

.hero-grid {
	grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
	align-items: center;
	gap: 2rem;
}

.eyebrow,
.product-category {
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--accent-deep);
}

h1,
h2,
h3 {
	margin: 0;
	font-family: var(--font-heading);
	line-height: 0.95;
}

h1 {
	font-size: clamp(3.4rem, 8vw, 6.4rem);
	max-width: 11ch;
	margin: 0.8rem 0 1.2rem;
}

h2 {
	font-size: clamp(2.4rem, 5vw, 4rem);
	max-width: 14ch;
	margin-top: 0.5rem;
}

h3 {
	font-size: 1.9rem;
	margin-bottom: 0.75rem;
}

p {
	margin: 0;
	line-height: 1.7;
	color: var(--muted);
}

.hero-text {
	max-width: 58ch;
	font-size: 1.05rem;
}

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

.button,
.text-link {
	transition:
		transform 180ms ease,
		background-color 180ms ease,
		color 180ms ease,
		border-color 180ms ease;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3.25rem;
	padding: 0.9rem 1.4rem;
	border-radius: 999px;
	border: 1px solid transparent;
	font-weight: 700;
}

.button:hover,
.button:focus-visible,
.text-link:hover,
.text-link:focus-visible {
	transform: translateY(-1px);
}

.button-primary {
	background: var(--text);
	color: #f8f2e9;
}

.button-secondary {
	border-color: rgba(28, 23, 18, 0.15);
	background: rgba(255, 255, 255, 0.5);
}

.hero-visual {
	position: relative;
	min-height: 520px;
	display: grid;
	align-content: center;
	gap: 1.25rem;
}

.hero-visual::before {
	content: "";
	position: absolute;
	inset: 5% 10% auto auto;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(168, 120, 69, 0.35), transparent 70%);
	filter: blur(8px);
}

.hero-card,
.info-card,
.product-card,
.promo-panel {
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: var(--surface);
	box-shadow: var(--shadow);
}

.hero-card {
	position: relative;
	padding: 2rem;
	backdrop-filter: blur(12px);
}

.tall-card {
	min-height: 340px;
	background:
		linear-gradient(160deg, rgba(255, 255, 255, 0.74), rgba(222, 212, 199, 0.9)),
		linear-gradient(180deg, #d7c7b2, #f8f4ee);
}

.short-card {
	width: min(86%, 360px);
	justify-self: end;
	min-height: 150px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(245, 237, 226, 0.88)),
		linear-gradient(135deg, #e6daca, #f9f6f1);
}

.card-label {
	display: inline-flex;
	margin-bottom: 1rem;
	padding: 0.45rem 0.8rem;
	border-radius: 999px;
	background: rgba(28, 23, 18, 0.08);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--text);
}

.hero-card p {
	max-width: 18ch;
	color: var(--text);
	font-family: var(--font-heading);
	font-size: 2rem;
	line-height: 1;
}

.section-heading {
	margin-bottom: 2rem;
}

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

.info-card,
.promo-panel {
	padding: 1.8rem;
}

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

.product-card {
	overflow: hidden;
}

.product-image {
	min-height: 260px;
	display: flex;
	align-items: end;
	padding: 1.25rem;
	color: rgba(28, 23, 18, 0.9);
	font-family: var(--font-heading);
	font-size: 1.65rem;
}

.product-image span {
	display: inline-block;
	max-width: 9ch;
}

.product-image-sand {
	background: linear-gradient(145deg, #cfb393, #efe5d8 58%, #c29d72);
}

.product-image-stone {
	background: linear-gradient(160deg, #f5eee4, #ddd0c2 60%, #b6a692);
}

.product-image-ink {
	background: linear-gradient(145deg, #666c77, #1f2732 58%, #adb4bc);
	color: #f8f2e9;
}

.product-image-charcoal {
	background: linear-gradient(145deg, #77706a, #332e2c 58%, #beb3aa);
	color: #f8f2e9;
}

.product-copy {
	padding: 1.4rem;
}

.product-copy h3 {
	font-size: 2rem;
	margin: 0.45rem 0 0.7rem;
}

.product-note {
	min-height: 3.5rem;
}

.product-price {
	margin-top: 1rem;
	color: var(--text);
	font-weight: 700;
}

.promo-grid {
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.promo-text {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(244, 236, 226, 0.88)),
		#fbf7f1;
}

.promo-text h2+p,
.promo-text p+.text-link {
	margin-top: 1rem;
}

.text-link {
	display: inline-flex;
	align-items: center;
	margin-top: 1.5rem;
	font-weight: 700;
	color: var(--text);
}

.promo-quote {
	display: grid;
	align-content: center;
	background: linear-gradient(160deg, rgba(50, 41, 32, 0.96), rgba(80, 63, 46, 0.96));
}

.quote-mark {
	font-family: var(--font-heading);
	font-size: 5rem;
	color: rgba(248, 242, 233, 0.3);
	line-height: 0.8;
}

.quote-text {
	color: #f8f2e9;
	font-family: var(--font-heading);
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.02;
}

.site-footer {
	padding: 2rem 0 3rem;
}

.footer-grid {
	justify-content: space-between;
	align-items: start;
	gap: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(28, 23, 18, 0.12);
}

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

.footer-title {
	margin-bottom: 0.65rem;
	color: var(--text);
	font-weight: 700;
}

.footer-link,
.footer-copy {
	display: block;
	color: var(--muted);
}

.footer-link+.footer-link,
.footer-copy+.footer-copy {
	margin-top: 0.5rem;
}

@media (max-width: 1024px) {

	.hero-grid,
	.promo-grid,
	.info-grid,
	.featured-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hero-visual {
		min-height: 420px;
	}
}

@media (max-width: 720px) {

	.hero,
	.info-section,
	.featured-section,
	.promo-section {
		padding: 4rem 0;
	}

	.hero-grid,
	.promo-grid,
	.info-grid,
	.featured-grid,
	.footer-grid {
		display: grid;
		grid-template-columns: 1fr;
	}

	.header-inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.site-nav {
		width: 100%;
	}

	.hero-visual {
		min-height: auto;
	}

	.short-card {
		width: 100%;
		justify-self: stretch;
	}
}

@media (max-width: 480px) {
	.container {
		width: min(var(--container), calc(100% - 1.2rem));
	}

	.brand-mark {
		font-size: 1.6rem;
	}

	.hero-card,
	.info-card,
	.promo-panel,
	.product-copy {
		padding: 1.2rem;
	}

	.product-image {
		min-height: 220px;
	}
}