@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible+Next:opsz,wght@12..72,400;12..72,500;12..72,600;12..72,700&family=Bricolage+Grotesque:opsz,wght@12..96,600;12..96,700;12..96,800&display=swap');

:root {
	--ink: oklch(0.19 0.025 66);
	--ink-raised: oklch(0.25 0.026 66);
	--ink-muted: oklch(0.48 0.02 66);
	--paper: oklch(0.975 0.012 86);
	--paper-deep: oklch(0.935 0.026 86);
	--sun: oklch(0.86 0.18 91);
	--sun-soft: oklch(0.93 0.105 92);
	--pepper: oklch(0.58 0.225 27);
	--pepper-dark: oklch(0.44 0.185 27);
	--cream-text: oklch(0.96 0.013 86);
	--line: oklch(0.82 0.025 82);
	--success: oklch(0.48 0.105 144);
	--font-display: 'Bricolage Grotesque', 'Arial Black', sans-serif;
	--font-body: 'Atkinson Hyperlegible Next', Arial, sans-serif;
	--shadow-low: 0 10px 30px oklch(0.19 0.025 66 / 0.1);
	--shadow-high: 0 24px 60px oklch(0.12 0.02 66 / 0.24);
	--radius-sm: 0.55rem;
	--radius-md: 1rem;
	--radius-lg: 1.7rem;
	--content: 72rem;
	--reading: 70ch;
	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 6rem;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 1.075rem;
	line-height: 1.62;
	-webkit-font-smoothing: antialiased;
}

body::selection {
	background: var(--pepper);
	color: var(--cream-text);
}

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

a {
	color: inherit;
	text-underline-offset: 0.18em;
}

a:hover {
	text-decoration-thickness: 0.12em;
}

button,
a,
summary {
	-webkit-tap-highlight-color: transparent;
}

:focus-visible {
	outline: 3px solid var(--pepper);
	outline-offset: 4px;
}

h1,
h2,
h3,
h4 {
	font-family: var(--font-display);
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 0.98;
	margin: 0;
}

h1 {
	font-size: clamp(3.3rem, 9vw, 7.4rem);
}

h2 {
	font-size: clamp(2.45rem, 5vw, 4.8rem);
}

h3 {
	font-size: clamp(1.55rem, 2.5vw, 2.1rem);
	line-height: 1.08;
}

p {
	margin: 0;
}

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

.narrow {
	max-width: var(--reading);
}

.skip-link {
	position: fixed;
	left: 1rem;
	top: 0.75rem;
	z-index: 100;
	transform: translateY(-150%);
	background: var(--sun);
	color: var(--ink);
	font-weight: 800;
	padding: 0.7rem 1rem;
	border-radius: var(--radius-sm);
	transition: transform 180ms var(--ease-out);
}

.skip-link:focus {
	transform: translateY(0);
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	font-family: var(--font-display);
	font-size: 0.77rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	line-height: 1.2;
	text-transform: uppercase;
}

.eyebrow::before {
	content: '';
	width: 1.9rem;
	height: 0.22rem;
	background: currentColor;
	border-radius: 999px;
}

.section-copy {
	max-width: 60ch;
	color: var(--ink-muted);
	font-size: clamp(1.08rem, 2vw, 1.25rem);
}

.section-heading {
	display: grid;
	gap: 1.25rem;
	margin-bottom: clamp(2.5rem, 6vw, 5.2rem);
}

.section-heading h2 {
	max-width: 13ch;
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3.25rem;
	padding: 0.82rem 1.25rem;
	border: 2px solid var(--ink);
	border-radius: var(--radius-sm);
	font-family: var(--font-display);
	font-size: 0.98rem;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	transition:
		transform 220ms var(--ease-out),
		box-shadow 220ms var(--ease-out),
		background-color 160ms ease,
		color 160ms ease;
}

.button:hover {
	transform: translateY(-3px);
	box-shadow: 0 7px 0 var(--ink);
	text-decoration: none;
}

.button:active {
	transform: translateY(0);
	box-shadow: 0 2px 0 var(--ink);
}

.button-dark {
	background: var(--ink);
	color: var(--cream-text);
}

.button-light {
	background: var(--paper);
	color: var(--ink);
}

.store-button {
	gap: 0.65rem;
}

.store-button svg {
	width: 1.35rem;
	height: 1.35rem;
	flex: 0 0 auto;
}

.button-red {
	background: var(--pepper);
	border-color: var(--pepper);
	color: var(--cream-text);
}

.button-red:hover {
	box-shadow: 0 7px 0 var(--pepper-dark);
}

.text-link {
	font-family: var(--font-display);
	font-weight: 800;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--ink);
	color: var(--cream-text);
	border-bottom: 1px solid oklch(0.96 0.013 86 / 0.15);
}

.nav-shell {
	min-height: 5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	font-family: var(--font-display);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1;
	text-decoration: none;
}

.brand img {
	width: 2.85rem;
	height: 2.85rem;
	object-fit: contain;
}

.brand span {
	max-width: 8rem;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: clamp(0.85rem, 2.2vw, 1.55rem);
}

.nav-links a:not(.button) {
	font-size: 0.93rem;
	font-weight: 700;
	text-decoration: none;
}

.nav-links a:not(.button):hover,
.nav-links a[aria-current='page'] {
	color: var(--sun);
}

.nav-links .button {
	min-height: 2.75rem;
	padding: 0.65rem 1rem;
	background: var(--sun);
	border-color: var(--sun);
	color: var(--ink);
}

.hero {
	position: relative;
	overflow: hidden;
	background: var(--sun);
	padding: clamp(4.5rem, 9vw, 8rem) 0 clamp(5rem, 10vw, 9rem);
}

.hero::before,
.hero::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}

.hero::before {
	width: clamp(8rem, 18vw, 15rem);
	aspect-ratio: 1;
	right: -4rem;
	top: -5rem;
	background: var(--pepper);
}

.hero::after {
	width: clamp(12rem, 27vw, 25rem);
	aspect-ratio: 1;
	left: -11rem;
	bottom: -15rem;
	border: clamp(2.3rem, 5vw, 5rem) solid var(--ink);
}

.hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(17rem, 0.65fr);
	align-items: center;
	gap: clamp(2.5rem, 7vw, 7rem);
}

.hero-copy {
	display: grid;
	gap: 1.5rem;
}

.hero-copy h1 {
	max-width: 9ch;
}

.hero-copy h1 span {
	display: block;
	color: var(--pepper);
}

.hero-copy > p {
	max-width: 52ch;
	font-size: clamp(1.15rem, 2vw, 1.38rem);
	font-weight: 500;
}

.hero-contact {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.8rem 1.25rem;
	font-size: 0.98rem;
	font-weight: 700;
}

.hero-device {
	position: relative;
	justify-self: center;
	width: min(100%, 22rem);
	background: var(--ink);
	padding: 1.25rem;
	border-radius: 2.25rem;
	box-shadow: var(--shadow-high);
	transform: rotate(2.5deg);
}

.hero-device img {
	width: 100%;
	border-radius: 1.25rem;
}

.hero-stamp {
	position: absolute;
	left: -3rem;
	bottom: 2rem;
	width: 7.5rem;
	aspect-ratio: 1;
	display: grid;
	place-items: center;
	padding: 0.9rem;
	background: var(--pepper);
	color: var(--cream-text);
	border: 3px solid var(--ink);
	border-radius: 50%;
	font-family: var(--font-display);
	font-size: 0.85rem;
	font-weight: 800;
	line-height: 1.05;
	text-align: center;
	text-transform: uppercase;
	transform: rotate(-10deg);
}

.business-strip {
	background: var(--ink);
	color: var(--cream-text);
	padding: 1rem 0;
}

.business-strip .container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.4rem 2rem;
	font-size: 0.92rem;
}

.business-strip strong {
	color: var(--sun);
}

.menu-section {
	padding: clamp(5.5rem, 11vw, 10rem) 0;
}

.menu-layout {
	display: grid;
	grid-template-columns: minmax(14rem, 0.65fr) minmax(0, 1.35fr);
	gap: clamp(2.5rem, 7vw, 7rem);
	align-items: start;
}

.menu-intro {
	position: sticky;
	top: 7.5rem;
	display: grid;
	gap: 1.25rem;
}

.menu-intro h2 {
	max-width: 7ch;
}

.menu-board {
	background: var(--ink);
	color: var(--cream-text);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-high);
	overflow: hidden;
}

.menu-row {
	display: grid;
	grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
	gap: 1.5rem;
	padding: clamp(1.6rem, 4vw, 2.7rem);
	border-bottom: 1px solid oklch(0.96 0.013 86 / 0.17);
}

.menu-row-food {
	grid-template-columns: clamp(9rem, 18vw, 12.5rem) minmax(0, 1fr);
	align-items: center;
	padding-block: clamp(1.25rem, 3vw, 2rem);
}

.menu-dish {
	width: 100%;
	height: auto;
	filter: drop-shadow(0 1rem 1.25rem oklch(0.08 0.015 66 / 0.35));
}

.menu-row-copy {
	display: grid;
	grid-template-columns: minmax(7rem, 0.65fr) minmax(0, 1.35fr);
	gap: 1.5rem;
	align-items: start;
}

.menu-row:last-child {
	border-bottom: 0;
}

.menu-row:nth-child(2) {
	background: var(--pepper);
}

.menu-row h3 {
	color: var(--sun);
}

.menu-row:nth-child(2) h3 {
	color: var(--cream-text);
}

.menu-row p {
	color: oklch(0.88 0.02 86);
}

.story-section {
	position: relative;
	overflow: hidden;
	background: var(--pepper);
	color: var(--cream-text);
	padding: clamp(5.5rem, 11vw, 10rem) 0;
}

.story-section::after {
	content: '';
	position: absolute;
	right: -7rem;
	top: 8rem;
	width: 19rem;
	aspect-ratio: 1;
	border: 3.5rem solid var(--sun);
	border-radius: 50%;
	opacity: 0.85;
}

.story-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(13rem, 0.55fr) minmax(0, 1.45fr);
	gap: clamp(2.5rem, 8vw, 8rem);
	align-items: center;
}

.story-mark {
	display: grid;
	place-items: center;
	aspect-ratio: 1;
	background: var(--ink);
	border-radius: 50%;
	box-shadow: 1.3rem 1.3rem 0 var(--sun);
}

.story-mark img {
	width: 82%;
}

.story-copy {
	display: grid;
	gap: 1.5rem;
}

.story-copy h2 {
	max-width: 12ch;
}

.story-copy p {
	max-width: 59ch;
	font-size: clamp(1.08rem, 2vw, 1.27rem);
}

.story-copy .text-link {
	justify-self: start;
	color: var(--sun);
}

.order-section {
	padding: clamp(5.5rem, 11vw, 10rem) 0;
}

.order-steps {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-top: 2px solid var(--ink);
	border-bottom: 2px solid var(--ink);
}

.order-step {
	padding: 2rem 1.35rem 2.5rem;
	border-right: 1px solid var(--line);
}

.order-step:last-child {
	border-right: 0;
}

.step-number {
	display: block;
	margin-bottom: 2.5rem;
	font-family: var(--font-display);
	font-size: 3.8rem;
	font-weight: 800;
	line-height: 1;
	color: var(--pepper);
}

.order-step h3 {
	margin-bottom: 0.8rem;
	font-size: 1.35rem;
}

.order-step p {
	color: var(--ink-muted);
	font-size: 0.98rem;
}

.app-section {
	background: var(--ink);
	color: var(--cream-text);
	padding: clamp(5.5rem, 11vw, 10rem) 0;
}

.app-heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.65fr);
	align-items: end;
	gap: 2.5rem;
	margin-bottom: 3.5rem;
}

.app-heading h2 {
	max-width: 11ch;
	color: var(--sun);
}

.app-heading p {
	color: oklch(0.82 0.02 86);
}

.screen-track {
	display: flex;
	gap: 1.2rem;
	overflow-x: auto;
	padding: 0.5rem 0.25rem 2rem;
	scroll-snap-type: x mandatory;
	scrollbar-color: var(--sun) var(--ink-raised);
}

.screen-track figure {
	flex: 0 0 min(18.5rem, 75vw);
	margin: 0;
	scroll-snap-align: start;
}

.screen-track img {
	width: 100%;
	border: 1px solid oklch(0.96 0.013 86 / 0.18);
	border-radius: 1.35rem;
	box-shadow: var(--shadow-high);
}

.screen-track figcaption {
	margin-top: 0.85rem;
	font-size: 0.9rem;
	font-weight: 700;
	color: oklch(0.8 0.025 86);
}

.store-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: 2.25rem;
}

.fulfilment-section {
	padding: clamp(5.5rem, 11vw, 10rem) 0;
}

.fulfilment-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border: 2px solid var(--ink);
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.fulfilment-panel {
	padding: clamp(2rem, 5vw, 4.2rem);
}

.fulfilment-panel:first-child {
	background: var(--sun);
	border-right: 2px solid var(--ink);
}

.fulfilment-panel:last-child {
	background: var(--paper-deep);
}

.fulfilment-panel h2 {
	font-size: clamp(2.25rem, 4vw, 3.7rem);
	margin-bottom: 1.25rem;
}

.fulfilment-panel p {
	max-width: 43ch;
	margin-bottom: 1.5rem;
}

.plain-list {
	padding: 0;
	margin: 1.5rem 0 0;
	list-style: none;
}

.plain-list li {
	position: relative;
	padding: 0.75rem 0 0.75rem 1.75rem;
	border-top: 1px solid oklch(0.19 0.025 66 / 0.2);
}

.plain-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	font-weight: 800;
	color: var(--success);
}

.feedback-section {
	background: var(--sun);
	padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}

.feedback-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 2.5rem;
}

.feedback-grid h2 {
	max-width: 13ch;
	margin-bottom: 1rem;
}

.feedback-grid p {
	max-width: 56ch;
}

.faq-section {
	padding: clamp(5.5rem, 11vw, 9rem) 0;
}

.faq-layout {
	display: grid;
	grid-template-columns: minmax(13rem, 0.55fr) minmax(0, 1.45fr);
	gap: clamp(2.5rem, 7vw, 7rem);
	align-items: start;
}

.faq-intro {
	display: grid;
	gap: 1.25rem;
}

.faq-list {
	border-top: 2px solid var(--ink);
}

.faq-list details {
	border-bottom: 1px solid var(--line);
}

.faq-list summary {
	position: relative;
	cursor: pointer;
	list-style: none;
	padding: 1.5rem 3rem 1.5rem 0;
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: 800;
	line-height: 1.25;
}

.faq-list summary::-webkit-details-marker {
	display: none;
}

.faq-list summary::after {
	content: '+';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.8rem;
	color: var(--pepper);
}

.faq-list details[open] summary::after {
	content: '−';
}

.faq-answer {
	max-width: 62ch;
	padding: 0 2.5rem 1.5rem 0;
	color: var(--ink-muted);
}

.final-cta {
	background: var(--pepper);
	color: var(--cream-text);
	padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.final-cta-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	gap: 2.5rem;
}

.final-cta h2 {
	max-width: 12ch;
}

.final-cta p {
	max-width: 48ch;
	margin-top: 1rem;
}

.site-footer {
	background: var(--ink);
	color: var(--cream-text);
	padding: 4rem 0 2rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.75fr 0.75fr;
	gap: 3rem;
	padding-bottom: 3rem;
}

.footer-about {
	display: grid;
	align-content: start;
	gap: 1rem;
}

.footer-about p {
	max-width: 42ch;
	color: oklch(0.78 0.02 86);
}

.footer-heading {
	margin-bottom: 0.85rem;
	font-family: var(--font-display);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--sun);
}

.footer-links {
	display: grid;
	align-content: start;
	gap: 0.55rem;
}

.footer-links a {
	justify-self: start;
	color: oklch(0.86 0.018 86);
}

.footer-bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.75rem 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid oklch(0.96 0.013 86 / 0.14);
	font-size: 0.86rem;
	color: oklch(0.7 0.02 86);
}

/* Interior pages */
.page-hero {
	position: relative;
	overflow: hidden;
	background: var(--sun);
	padding: clamp(4rem, 8vw, 7rem) 0;
}

.page-hero::after {
	content: '';
	position: absolute;
	right: -5rem;
	top: -5rem;
	width: 18rem;
	aspect-ratio: 1;
	border: 3.5rem solid var(--pepper);
	border-radius: 50%;
}

.page-hero .container {
	position: relative;
	z-index: 1;
}

.page-hero h1 {
	max-width: 11ch;
	font-size: clamp(3.2rem, 8vw, 6.5rem);
	margin: 1rem 0 1.4rem;
}

.page-hero p {
	max-width: 58ch;
	font-size: clamp(1.12rem, 2vw, 1.32rem);
	font-weight: 500;
}

.page-hero-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.5rem;
	margin-top: 1.4rem;
	font-size: 0.94rem;
	font-weight: 700;
}

.content-section {
	padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.content-section + .content-section {
	border-top: 1px solid var(--line);
}

.content-grid {
	display: grid;
	grid-template-columns: minmax(13rem, 0.65fr) minmax(0, 1.35fr);
	gap: clamp(2.5rem, 7vw, 7rem);
	align-items: start;
}

.content-grid h2 {
	font-size: clamp(2.25rem, 4.5vw, 4.1rem);
}

.prose {
	max-width: var(--reading);
}

.prose > * + * {
	margin-top: 1.25rem;
}

.prose h2,
.prose h3 {
	scroll-margin-top: 7rem;
}

.prose h2 {
	font-size: clamp(2rem, 3.6vw, 3rem);
	line-height: 1.05;
	margin-top: 3.5rem;
}

.prose h3 {
	font-size: 1.45rem;
	line-height: 1.15;
	margin-top: 2.25rem;
}

.prose p,
.prose li {
	color: oklch(0.34 0.024 66);
}

.prose strong {
	color: var(--ink);
}

.prose ul,
.prose ol {
	padding-left: 1.35rem;
}

.prose li + li {
	margin-top: 0.55rem;
}

.policy-callout {
	padding: 1.35rem;
	background: var(--sun-soft);
	border: 1px solid oklch(0.69 0.15 89);
	border-radius: var(--radius-md);
}

.policy-callout p {
	color: var(--ink);
}

.legal-shell {
	display: grid;
	grid-template-columns: minmax(12rem, 0.48fr) minmax(0, 1.52fr);
	gap: clamp(2.5rem, 7vw, 7rem);
	align-items: start;
}

.toc {
	position: sticky;
	top: 7rem;
	padding: 1.2rem;
	background: var(--paper-deep);
	border-radius: var(--radius-md);
}

.toc strong {
	display: block;
	font-family: var(--font-display);
	margin-bottom: 0.75rem;
}

.toc a {
	display: block;
	padding: 0.35rem 0;
	font-size: 0.92rem;
	color: var(--ink-muted);
}

.business-facts {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
	gap: 1px;
	background: var(--ink);
	border: 2px solid var(--ink);
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.business-fact {
	background: var(--paper);
	padding: 1.6rem;
}

.business-fact span {
	display: block;
	margin-bottom: 0.45rem;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	color: var(--pepper);
}

.business-fact strong {
	font-family: var(--font-display);
	font-size: 1.12rem;
}

.contact-board {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
	border: 2px solid var(--ink);
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.contact-primary,
.contact-secondary {
	padding: clamp(2rem, 5vw, 4rem);
}

.contact-primary {
	background: var(--sun);
	border-right: 2px solid var(--ink);
}

.contact-secondary {
	background: var(--ink);
	color: var(--cream-text);
}

.contact-board h2 {
	font-size: clamp(2.3rem, 4vw, 3.8rem);
	margin-bottom: 1.15rem;
}

.contact-board .button-row {
	margin-top: 1.5rem;
}

.contact-secondary a {
	color: var(--sun);
}

@media (max-width: 900px) {
	.nav-links a:not(.button):nth-child(3),
	.nav-links a:not(.button):nth-child(4) {
		display: none;
	}

	.hero-grid,
	.menu-layout,
	.story-grid,
	.faq-layout,
	.content-grid,
	.legal-shell {
		grid-template-columns: 1fr;
	}

	.hero-copy {
		justify-items: start;
	}

	.hero-device {
		width: min(72vw, 21rem);
		justify-self: start;
		margin-left: clamp(1.5rem, 12vw, 7rem);
	}

	.menu-intro,
	.toc {
		position: static;
	}

	.story-mark {
		width: min(15rem, 65vw);
	}

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

	.order-step:nth-child(2) {
		border-right: 0;
	}

	.order-step:nth-child(-n + 2) {
		border-bottom: 1px solid var(--line);
	}

	.app-heading,
	.feedback-grid,
	.final-cta-grid {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.footer-grid {
		grid-template-columns: 1.4fr 1fr;
	}

	.footer-about {
		grid-column: 1 / -1;
	}
}

@media (max-width: 650px) {
	body {
		font-size: 1rem;
	}

	.container {
		width: min(100% - 1.25rem, var(--content));
	}

	.nav-shell {
		min-height: 4.5rem;
	}

	.brand span {
		display: none;
	}

	.brand img {
		width: 2.6rem;
		height: 2.6rem;
	}

	.nav-links {
		gap: 0.75rem;
	}

	.nav-links a:not(.button) {
		display: none;
	}

	.nav-links .button {
		font-size: 0.9rem;
	}

	.hero {
		padding-top: 3.75rem;
	}

	.hero-contact {
		align-items: flex-start;
		flex-direction: column;
	}

	.hero-device {
		width: min(78vw, 19rem);
		margin-left: 1rem;
	}

	.hero-stamp {
		left: -1.5rem;
		width: 6.6rem;
	}

	.business-strip .container {
		display: grid;
	}

	.menu-row {
		grid-template-columns: 1fr;
		gap: 0.8rem;
	}

	.menu-dish {
		width: min(14rem, 74vw);
		justify-self: center;
	}

	.menu-row-copy {
		grid-template-columns: 1fr;
		gap: 0.8rem;
	}

	.story-section::after {
		display: none;
	}

	.order-steps,
	.fulfilment-grid,
	.contact-board {
		grid-template-columns: 1fr;
	}

	.order-step,
	.order-step:nth-child(2) {
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.order-step:last-child {
		border-bottom: 0;
	}

	.fulfilment-panel:first-child,
	.contact-primary {
		border-right: 0;
		border-bottom: 2px solid var(--ink);
	}

	.feedback-grid .button,
	.final-cta-grid .button {
		width: 100%;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.footer-about {
		grid-column: auto;
	}

	.page-hero::after {
		top: auto;
		right: -7rem;
		bottom: -9rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}

	.hero-device,
	.hero-stamp {
		transform: none;
	}
}

@media print {
	.site-header,
	.site-footer,
	.final-cta,
	.button-row,
	.toc {
		display: none !important;
	}

	body {
		background: transparent;
		color: var(--ink);
		font-size: 11pt;
	}

	.page-hero {
		background: transparent;
		padding: 1rem 0 2rem;
	}

	.page-hero::after {
		display: none;
	}

	.content-section {
		padding: 1rem 0;
	}

	a {
		text-decoration: none;
	}
}
