:root {
	--fhc-cream: #fff8ee;
	--fhc-paper: #fffdf8;
	--fhc-ink: #202923;
	--fhc-muted: #68736c;
	--fhc-teal: #0b7772;
	--fhc-teal-dark: #164b42;
	--fhc-coral: #f2684a;
	--fhc-yellow: #f3c84b;
	--fhc-sage: #dce8d5;
	--fhc-line: rgba(32, 41, 35, 0.12);
	--fhc-shadow: 0 24px 60px rgba(38, 62, 52, 0.13);
	--fhc-radius: 1.35rem;
	--fhc-font: Inter, Roboto, "Helvetica Neue", Arial, sans-serif;
	--fhc-display: ui-rounded, "Arial Rounded MT Bold", "Trebuchet MS", var(--fhc-font);
	--cassiopeia-color-primary: var(--fhc-teal);
	--cassiopeia-color-link: #08645f;
	--cassiopeia-color-hover: #074f4b;
}

html {
	scroll-behavior: smooth;
}

body.site {
	background: var(--fhc-cream);
	color: var(--fhc-ink);
	font-family: var(--fhc-font);
	line-height: 1.65;
}

body.site::before {
	background:
		radial-gradient(circle at 8% 18%, rgba(243, 200, 75, 0.13), transparent 22rem),
		radial-gradient(circle at 92% 34%, rgba(242, 104, 74, 0.09), transparent 24rem);
	content: "";
	inset: 0;
	pointer-events: none;
	position: fixed;
	z-index: -1;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4 {
	color: var(--fhc-ink);
	font-family: var(--fhc-display);
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1.08;
}

a {
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 3px solid var(--fhc-yellow);
	outline-offset: 3px;
}

.container-header {
	align-items: center;
	background: rgba(255, 248, 238, 0.94);
	background-image: none;
	border-bottom: 1px solid var(--fhc-line);
	box-shadow: 0 8px 30px rgba(32, 41, 35, 0.05);
	color: var(--fhc-ink);
	display: flex;
	flex-wrap: wrap;
	gap: 0 2.25rem;
	justify-content: flex-start;
	padding-inline: max(1rem, calc((100% - 1240px) / 2));
}

.container-header.header-sticky {
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

.container-header > .grid-child {
	align-items: center;
	display: flex;
	gap: 1rem 2.25rem;
	margin: 0;
	max-width: none;
	padding-block: 0.7rem;
	padding-inline: 0;
	width: auto;
}

.container-header > .grid-child:first-of-type {
	margin-inline-end: auto;
}

.container-header > .container-nav {
	flex: 0 1 auto;
	justify-content: flex-end;
}

.container-header .navbar-brand {
	align-items: center;
	display: flex;
	gap: 0.85rem;
	margin-inline-end: auto;
}

.container-header .brand-logo {
	align-items: center;
	color: var(--fhc-ink);
	display: inline-flex;
	gap: 0.8rem;
	text-decoration: none;
}

.container-header .brand-logo img {
	height: 72px;
	object-fit: contain;
	width: 72px;
}

.container-header .site-description {
	color: var(--fhc-muted);
	font-size: 0.78rem;
	letter-spacing: 0.02em;
	margin: 0;
}

.container-header .mod-menu {
	align-items: center;
	gap: 0.25rem;
}

.container-header .mod-menu > li > a,
.container-header .mod-menu > li > span {
	border-radius: 999px;
	color: var(--fhc-ink);
	font-size: 0.93rem;
	font-weight: 750;
	padding: 0.7rem 0.86rem;
	text-decoration: none;
	transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.container-header .mod-menu > li > a:hover,
.container-header .mod-menu > li.active > a {
	background: var(--fhc-sage);
	color: var(--fhc-teal-dark);
	transform: translateY(-1px);
}

.container-header .navbar-toggler {
	border: 1px solid var(--fhc-line);
	color: var(--fhc-ink);
}

.fhc-menu-toggle {
	display: none;
}

.site-grid {
	gap: 0;
}

.grid-child.container-component {
	max-width: 1240px;
	padding-block: clamp(1.5rem, 4vw, 4rem);
}

.com-content-article.item-page > .page-header:first-child {
	margin-bottom: 2rem;
}

.com-content-article.item-page > .page-header h1,
.com-content-article.item-page > .page-header h2 {
	font-size: clamp(2.4rem, 6vw, 4.6rem);
}

.btn,
.fhc-button {
	align-items: center;
	border: 1px solid transparent;
	border-radius: 999px;
	display: inline-flex;
	font-weight: 800;
	gap: 0.45rem;
	justify-content: center;
	min-height: 3.15rem;
	padding: 0.75rem 1.35rem;
	text-decoration: none;
	transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.btn-primary,
.fhc-button--primary {
	background: var(--fhc-teal);
	border-color: var(--fhc-teal);
	color: #fff;
}

.btn-primary:hover,
.fhc-button--primary:hover {
	background: var(--fhc-teal-dark);
	border-color: var(--fhc-teal-dark);
	box-shadow: 0 12px 28px rgba(11, 119, 114, 0.22);
	color: #fff;
	transform: translateY(-2px);
}

.btn-secondary,
.fhc-button--secondary {
	background: transparent;
	border-color: rgba(32, 41, 35, 0.24);
	color: var(--fhc-ink);
}

.btn-secondary:hover,
.fhc-button--secondary:hover {
	background: var(--fhc-paper);
	border-color: var(--fhc-teal);
	color: var(--fhc-teal-dark);
	transform: translateY(-2px);
}

.fhc-home {
	display: grid;
	gap: clamp(4.5rem, 9vw, 8rem);
}

.fhc-hero {
	align-items: center;
	display: grid;
	gap: clamp(2.5rem, 6vw, 5.5rem);
	grid-template-columns: minmax(0, 0.9fr) minmax(28rem, 1.1fr);
	min-height: min(760px, 78vh);
	padding-block: clamp(1.5rem, 4vw, 3.5rem);
}

.fhc-eyebrow {
	align-items: center;
	color: var(--fhc-coral);
	display: flex;
	font-size: 0.78rem;
	font-weight: 900;
	gap: 0.55rem;
	letter-spacing: 0.12em;
	margin-bottom: 1.2rem;
	text-transform: uppercase;
}

.fhc-eyebrow::before {
	background: var(--fhc-yellow);
	border-radius: 50%;
	content: "";
	height: 0.7rem;
	width: 0.7rem;
}

.fhc-hero h1 {
	font-size: clamp(3.2rem, 7vw, 6.2rem);
	margin: 0;
	max-width: 11ch;
}

.fhc-hero h1 em {
	color: var(--fhc-teal);
	font-style: normal;
}

.fhc-hero__lead {
	color: var(--fhc-muted);
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	margin: 1.5rem 0 0;
	max-width: 35rem;
}

.fhc-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: 2rem;
}

.fhc-hero__visual {
	display: grid;
	gap: 0.8rem;
	grid-template-columns: 1.4fr 0.8fr;
	grid-template-rows: 1fr 1fr;
	min-height: 600px;
	position: relative;
}

.fhc-hero__visual::before {
	background: var(--fhc-yellow);
	border-radius: 50%;
	content: "";
	height: 7.5rem;
	left: -2.4rem;
	position: absolute;
	top: -2.2rem;
	width: 7.5rem;
	z-index: -1;
}

.fhc-hero__visual::after {
	background: var(--fhc-coral);
	border-radius: 2.5rem 0.5rem 2.5rem 0.5rem;
	bottom: -1.5rem;
	content: "";
	height: 7rem;
	position: absolute;
	right: -1.5rem;
	transform: rotate(9deg);
	width: 7rem;
	z-index: -1;
}

.fhc-hero__visual img {
	box-shadow: var(--fhc-shadow);
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.fhc-hero__visual img:first-child {
	border-radius: 8rem 1.5rem 1.5rem 1.5rem;
	grid-row: 1 / 3;
}

.fhc-hero__visual img:nth-child(2) {
	border-radius: 1.5rem 5rem 1.5rem 1.5rem;
}

.fhc-hero__visual img:nth-child(3) {
	border-radius: 1.5rem 1.5rem 5rem 1.5rem;
}

.fhc-info-strip {
	background: var(--fhc-teal-dark);
	border-radius: var(--fhc-radius);
	box-shadow: 0 18px 45px rgba(22, 75, 66, 0.18);
	color: #fff;
	display: grid;
	gap: 1px;
	grid-template-columns: repeat(3, 1fr);
	overflow: hidden;
}

.fhc-info-strip > div {
	background: rgba(255, 255, 255, 0.035);
	padding: 1.3rem 1.5rem;
}

.fhc-info-strip small {
	color: rgba(255, 255, 255, 0.68);
	display: block;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	margin-bottom: 0.25rem;
	text-transform: uppercase;
}

.fhc-info-strip strong {
	color: #fff;
	font-size: 1rem;
}

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

.fhc-section-heading h2 {
	font-size: clamp(2.4rem, 5vw, 4.2rem);
	margin: 0;
}

.fhc-section-heading p {
	color: var(--fhc-muted);
	margin: 0;
	max-width: 35rem;
}

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

.fhc-category-card {
	aspect-ratio: 4 / 5;
	border-radius: var(--fhc-radius);
	box-shadow: 0 18px 42px rgba(32, 41, 35, 0.1);
	color: #fff;
	display: block;
	overflow: hidden;
	position: relative;
	text-decoration: none;
}

.fhc-category-card img {
	height: 100%;
	object-fit: cover;
	transition: transform 420ms ease;
	width: 100%;
}

.fhc-category-card__rotator {
	display: block;
	height: 100%;
	inset: 0;
	overflow: hidden;
	position: absolute;
	width: 100%;
}

.fhc-category-card__track {
	display: flex;
	height: 100%;
	transform: translate3d(0, 0, 0);
	transition: transform 1100ms cubic-bezier(0.65, 0, 0.25, 1);
	will-change: transform;
}

.fhc-category-card__track img {
	flex: 0 0 100%;
	min-width: 100%;
}

.fhc-category-card::after {
	background: linear-gradient(to top, rgba(15, 38, 31, 0.82), rgba(15, 38, 31, 0.04) 64%);
	content: "";
	inset: 0;
	position: absolute;
	z-index: 1;
}

.fhc-category-card__content {
	bottom: 0;
	left: 0;
	padding: 1.5rem;
	position: absolute;
	right: 0;
	z-index: 2;
}

.fhc-category-card h3 {
	color: #fff;
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	margin: 0 0 0.35rem;
}

.fhc-category-card > h3 {
	bottom: 3.5rem;
	left: 1.5rem;
	position: absolute;
	right: 1.5rem;
	z-index: 2;
}

.fhc-category-card__title {
	color: #fff;
	display: block;
	font-family: var(--fhc-display);
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1.08;
	margin-bottom: 0.35rem;
}

.fhc-category-card span {
	color: rgba(255, 255, 255, 0.82);
	font-weight: 700;
}

.fhc-category-card .fhc-category-card__title {
	color: #fff;
}

.fhc-category-card:hover {
	color: #fff;
}

.fhc-category-card:hover img {
	transform: scale(1.045);
}

@media (prefers-reduced-motion: reduce) {
	.fhc-category-card__track {
		transition: none;
	}
}

.fhc-feature {
	align-items: stretch;
	background: var(--fhc-paper);
	border: 1px solid var(--fhc-line);
	border-radius: calc(var(--fhc-radius) + 0.4rem);
	display: grid;
	gap: 0;
	grid-template-columns: 1fr 1fr;
	overflow: hidden;
}

.fhc-feature__image {
	min-height: 480px;
}

.fhc-feature__image img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.fhc-feature__body {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(2rem, 6vw, 5rem);
}

.fhc-feature__body h2 {
	font-size: clamp(2.5rem, 5vw, 4.3rem);
	margin: 0 0 1rem;
}

.fhc-feature__body p {
	color: var(--fhc-muted);
	font-size: 1.08rem;
	margin-bottom: 1.8rem;
}

.fhc-delivery {
	align-items: center;
	background: var(--fhc-sage);
	border-radius: var(--fhc-radius);
	display: flex;
	gap: 1.5rem;
	justify-content: space-between;
	padding: clamp(1.35rem, 4vw, 2.25rem);
}

.fhc-delivery h2 {
	font-size: clamp(1.35rem, 3vw, 2rem);
	margin: 0 0 0.3rem;
}

.fhc-delivery p {
	color: var(--fhc-muted);
	margin: 0;
}

.fhc-delivery__actions {
	display: flex;
	flex: 0 0 auto;
	flex-wrap: wrap;
	gap: 0.65rem;
}

.fhc-menu-page {
	margin-inline: auto;
	max-width: 980px;
}

.fhc-page-hero {
	align-items: stretch;
	background: var(--fhc-teal-dark);
	border-radius: calc(var(--fhc-radius) + 0.35rem);
	color: #fff;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
	margin-bottom: 2rem;
	overflow: hidden;
}

.fhc-page-hero__body {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(2rem, 6vw, 4.5rem);
}

.fhc-page-hero .fhc-eyebrow {
	color: var(--fhc-yellow);
}

.fhc-page-hero h1 {
	color: #fff;
	font-size: clamp(2.8rem, 6vw, 4.8rem);
	margin: 0 0 1rem;
}

.fhc-page-hero p:last-child {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.06rem;
	margin: 0;
}

.fhc-page-hero__image {
	min-height: 360px;
}

.fhc-page-hero__image img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.fhc-contact-visual {
	background:
		radial-gradient(circle at 76% 22%, rgba(255, 212, 74, 0.78) 0 11%, transparent 11.5%),
		linear-gradient(145deg, #dcebdc 0%, #f6c9b8 100%);
	isolation: isolate;
	overflow: hidden;
	position: relative;
}

.fhc-contact-visual__halo {
	animation: fhc-contact-pulse 4.8s ease-in-out infinite;
	background: rgba(255, 255, 255, 0.45);
	border-radius: 50%;
	height: min(75%, 310px);
	left: 50%;
	position: absolute;
	top: 52%;
	transform: translate(-50%, -50%);
	width: min(75%, 310px);
}

.fhc-contact-visual__envelope {
	animation: fhc-contact-float 4.8s ease-in-out infinite;
	background: #fffaf1;
	border: 2px solid rgba(17, 79, 68, 0.14);
	border-radius: 1.15rem;
	box-shadow: 0 24px 55px rgba(17, 79, 68, 0.2);
	height: 42%;
	left: 50%;
	position: absolute;
	top: 57%;
	transform: translate(-50%, -50%) rotate(-3deg);
	width: 58%;
	z-index: 2;
}

.fhc-contact-visual__envelope::before,
.fhc-contact-visual__envelope::after {
	content: "";
	inset: 0;
	position: absolute;
}

.fhc-contact-visual__envelope::before {
	background: #f4b6a2;
	clip-path: polygon(0 0, 100% 0, 50% 64%);
	z-index: 2;
}

.fhc-contact-visual__envelope::after {
	background: linear-gradient(145deg, #fff8ed 0 49%, #f4eee4 50% 100%);
	border-radius: 0 0 1rem 1rem;
	clip-path: polygon(0 100%, 0 28%, 50% 70%, 100% 28%, 100% 100%);
	z-index: 3;
}

.fhc-contact-visual__letter {
	animation: fhc-contact-letter 4.8s ease-in-out infinite;
	background: #fff;
	border-radius: 0.75rem 0.75rem 0.25rem 0.25rem;
	box-shadow: 0 8px 20px rgba(17, 79, 68, 0.1);
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	height: 90%;
	left: 12%;
	padding: 1.1rem;
	position: absolute;
	top: -48%;
	width: 76%;
	z-index: 1;
}

.fhc-contact-visual__letter i {
	background: var(--fhc-sage);
	border-radius: 999px;
	display: block;
	font-size: 0;
	height: 0.42rem;
	overflow: hidden;
	width: 100%;
}

.fhc-contact-visual__letter i:nth-child(2) {
	width: 78%;
}

.fhc-contact-visual__letter i:nth-child(3) {
	background: var(--fhc-coral);
	width: 52%;
}

.fhc-contact-visual__bubble {
	align-items: center;
	animation: fhc-contact-bubble 4.8s ease-in-out infinite;
	background: var(--fhc-yellow);
	border: 2px solid rgba(17, 79, 68, 0.12);
	border-radius: 1.25rem;
	box-shadow: 0 16px 35px rgba(17, 79, 68, 0.16);
	display: flex;
	gap: 0.42rem;
	justify-content: center;
	padding: 1rem 1.2rem;
	position: absolute;
	right: 8%;
	top: 13%;
	z-index: 4;
}

.fhc-contact-visual__bubble::after {
	background: var(--fhc-yellow);
	bottom: -0.45rem;
	clip-path: polygon(0 0, 100% 0, 100% 100%);
	content: "";
	height: 0.8rem;
	position: absolute;
	right: 1rem;
	width: 0.8rem;
}

.fhc-contact-visual__bubble i {
	animation: fhc-contact-dot 1.35s ease-in-out infinite;
	background: var(--fhc-teal-dark);
	border-radius: 50%;
	font-size: 0;
	height: 0.55rem;
	overflow: hidden;
	width: 0.55rem;
}

.fhc-contact-visual__bubble i:nth-child(2) {
	animation-delay: 150ms;
}

.fhc-contact-visual__bubble i:nth-child(3) {
	animation-delay: 300ms;
}

@keyframes fhc-contact-float {
	0%,
	100% {
		transform: translate(-50%, -50%) rotate(-3deg);
	}
	50% {
		transform: translate(-50%, calc(-50% - 10px)) rotate(1deg);
	}
}

@keyframes fhc-contact-letter {
	0%,
	100% {
		transform: translateY(8px);
	}
	50% {
		transform: translateY(-8px);
	}
}

@keyframes fhc-contact-bubble {
	0%,
	24%,
	100% {
		opacity: 0.72;
		transform: translateY(5px) scale(0.96);
	}
	45%,
	72% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes fhc-contact-pulse {
	0%,
	100% {
		transform: translate(-50%, -50%) scale(0.94);
	}
	50% {
		transform: translate(-50%, -50%) scale(1.04);
	}
}

@keyframes fhc-contact-dot {
	0%,
	60%,
	100% {
		opacity: 0.4;
		transform: translateY(0);
	}
	30% {
		opacity: 1;
		transform: translateY(-4px);
	}
}

.container-top-a:has(.fhc-promo-module) {
	box-sizing: border-box;
	margin-inline: auto;
	max-width: 1240px;
	padding: clamp(1rem, 3vw, 2rem) max(1rem, calc((100% - 1240px) / 2));
	width: 100%;
}

.fhc-promo-module {
	align-items: center;
	background:
		linear-gradient(120deg, rgba(243, 200, 75, 0.24), rgba(242, 104, 74, 0.14)),
		var(--fhc-paper);
	border: 1px solid rgba(242, 104, 74, 0.24);
	border-radius: var(--fhc-radius);
	box-sizing: border-box;
	box-shadow: 0 16px 38px rgba(32, 41, 35, 0.09);
	display: flex;
	gap: 1rem 2rem;
	justify-content: space-between;
	overflow: hidden;
	padding: clamp(1.15rem, 3vw, 1.8rem);
	position: relative;
}

.fhc-promo-module::before {
	background: var(--fhc-coral);
	border-radius: 999px;
	content: "";
	height: 0.45rem;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.fhc-promo-module h2,
.fhc-promo-module h3 {
	font-size: clamp(1.4rem, 3vw, 2rem);
	margin: 0 0 0.35rem;
}

.fhc-promo-module p {
	color: var(--fhc-muted);
	margin: 0;
}

.fhc-promo-module .fhc-promo-module__price {
	color: var(--fhc-teal-dark);
	flex: 0 0 auto;
	font-family: var(--fhc-display);
	font-size: clamp(1.35rem, 3vw, 1.8rem);
	font-weight: 800;
	white-space: nowrap;
}

.fhc-qr-menu {
	margin-inline: auto;
	max-width: 780px;
	width: 100%;
}

.fhc-qr-menu__header {
	background: var(--fhc-teal-dark);
	border-radius: var(--fhc-radius);
	color: #fff;
	margin-bottom: 1rem;
	padding: clamp(1.4rem, 5vw, 2.4rem);
}

.fhc-qr-menu__header .fhc-eyebrow {
	color: var(--fhc-yellow);
}

.fhc-qr-menu__header h1 {
	color: #fff;
	font-size: clamp(2.35rem, 8vw, 4rem);
	margin: 0 0 0.45rem;
}

.fhc-qr-menu__header > p:last-child {
	color: rgba(255, 255, 255, 0.82);
	margin: 0;
}

.fhc-qr-menu__status,
.fhc-qr-menu__error {
	background: var(--fhc-paper);
	border: 1px solid var(--fhc-line);
	border-radius: 1rem;
	margin: 1rem 0;
	padding: 1rem;
}

.fhc-qr-menu__error {
	border-color: rgba(242, 104, 74, 0.45);
	color: #8c2f20;
}

.fhc-qr-menu__nav {
	display: flex;
	gap: 0.5rem;
	margin: 0 0 1rem;
	overflow-x: auto;
	padding: 0.15rem 0 0.65rem;
	scrollbar-width: thin;
}

.fhc-qr-menu__nav[hidden] {
	display: none;
}

.fhc-qr-menu__nav a {
	background: var(--fhc-sage);
	border-radius: 999px;
	color: var(--fhc-teal-dark);
	flex: 0 0 auto;
	font-size: 0.84rem;
	font-weight: 750;
	padding: 0.52rem 0.78rem;
	text-decoration: none;
}

.fhc-qr-section {
	background: var(--fhc-paper);
	border: 1px solid var(--fhc-line);
	border-radius: 1rem;
	margin-bottom: 0.9rem;
	overflow: hidden;
	scroll-margin-top: 7rem;
}

.fhc-qr-section h2 {
	background: var(--fhc-sage);
	color: var(--fhc-teal-dark);
	font-size: clamp(1.15rem, 4vw, 1.45rem);
	margin: 0;
	padding: 0.82rem 1rem;
}

.fhc-qr-table {
	border-collapse: collapse;
	margin: 0;
	table-layout: fixed;
	width: 100%;
}

.fhc-qr-table tr:nth-child(even) {
	background: rgba(220, 232, 213, 0.22);
}

.fhc-qr-table td {
	border-bottom: 1px solid var(--fhc-line);
	padding: 0.72rem 1rem;
	vertical-align: top;
}

.fhc-qr-table tr:last-child td {
	border-bottom: 0;
}

.fhc-qr-table td:first-child {
	font-weight: 650;
	width: 63%;
}

.fhc-qr-table td:last-child {
	color: var(--fhc-teal-dark);
	font-weight: 800;
	text-align: right;
	width: 37%;
}

.fhc-qr-menu__note {
	color: var(--fhc-muted);
	font-size: 0.88rem;
	margin: 1.25rem 0 0;
	text-align: center;
}

.fhc-menu-page__intro {
	color: var(--fhc-muted);
	font-size: 1.08rem;
	margin-bottom: 2.5rem;
}

.fhc-menu-section {
	background: var(--fhc-paper);
	border: 1px solid var(--fhc-line);
	border-radius: var(--fhc-radius);
	margin-bottom: 1.25rem;
	overflow: hidden;
	padding: clamp(1rem, 3vw, 1.8rem);
}

.fhc-menu-section h2,
.fhc-menu-section h3 {
	color: var(--fhc-teal-dark);
	font-size: clamp(1.45rem, 3vw, 2rem);
	margin: 0 0 0.7rem;
}

.fhc-menu-page table,
table.fhc-price-list {
	border: 0;
	border-collapse: collapse;
	font-variant-numeric: tabular-nums;
	margin: 0;
	width: 100%;
}

.fhc-menu-page table tr,
table.fhc-price-list tr {
	border-bottom: 1px solid var(--fhc-line);
}

.fhc-menu-page table tr:last-child,
table.fhc-price-list tr:last-child {
	border-bottom: 0;
}

.fhc-menu-page table td,
table.fhc-price-list td {
	background: transparent;
	border: 0;
	padding: 0.82rem 0.25rem;
	vertical-align: top;
}

.fhc-menu-page table td:first-child,
table.fhc-price-list td:first-child {
	font-weight: 700;
	padding-right: 1rem;
}

.fhc-menu-page table td:last-child,
table.fhc-price-list td:last-child {
	color: var(--fhc-teal-dark);
	font-weight: 850;
	text-align: right;
	white-space: nowrap;
}

.fhc-menu-page table small,
table.fhc-price-list small {
	color: var(--fhc-muted);
	display: block;
	font-size: 0.88rem;
	font-weight: 500;
	line-height: 1.5;
	margin-top: 0.22rem;
}

.fhc-product {
	align-items: center;
	display: flex;
	gap: 0.9rem;
	min-width: 0;
}

.fhc-lightbox-trigger {
	border-radius: 0.8rem;
	display: block;
	flex: 0 0 82px;
	position: relative;
}

.fhc-lightbox-trigger::after {
	align-items: center;
	background: rgba(22, 75, 66, 0.84);
	border-radius: 50%;
	bottom: 0.35rem;
	color: #fff;
	content: "+";
	display: flex;
	font-size: 1rem;
	font-weight: 800;
	height: 1.6rem;
	justify-content: center;
	opacity: 0;
	position: absolute;
	right: 0.35rem;
	transform: scale(0.8);
	transition: opacity 160ms ease, transform 160ms ease;
	width: 1.6rem;
}

.fhc-lightbox-trigger:hover::after,
.fhc-lightbox-trigger:focus-visible::after {
	opacity: 1;
	transform: scale(1);
}

.fhc-lightbox-trigger img {
	aspect-ratio: 1;
	border-radius: 0.8rem;
	display: block;
	height: 82px;
	object-fit: cover;
	width: 82px;
}

.fhc-product > span {
	min-width: 0;
}

.fhc-lightbox {
	background: transparent;
	border: 0;
	color: #fff;
	max-height: 94vh;
	max-width: min(94vw, 820px);
	overflow: visible;
	padding: 0;
	width: auto;
}

.fhc-lightbox::backdrop {
	background: rgba(13, 27, 22, 0.86);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.fhc-lightbox__figure {
	margin: 0;
	max-height: 90vh;
	position: relative;
}

.fhc-lightbox__image {
	background: var(--fhc-paper);
	border-radius: 1.2rem;
	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
	display: block;
	max-height: min(78vh, 760px);
	max-width: min(92vw, 760px);
	object-fit: contain;
}

.fhc-lightbox__caption {
	color: #fff;
	display: block;
	font-size: 0.95rem;
	font-weight: 750;
	padding: 0.7rem 3.5rem 0 0.35rem;
}

.fhc-lightbox__close {
	align-items: center;
	background: var(--fhc-yellow);
	border: 0;
	border-radius: 50%;
	color: var(--fhc-ink);
	cursor: pointer;
	display: flex;
	font-size: 1.65rem;
	height: 2.8rem;
	justify-content: center;
	line-height: 1;
	position: absolute;
	right: -0.8rem;
	top: -0.8rem;
	width: 2.8rem;
	z-index: 1;
}

.fhc-lightbox__close:hover {
	background: #fff;
}

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

.fhc-contact-card {
	background: var(--fhc-paper);
	border: 1px solid var(--fhc-line);
	border-radius: var(--fhc-radius);
	padding: clamp(1.4rem, 4vw, 2.2rem);
}

.fhc-contact-card h2 {
	color: var(--fhc-teal-dark);
	font-size: clamp(1.45rem, 3vw, 2rem);
	margin: 0 0 0.8rem;
}

.fhc-contact-card p {
	color: var(--fhc-muted);
	margin-bottom: 1.15rem;
}

.fhc-contact-card address {
	font-style: normal;
}

.fhc-contact-card--wide {
	align-items: center;
	background: var(--fhc-sage);
	display: flex;
	gap: 1.5rem;
	grid-column: 1 / -1;
	justify-content: space-between;
}

.fhc-contact-card--wide p {
	margin: 0;
}

.container-footer {
	background: var(--fhc-teal-dark);
	background-image: none;
	color: rgba(255, 255, 255, 0.82);
	margin-top: clamp(4rem, 8vw, 7rem);
}

.container-footer h2,
.container-footer h3,
.container-footer a {
	color: #fff;
}

.container-footer .grid-child {
	max-width: 1240px;
	padding-block: 2.5rem;
}

.fhc-footer {
	display: grid;
	gap: 2rem clamp(2rem, 6vw, 5rem);
	grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(180px, 0.75fr));
	width: 100%;
}

.fhc-footer__brand-link {
	align-items: center;
	display: inline-flex;
	gap: 0.85rem;
	text-decoration: none;
}

.fhc-footer__brand-link img {
	height: 64px;
	object-fit: contain;
	width: 64px;
}

.fhc-footer__brand-link strong {
	color: #fff;
	display: block;
	font-family: var(--fhc-display);
	font-size: 1.25rem;
	line-height: 1.1;
}

.fhc-footer__brand-link span {
	color: rgba(255, 255, 255, 0.64);
	display: block;
	font-size: 0.78rem;
	margin-top: 0.2rem;
}

.fhc-footer p,
.fhc-footer address {
	color: rgba(255, 255, 255, 0.7);
	font-style: normal;
	margin: 0.9rem 0 0;
}

.fhc-footer h2 {
	font-size: 1rem;
	letter-spacing: 0.08em;
	margin: 0 0 0.85rem;
	text-transform: uppercase;
}

.fhc-footer__links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
}

.fhc-footer__links a {
	font-weight: 750;
	text-decoration-color: rgba(255, 255, 255, 0.35);
}

.fhc-footer__bottom {
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	display: flex;
	gap: 1rem 2rem;
	grid-column: 1 / -1;
	justify-content: space-between;
	padding-top: 1.3rem;
}

.fhc-footer__bottom p {
	font-size: 0.85rem;
	margin: 0;
}

.fhc-map-block {
	background: var(--fhc-paper);
	border: 1px solid var(--fhc-line);
	border-radius: calc(var(--fhc-radius) + 0.35rem);
	display: grid;
	grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
	margin-inline: auto;
	max-width: 1240px;
	overflow: hidden;
	width: 100%;
}

.fhc-map-block__body {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(1.8rem, 5vw, 3.5rem);
}

.fhc-map-block__body h2 {
	font-size: clamp(2rem, 4vw, 3.4rem);
	margin: 0 0 0.8rem;
}

.fhc-map-block__body p {
	color: var(--fhc-muted);
	margin: 0 0 1.25rem;
}

.fhc-map-block__body small {
	color: var(--fhc-muted);
	display: block;
	font-size: 0.75rem;
	margin-top: 1rem;
}

.fhc-map-block__map {
	min-height: 420px;
}

.fhc-map-block__map iframe {
	border: 0;
	display: block;
	height: 100%;
	min-height: 420px;
	width: 100%;
}

body.site:has(.fhc-map-block) .container-footer {
	margin-top: 2rem;
}

.back-to-top-link {
	background: var(--fhc-yellow);
	border: 0;
	color: var(--fhc-ink);
}

@media (max-width: 980px) {
	.fhc-hero {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.fhc-hero__visual {
		min-height: 520px;
	}

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

	.fhc-category-card:last-child {
		grid-column: 1 / -1;
		aspect-ratio: 16 / 8;
	}

	.fhc-feature {
		grid-template-columns: 1fr;
	}

	.fhc-feature__image {
		min-height: 380px;
	}

	.fhc-page-hero {
		grid-template-columns: 1fr;
	}

	.fhc-page-hero__image {
		min-height: 320px;
	}
}

@media (max-width: 700px) {
	.container-header {
		display: grid;
		gap: 0 0.75rem;
		grid-template-columns: minmax(0, 1fr) auto;
		padding-inline: 1rem;
	}

	.container-header > .grid-child {
		padding-inline: 0;
	}

	.container-header > .grid-child:first-of-type {
		margin-inline-end: 0;
		min-width: 0;
		width: auto;
	}

	.container-header > .container-nav {
		display: block;
		padding: 0;
		position: static;
		width: auto;
	}

	.fhc-menu-toggle {
		align-items: center;
		background: var(--fhc-paper);
		border: 1px solid var(--fhc-line);
		border-radius: 0.85rem;
		color: var(--fhc-ink);
		cursor: pointer;
		display: inline-flex;
		flex-direction: column;
		gap: 4px;
		height: 46px;
		justify-content: center;
		padding: 0;
		width: 46px;
	}

	.fhc-menu-toggle span {
		background: currentColor;
		border-radius: 999px;
		display: block;
		height: 2px;
		transition: opacity 180ms ease, transform 180ms ease;
		width: 21px;
	}

	.container-header.fhc-menu-open .fhc-menu-toggle span:first-child {
		transform: translateY(6px) rotate(45deg);
	}

	.container-header.fhc-menu-open .fhc-menu-toggle span:nth-child(2) {
		opacity: 0;
	}

	.container-header.fhc-menu-open .fhc-menu-toggle span:last-child {
		transform: translateY(-6px) rotate(-45deg);
	}

	.container-header.fhc-has-menu-toggle .mod-menu {
		background: var(--fhc-cream);
		border-bottom: 1px solid var(--fhc-line);
		box-shadow: 0 18px 35px rgba(32, 41, 35, 0.12);
		display: grid;
		gap: 0.2rem;
		grid-template-columns: 1fr;
		left: 0;
		opacity: 0;
		padding: 0.65rem 1rem 1rem;
		pointer-events: none;
		position: absolute;
		right: 0;
		top: 100%;
		transform: translateY(-0.65rem);
		transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
		visibility: hidden;
	}

	.container-header.fhc-has-menu-toggle.fhc-menu-open .mod-menu {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
		visibility: visible;
	}

	.container-header .mod-menu > li > a,
	.container-header .mod-menu > li > span {
		display: block;
		font-size: 0.95rem;
		padding: 0.72rem 0.85rem;
		text-align: left;
	}

	.container-header .brand-logo img {
		height: 58px;
		width: 58px;
	}

	.container-top-a:has(.fhc-promo-module) {
		padding: 0.85rem 1rem;
	}

	.fhc-promo-module {
		align-items: flex-start;
		flex-direction: column;
	}

	body.site:has(.fhc-qr-menu) .grid-child.container-component {
		padding-inline: 0.7rem;
		padding-top: 0.85rem;
	}

	.fhc-qr-menu__header {
		border-radius: 1rem;
	}

	.fhc-qr-section {
		border-radius: 0.85rem;
		scroll-margin-top: 6rem;
	}

	.fhc-qr-section h2 {
		padding: 0.72rem 0.75rem;
	}

	.fhc-qr-table td {
		font-size: 0.88rem;
		line-height: 1.4;
		padding: 0.68rem 0.72rem;
	}

	.fhc-qr-table td:first-child {
		width: 59%;
	}

	.fhc-qr-table td:last-child {
		font-size: 0.82rem;
		width: 41%;
	}

	.grid-child.container-component {
		padding-inline: 1rem;
	}

	.fhc-home {
		gap: 4.5rem;
	}

	.fhc-hero {
		padding-top: 0.5rem;
	}

	.fhc-hero h1 {
		font-size: clamp(2.8rem, 14vw, 4.3rem);
	}

	.fhc-hero__visual {
		gap: 0.55rem;
		grid-template-columns: 1fr 0.82fr;
		min-height: 390px;
	}

	.fhc-hero__visual::before {
		height: 5rem;
		left: -1rem;
		top: -1rem;
		width: 5rem;
	}

	.fhc-hero__visual::after {
		right: 0;
	}

	.fhc-info-strip {
		grid-template-columns: 1fr;
	}

	.fhc-section-heading {
		align-items: flex-start;
		flex-direction: column;
		gap: 0.8rem;
	}

	.fhc-category-grid {
		grid-template-columns: 1fr;
	}

	.fhc-category-card,
	.fhc-category-card:last-child {
		aspect-ratio: 5 / 4;
		grid-column: auto;
	}

	.fhc-feature__image {
		min-height: 300px;
	}

	.fhc-contact-grid {
		grid-template-columns: 1fr;
	}

	.fhc-contact-card--wide {
		align-items: flex-start;
		flex-direction: column;
		grid-column: auto;
	}

	.fhc-product {
		gap: 0.7rem;
	}

	.fhc-lightbox-trigger {
		border-radius: 0.65rem;
		flex-basis: 64px;
	}

	.fhc-lightbox-trigger img {
		border-radius: 0.65rem;
		height: 64px;
		width: 64px;
	}

	.fhc-product-list,
	.fhc-product-list tbody,
	.fhc-product-list tr,
	.fhc-product-list td {
		display: block;
		width: 100%;
	}

	.fhc-product-list tr {
		padding-block: 0.75rem;
	}

	.fhc-product-list td {
		box-sizing: border-box;
		padding-block: 0.15rem;
	}

	.fhc-product-list td:last-child {
		padding-left: calc(64px + 0.7rem);
		text-align: left;
		white-space: normal;
	}

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

	.fhc-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
		grid-column: auto;
	}

	.fhc-map-block {
		grid-template-columns: 1fr;
	}

	.fhc-map-block__map,
	.fhc-map-block__map iframe {
		min-height: 320px;
	}

	body.site:has(.fhc-map-block) .container-footer {
		margin-top: 1rem;
	}

	.fhc-delivery {
		align-items: flex-start;
		flex-direction: column;
	}

	.fhc-delivery__actions {
		width: 100%;
	}

	.fhc-delivery__actions .fhc-button {
		flex: 1 1 10rem;
	}

	.fhc-menu-section {
		border-radius: 1rem;
		padding: 0.85rem;
	}

	.fhc-menu-page table td,
	table.fhc-price-list td {
		font-size: 0.95rem;
	}
}

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

	.fhc-contact-visual__halo,
	.fhc-contact-visual__envelope,
	.fhc-contact-visual__letter,
	.fhc-contact-visual__bubble,
	.fhc-contact-visual__bubble i {
		animation: none;
	}

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