:root {
	--bg: #fbf8f1;
	--surface: #ffffff;
	--surface-soft: #efe8d7;
	--text: #1f1f1a;
	--text-soft: #5d5b53;
	--brand: #8d6b10;
	--brand-strong: #6f540a;
	--line: #d8ccb0;
	--header-offset-desktop: 212px;
	--header-offset-mobile: 182px;
	--logo-small-desktop: 145px;
	--logo-large-desktop: 220px;
	--logo-small-mobile: 156px;
	--logo-large-mobile: 190px;
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	font-family: "Work Sans", sans-serif;
	background: radial-gradient(circle at 15% -15%, #fffefb 0%, var(--bg) 50%, #f4eddf 100%);
	color: var(--text);
	line-height: 1.5;
}

h1,
h2,
h3 {
	font-family: "Plus Jakarta Sans", sans-serif;
	margin: 0;
}

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

input[name="reference_taco"],
.hp-field {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.site-shell {
	width: min(1280px, 92vw);
	margin: 0 auto;
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background: color-mix(in srgb, #fbf8f1 80%, white 20%);
	backdrop-filter: blur(8px);
}

main {
	padding-top: var(--header-offset-desktop);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 0;
	gap: 24px;
}

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

.brand img {
	width: var(--logo-small-desktop);
	height: auto;
	display: block;
	transition: width 220ms ease;
}

.site-header.logo-expanded .brand img {
	width: var(--logo-large-desktop);
}

.main-nav {
	display: none;
	align-items: center;
	gap: 32px;
	font-weight: 500;
}

.main-nav a {
	color: var(--text-soft);
}

.main-nav a:hover {
	color: var(--brand-strong);
}

.header-actions {
	display: flex;
	align-items: center;
	flex-direction: row;
	gap: 16px;
}

.header-call {
	order: 1;
	display: none;
	font-weight: 700;
	border-radius: 999px;
	border: 1px solid #b9a46a;
	color: #5f490f;
	background: #efe1bc;
	padding: 8px 24px;
}

.header-cta {
	order: 2;
	font-weight: 700;
	border-radius: 999px;
	background: linear-gradient(130deg, #9b7815, #c99d1e);
	color: #fff;
	padding: 8px 24px;
	white-space: nowrap;
	box-shadow: 0 10px 20px rgba(111, 84, 10, 0.22);
}

.hero {
	padding: 48px 0 88px;
	min-height: calc(100vh - var(--header-offset-desktop) + 48px);
	display: flex;
	align-items: center;
}

.hero-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 44px;
}

.hero-kicker {
	display: inline-block;
	margin: 0 0 14px;
	padding: 6px 12px;
	border-radius: 999px;
	background: #e7dab9;
	color: #5f490f;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 0.08em;
}

.hero h1 {
	font-size: clamp(2.45rem, 5.4vw, 5rem);
	line-height: 1.02;
	max-width: 16ch;
}

.hero-highlight {
	color: #735c00;
	font-weight: 800;
}

.hero-text {
	color: var(--text-soft);
	font-size: clamp(1.08rem, 1.35vw, 1.35rem);
	max-width: 54ch;
	margin: 22px 0 0;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.btn {
	display: inline-block;
	border-radius: 999px;
	padding: 12px 20px;
	font-weight: 700;
}

.btn-primary {
	color: white;
	background: linear-gradient(130deg, #8d6b10, #bd9627);
}

.btn-secondary {
	background: var(--surface-soft);
	color: #433b2a;
}

.hero-art img {
	width: min(100%, 620px);
	display: block;
	margin-inline: auto;
}

.section {
	padding: 56px 0;
}

.section h2 {
	font-size: clamp(1.8rem, 3.4vw, 2.5rem);
}

.section-lead {
	margin: 10px 0 0;
	color: var(--text-soft);
}

.steps-grid {
	margin-top: 24px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 20px;
}

.card h3 {
	margin-bottom: 8px;
}

.card p {
	margin: 0;
	color: var(--text-soft);
}

.site-footer {
	width: 100%;
	margin-top: 3rem;
	background: #f0eee9;
	border-radius: 1.5rem 1.5rem 0 0;
}

.footer-inner {
	width: min(1280px, 92vw);
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 3rem 0;
}

.footer-brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
}

.footer-brand img {
	height: 40px;
	width: auto;
}

.footer-brand p {
	margin: 0;
	font-size: 0.875rem;
	color: #4d4635;
	text-align: center;
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem;
	color: #4d4635;
	font-weight: 500;
}

.footer-links a {
	opacity: 0.8;
	text-underline-offset: 4px;
	transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-links a:hover {
	opacity: 1;
	color: #735c00;
}

@media (max-width: 900px) {
	main {
		padding-top: var(--header-offset-mobile);
	}

	.header-inner {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 0.35rem;
		padding: 10px 0 12px;
	}

	.header-actions {
		width: 100%;
		justify-content: center;
		padding-right: 0;
	}

	.header-cta {
		font-size: 0.98rem;
		padding: 10px 18px;
	}

	.brand img {
		width: var(--logo-small-mobile);
	}

	.site-header.logo-expanded .brand img {
		width: var(--logo-large-mobile);
	}

	.hero {
		padding-top: 24px;
		min-height: calc(100vh - var(--header-offset-mobile) + 32px);
	}

	.hero-inner {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.hero h1 {
		font-size: clamp(2.2rem, 9vw, 3.2rem);
	}

	.hero-text {
		font-size: 1.08rem;
	}

	.hero-art img {
		width: min(100%, 520px);
	}

	.hero-art {
		display: none;
	}

	.hero-kicker {
		display: none;
	}

	.hero-copy {
		text-align: center;
	}

	.hero-actions .btn-primary {
		display: none;
	}

	.hero-actions {
		justify-content: center;
	}

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

	.footer-brand p {
		text-align: center;
	}
}

@media (min-width: 768px) {
	.footer-inner {
		flex-direction: row;
	}

	.footer-brand {
		align-items: flex-start;
	}

	.footer-brand p {
		text-align: left;
	}
}

@media (min-width: 768px) {
	.main-nav {
		display: flex;
	}
}

@media (min-width: 1024px) {
	.header-call {
		display: inline-flex;
	}
}

.material-symbols-outlined {
	font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Prototype-aligned How It Works section */
#how-it-works {
	padding-top: 96px;
	padding-bottom: 96px;
	background: #f5f3ee;
}

#how-it-works > .max-w-7xl {
	max-width: 80rem;
	margin-inline: auto;
	padding-inline: 2rem;
}

#how-it-works .text-center {
	text-align: center;
	margin-bottom: 5rem;
}

#how-it-works h2 {
	font-size: 2.25rem;
	line-height: 1.1;
	font-weight: 900;
	color: #1b1c19;
	margin-bottom: 1rem;
}

#how-it-works .text-center p {
	max-width: 42rem;
	margin-inline: auto;
	color: #4d4635;
}

#how-it-works .grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr;
}

#how-it-works .grid > div {
	background: #ffffff;
	padding: 2.5rem;
	border-radius: 2rem;
	position: relative;
	overflow: hidden;
	transition: background-color 0.2s ease;
}

#how-it-works .grid > div:hover {
	background: #fbf9f4;
}

#how-it-works .grid > div > span:first-child {
	font-size: 6rem;
	line-height: 1;
	font-weight: 900;
	color: rgba(115, 92, 0, 0.06);
	position: absolute;
	top: -1rem;
	right: -1rem;
}

#how-it-works .grid > div > div {
	width: 4rem;
	height: 4rem;
	border-radius: 1rem;
	background: rgba(115, 92, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #735c00;
	margin-bottom: 1.5rem;
}

#how-it-works .grid .material-symbols-outlined {
	font-size: 1.875rem;
}

#how-it-works h3 {
	font-size: 1.5rem;
	line-height: 1.2;
	font-weight: 700;
	margin-bottom: 1rem;
}

#how-it-works .grid p {
	margin: 0;
	color: #4d4635;
	line-height: 1.625;
}

@media (min-width: 768px) {
	#how-it-works h2 {
		font-size: 3rem;
	}

	#how-it-works .grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

/* Prototype-aligned What I Buy section */
#what-i-buy {
	padding-top: 96px;
	padding-bottom: 96px;
	background: #fbf9f4;
}

#what-i-buy > .max-w-7xl {
	max-width: 80rem;
	margin-inline: auto;
	padding-inline: 2rem;
}

.what-buy-header {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
	gap: 2rem;
	margin-bottom: 4rem;
}

#what-i-buy .max-w-xl {
	max-width: 36rem;
}

#what-i-buy h2 {
	font-size: 2.25rem;
	line-height: 2.5rem;
	font-weight: 900;
	margin-bottom: 1rem;
	color: #1b1c19;
}

#what-i-buy .max-w-xl p {
	margin: 0;
	color: #4d4635;
	line-height: 1.5rem;
}

.what-buy-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 1.5rem 1rem 1rem;
	min-height: 4.5rem;
	border-radius: 9999px;
	background: rgba(212, 175, 55, 0.1);
	line-height: 1;
}

.what-buy-pill-icon {
	width: 2.5rem;
	height: 2.5rem;
	min-width: 2.5rem;
	border-radius: 9999px;
	background: #d4af37;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #554300;
	flex: 0 0 auto;
}

.what-buy-pill-icon .material-symbols-outlined {
	display: block;
	font-size: 0.875rem;
	line-height: 1;
	font-variation-settings: 'FILL' 1;
}

.what-buy-pill-text {
	display: inline-flex;
	align-items: center;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.25rem;
	color: #735c00;
	white-space: nowrap;
}

.what-buy-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
}

.what-buy-card {
	background: #f0eee9;
	border-radius: 2rem;
	padding: 1.5rem;
	text-align: center;
	transition-property: all;
	transition-duration: 300ms;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.what-buy-card:hover {
	background: rgba(212, 175, 55, 0.2);
}

.what-buy-icon-wrap {
	margin: 0 auto 1rem;
	width: 100%;
	max-width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 999px;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition-property: transform;
	transition-duration: 300ms;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.what-buy-card:hover .what-buy-icon-wrap {
	transform: scale(1.1);
}

#what-i-buy .grid .material-symbols-outlined {
	font-size: 3rem;
	line-height: 1;
	color: #735c00;
	font-variation-settings: 'FILL' 1;
}

.what-buy-card-title {
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-weight: 700;
	margin: 0;
	color: #1b1c19;
}

.what-buy-card-subtext {
	margin: 0.5rem 0 0;
	font-size: 0.875rem;
	line-height: 1.25rem;
	color: #4d4635;
}

@media (min-width: 768px) {
	.what-buy-header {
		flex-direction: row;
		align-items: flex-end;
	}

	#what-i-buy h2 {
		font-size: 3rem;
		line-height: 1;
	}

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

/* Prototype-aligned Hi, I'm Mark section */
#about-mark {
	padding-top: 96px;
	padding-bottom: 96px;
	background: #f0eee9;
}

#about-mark > .max-w-7xl {
	max-width: 80rem;
	margin-inline: auto;
	padding-inline: 2rem;
	position: relative;
}

.about-mark-grid {
	display: grid;
	gap: 3rem;
	align-items: center;
}

.about-mark-media-col {
	position: relative;
}

.about-mark-photo-card {
	background: #ffffff;
	border-radius: 1.5rem;
	padding: 1.5rem;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	transform: rotate(-3deg);
	display: flex;
	align-items: center;
	justify-content: center;
}

.about-mark-photo {
	border-radius: 0.75rem;
	width: 100%;
	max-width: 24rem;
	height: auto;
	object-fit: contain;
	display: block;
}

.about-mark-copy h2 {
	font-size: 2.25rem;
	line-height: 1;
	font-weight: 900;
	color: #1b1c19;
	margin-bottom: 2rem;
}

.about-mark-body {
	display: grid;
	gap: 1.5rem;
	font-size: 1.125rem;
	line-height: 1.625;
	color: #4d4635;
}

.about-mark-body p {
	margin: 0;
}

.about-mark-quote {
	font-weight: 700;
	font-style: italic;
	color: #735c00;
}

@media (min-width: 1024px) {
	.about-mark-grid {
		grid-template-columns: repeat(12, minmax(0, 1fr));
	}

	.about-mark-media-col {
		grid-column: span 5 / span 5;
	}

	.about-mark-copy {
		grid-column: span 7 / span 7;
		padding-left: 3rem;
	}
}

/* Prototype-aligned Testimonials section */
#testimonials {
	padding-top: 96px;
	padding-bottom: 96px;
	background: #fbf9f4;
}

#testimonials > .max-w-7xl {
	max-width: 80rem;
	margin-inline: auto;
	padding-inline: 2rem;
}

#testimonials .text-center {
	text-align: center;
	margin-bottom: 4rem;
}

#testimonials h2 {
	font-size: 2.25rem;
	line-height: 2.5rem;
	font-weight: 900;
	margin: 0 0 1rem;
	color: #1b1c19;
}

#testimonials .grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr;
}

#testimonials .grid > div {
	background: #f5f3ee;
	padding: 2rem;
	border-radius: 2rem;
	position: relative;
	margin-top: 1.5rem;
}

#testimonials .grid > div > div {
	position: absolute;
	top: -1.5rem;
	left: 1.5rem;
	width: 3rem;
	height: 3rem;
	border-radius: 9999px;
	background: #d4af37;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #554300;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

#testimonials .grid > div > p:first-of-type {
	color: #4d4635;
	font-style: italic;
	margin: 0 0 1.5rem;
	line-height: 1.625;
	padding-top: 1rem;
}

#testimonials .grid > div > p:last-of-type {
	margin: 0;
	font-weight: 700;
	color: #1b1c19;
}

@media (min-width: 768px) {
	#testimonials .grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	#testimonials .grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

/* Prototype-aligned Ready to Sell section */
#book {
	padding-top: 96px;
	padding-bottom: 96px;
	background: #735c00;
	color: #ffffff;
	overflow: hidden;
}

#book > .max-w-7xl {
	max-width: 80rem;
	margin-inline: auto;
	padding-inline: 2rem;
	position: relative;
}

#book > .max-w-7xl > .grid {
	display: grid;
	gap: 4rem;
	align-items: center;
	grid-template-columns: 1fr;
}

#book h2 {
	font-size: 2.25rem;
	line-height: 2.5rem;
	font-weight: 900;
	margin: 0 0 1.5rem;
	color: #ffffff;
}

#book h2 + p {
	margin: 0 0 2.5rem;
	font-size: 1.125rem;
	line-height: 1.625;
	color: #ffe088;
}

#book .space-y-6 {
	display: grid;
	gap: 1.5rem;
}

#book .space-y-6 .flex {
	display: flex;
	align-items: center;
	gap: 1rem;
}

#book .space-y-6 .flex > div:first-child {
	width: 3rem;
	height: 3rem;
	border-radius: 9999px;
	background: rgba(212, 175, 55, 0.2);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

#book .space-y-6 .flex > div:first-child .material-symbols-outlined {
	font-size: 1.5rem;
	line-height: 1;
}

#book .space-y-6 .flex p {
	margin: 0;
}

#book .space-y-6 .flex p.text-sm {
	font-size: 0.875rem;
	opacity: 0.7;
}

#book .space-y-6 .flex p.font-bold {
	font-size: 1.25rem;
	font-weight: 700;
	color: #ffffff;
}

#book .bg-surface-container-lowest {
	background: #ffffff;
	border-radius: 1.5rem;
	padding: 2rem;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
	color: #1b1c19;
}

#book form {
	display: grid;
	gap: 1.5rem;
}

#book form .grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

#book form .space-y-2 {
	display: grid;
	gap: 0.5rem;
}

#book form label {
	font-weight: 700;
	font-size: 0.875rem;
	margin-left: 0.25rem;
	color: #1b1c19;
}

#book form input,
#book form textarea {
	width: 100%;
	padding: 1rem 1.5rem;
	border-radius: 9999px;
	background: #e4e2dd;
	border: none;
	outline: none;
	font: inherit;
	color: #1b1c19;
	transition: all 0.2s ease;
}

#book form textarea {
	border-radius: 1rem;
	min-height: 104px;
	resize: vertical;
}

#book form input:focus,
#book form textarea:focus {
	box-shadow: 0 0 0 2px rgba(115, 92, 0, 0.4);
	background: #ffffff;
}

#book form button {
	width: 100%;
	padding: 1.25rem;
	border-radius: 9999px;
	border: none;
	background: linear-gradient(90deg, #735c00 0%, #d4af37 100%);
	color: #ffffff;
	font-size: 1.25rem;
	font-weight: 700;
	cursor: pointer;
	transform: scale(0.98);
	transition: transform 0.2s ease;
	box-shadow: 0 10px 20px rgba(115, 92, 0, 0.2);
}

#book form button:active {
	transform: scale(0.95);
}

@media (min-width: 768px) {
	#book h2 {
		font-size: 3rem;
		line-height: 1;
	}

	#book .bg-surface-container-lowest {
		padding: 3rem;
	}

	#book form .grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	#book > .max-w-7xl > .grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
