@font-face {
	font-family: "Roboto Ser Sandwich";
	src: url("../../fonts/RobotoVariableFontwdthwght.ttf") format("truetype");
	font-display: swap;
}

@font-face {
	font-family: "Roboto Ser Sandwich";
	src: url("../../fonts/RobotoItalicVariableFontwdthwght.ttf") format("truetype");
	font-style: italic;
	font-display: swap;
}

:root {
	--color-white: #ffffff;
	--color-black: #000000;
	--color-yellow: #fbc20e;
	--color-cream: #fff8de;
	--color-paper: #fffdf4;
	--color-ink-soft: #171717;
	--color-muted: rgba(0, 0, 0, 0.68);
	--color-line: rgba(0, 0, 0, 0.08);
	--shadow-soft: 0 22px 60px rgba(0, 0, 0, 0.14);
	--shadow-strong: 0 30px 90px rgba(0, 0, 0, 0.24);
	--radius-lg: 36px;
	--radius-md: 24px;
	--section-space: clamp(5rem, 8vw, 8rem);
	--shell-width: min(1200px, calc(100vw - 2rem));
	--header-height: 86px;
}

@keyframes interactive-breathe {
	0%,
	100% {
		transform: translateY(0) scale(1);
	}

	50% {
		transform: translateY(-4px) scale(1.045);
	}
}

@keyframes interactive-glow {
	0%,
	100% {
		box-shadow: var(--shadow-soft);
	}

	50% {
		box-shadow: 0 26px 58px rgba(251, 194, 14, 0.4);
	}
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Roboto Ser Sandwich", sans-serif;
	color: var(--color-black);
	background:
		radial-gradient(circle at top left, rgba(251, 194, 14, 0.26), transparent 36%),
		radial-gradient(circle at 85% 0%, rgba(0, 0, 0, 0.06), transparent 24%),
		linear-gradient(180deg, #fff7d3 0%, #ffffff 24%, #f7f4ea 100%);
	line-height: 1.6;
}

body.menu-open {
	overflow: hidden;
}

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

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

.site-loader {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: grid;
	place-items: center;
	background: #050505;
	opacity: 1;
	visibility: visible;
	transition: opacity 0.5s ease, visibility 0.5s ease;
}

.site-loader.is-hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.site-loader__inner {
	position: relative;
	width: min(520px, 78vw);
	display: grid;
	place-items: center;
}

.site-loader__logo {
	width: 100%;
	animation: loader-bounce 0.95s ease both;
	filter: drop-shadow(0 20px 40px rgba(251, 194, 14, 0.25));
}

.site-loader__wipe {
	position: absolute;
	left: -8%;
	right: -8%;
	bottom: -12px;
	height: 10px;
	border-radius: 999px;
	background: linear-gradient(90deg, transparent, var(--color-yellow), transparent);
	animation: loader-wipe 1s ease both;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	backdrop-filter: blur(18px);
	background: rgba(255, 253, 245, 0.82);
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.site-header__inner {
	width: var(--shell-width);
	min-height: var(--header-height);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.site-header__brand {
	width: min(220px, 50vw);
}

.site-header__brand img {
	width: 100%;
	height: auto;
	filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.08));
}

.site-header__edit-mobile {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border-radius: 50%;
	background: var(--color-black);
	color: var(--color-white);
	box-shadow: var(--shadow-soft);
	flex: 0 0 44px;
	transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
	animation: interactive-breathe 3.8s ease-in-out infinite, interactive-glow 3.8s ease-in-out infinite;
	transform: translateZ(0);
	backface-visibility: hidden;
	will-change: transform, box-shadow;
}

.site-header__edit-mobile svg {
	width: 20px;
	height: 20px;
}

.site-header__nav {
	display: flex;
	align-items: center;
	gap: 1.2rem;
	font-size: 0.95rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.site-header__nav a {
	position: relative;
	padding: 0.25rem 0;
	transition: transform 220ms ease, color 220ms ease;
}

.site-header__nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	transform: scaleX(0);
	transform-origin: left;
	background: var(--color-yellow);
	transition: transform 220ms ease, opacity 220ms ease;
	opacity: 0.9;
}

.site-header__nav a:hover,
.site-header__nav a:focus-visible,
.site-header__nav a.is-active {
	transform: translateY(-1px);
}

.site-header__nav a:hover::after,
.site-header__nav a:focus-visible::after,
.site-header__nav a.is-active::after {
	transform: scaleX(1);
	opacity: 1;
}

.site-header__toggle {
	display: none;
	width: 52px;
	height: 52px;
	padding: 0;
	border: 0;
	background: var(--color-black);
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 0.4rem;
	cursor: pointer;
	box-shadow: var(--shadow-soft);
	transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
	animation: interactive-breathe 2.9s ease-in-out infinite, interactive-glow 2.9s ease-in-out infinite;
	transform: translateZ(0);
	backface-visibility: hidden;
	will-change: transform, box-shadow;
}

.site-header__toggle span {
	width: 18px;
	height: 2px;
	background: var(--color-white);
	transition: transform 220ms ease, opacity 220ms ease;
}

.site-header__toggle:hover span:first-child,
.site-header__toggle:focus-visible span:first-child {
	transform: translateY(-2px);
}

.site-header__toggle:hover span:last-child,
.site-header__toggle:focus-visible span:last-child {
	transform: translateY(2px);
}

.site-main {
	overflow: clip;
}

.section-shell {
	width: var(--shell-width);
	margin: 0 auto;
}

.section-shell--split {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

.section-shell--reverse .section-shell__media {
	order: 2;
}

.section-shell--reverse .section-shell__content {
	order: 1;
}

.hero-section {
	position: relative;
	padding: clamp(2rem, 4vw, 4rem) 0 var(--section-space);
	background:
		radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.62), transparent 24%),
		radial-gradient(circle at 82% 16%, rgba(0, 0, 0, 0.14), transparent 28%),
		linear-gradient(135deg, #f8bf0a 0%, #ffd94f 46%, #ffeeb3 100%);
}

.hero-section::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 160px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), var(--color-paper));
	clip-path: polygon(0 34%, 100% 0, 100% 100%, 0 100%);
}

.hero-section__background {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.5), transparent 24%),
		radial-gradient(circle at 82% 22%, rgba(0, 0, 0, 0.1), transparent 26%),
		linear-gradient(130deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.1));
	pointer-events: none;
}

.hero-section__content {
	position: relative;
	padding: clamp(1.5rem, 3vw, 2.2rem);
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: 34px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 250, 231, 0.18));
	backdrop-filter: blur(12px);
	box-shadow: 0 28px 50px rgba(0, 0, 0, 0.08);
}

.hero-section__content::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), transparent 42%);
	pointer-events: none;
}

.hero-section__layout {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

@media (min-width: 1101px) {
	.hero-section__layout {
		align-items: start !important;
	}

	.hero-section__content,
	.hero-section__visual {
		align-self: start !important;
	}

	.hero-section__visual {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		margin-top: 100px;
		padding-top: 0 !important;
	}

	.hero-section__visual.reveal,
	.hero-section__visual.reveal.is-visible {
		transform: none;
	}
}

.hero-section__seal {
	width: 88px;
	margin-bottom: 1rem;
	padding: 0.8rem;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.5);
	box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
}

.section-kicker {
	margin: 0 0 1rem;
	font-size: 0.82rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	color: rgba(0, 0, 0, 0.62);
}

.hero-section h1,
.content-section h2 {
	margin: 0;
	font-size: clamp(2.6rem, 5.4vw, 5.1rem);
	line-height: 0.98;
	text-transform: uppercase;
	letter-spacing: -0.04em;
}

.content-section h2 {
	font-size: clamp(2.1rem, 4vw, 3.6rem);
	line-height: 1.02;
}

.hero-section__lead {
	margin: 1.4rem 0 1rem;
	max-width: 56ch;
	font-size: clamp(1.05rem, 1.45vw, 1.3rem);
	font-weight: 600;
}

.hero-section__text,
.content-copy,
.content-intro {
	max-width: 68ch;
	font-size: 1.02rem;
}

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

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 1.4rem;
	border-radius: 999px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	box-shadow: var(--shadow-soft);
	transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
	animation: interactive-breathe 3s ease-in-out infinite, interactive-glow 3s ease-in-out infinite;
	transform: translateZ(0);
	backface-visibility: hidden;
	will-change: transform, box-shadow;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-4px) scale(1.04);
	box-shadow: 0 26px 60px rgba(251, 194, 14, 0.42);
}

.button--primary {
	background: var(--color-black);
	color: var(--color-white);
	box-shadow: var(--shadow-soft);
}

.button--secondary {
	background: transparent;
	border: 2px solid var(--color-black);
}

.button--dark {
	background: var(--color-black);
	color: var(--color-white);
	border: 0;
	cursor: pointer;
}

.product-showcase {
	position: relative;
	padding: 1.2rem;
	background: linear-gradient(180deg, rgba(251, 194, 14, 0.96), rgba(255, 220, 94, 0.96));
	border: 1px solid rgba(255, 255, 255, 0.52);
	border-radius: var(--radius-lg);
	box-shadow: 0 34px 80px rgba(124, 83, 0, 0.24);
	cursor: pointer;
	overflow: hidden;
}

.product-showcase::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.3), transparent 36%),
		radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.14), transparent 58%);
	pointer-events: none;
}

.product-showcase__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	padding: 0.5rem 0.8rem;
	margin-bottom: 1.2rem;
	background: rgba(0, 0, 0, 0.84);
	border-radius: 999px;
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--color-white);
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.product-showcase__badge img {
	width: 28px;
}

.product-showcase__viewport {
	overflow: hidden;
	background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2), transparent 58%);
	border: 0;
	box-shadow: none;
	height: var(--product-lock-height, auto);
	min-height: 0;
}

.product-showcase__track {
	--visible-count: 1;
	--gap: 0;
	display: flex;
	width: 100%;
	gap: var(--gap);
	will-change: transform;
	transform: translate3d(0, 0, 0);
}

.product-showcase__track.is-animating {
	transition: transform 900ms cubic-bezier(0.35, 0, 0.15, 1);
}

.product-showcase__item {
	flex: 0 0 100%;
	width: 100%;
	min-width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	height: var(--product-lock-height, auto);
	min-height: 0;
	padding: 0.25rem 0;
	margin: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	transform: none;
	transition: none;
}

.product-showcase__item.is-center {
	transform: none;
	box-shadow: none;
	background: transparent;
}

.product-showcase__item img {
	width: auto;
	max-width: min(100%, 360px);
	height: var(--product-lock-height, auto);
	max-height: var(--product-lock-height, clamp(260px, 34vw, 400px));
	border: 0;
	outline: 0;
	box-shadow: none;
	background: transparent;
	object-fit: contain;
}

.product-gallery {
	position: fixed;
	inset: 0;
	z-index: 9998;
	display: grid;
	place-items: center;
	padding: 1rem;
}

.product-gallery[hidden] {
	display: none;
}

.product-gallery__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.82);
	backdrop-filter: blur(8px);
}

.product-gallery__dialog {
	position: relative;
	z-index: 1;
	width: min(1120px, calc(100vw - 2rem));
	max-height: min(90vh, 920px);
	padding: 1.25rem;
	background: linear-gradient(180deg, rgba(10, 10, 10, 0.98), rgba(24, 24, 24, 0.98));
	border: 1px solid rgba(251, 194, 14, 0.35);
	border-radius: 32px;
	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
	color: var(--color-white);
	display: grid;
	gap: 1rem;
}

.product-gallery__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 48px;
	height: 48px;
	border: 0;
	border-radius: 50%;
	background: var(--color-yellow);
	color: var(--color-black);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-soft);
}

.product-gallery__close span {
	position: absolute;
	width: 20px;
	height: 2px;
	background: currentColor;
}

.product-gallery__close span:first-child {
	transform: rotate(45deg);
}

.product-gallery__close span:last-child {
	transform: rotate(-45deg);
}

.product-gallery__main {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	align-items: center;
	min-height: min(66vh, 700px);
}

.product-gallery__figure {
	margin: 0;
	min-height: min(66vh, 700px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	background: radial-gradient(circle at center, rgba(251, 194, 14, 0.12), transparent 58%);
}

.product-gallery__image {
	display: block;
	max-width: 100%;
	max-height: min(60vh, 640px);
	width: auto;
	height: auto;
	object-fit: contain;
}

.product-gallery__controls {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr) 64px;
	gap: 1rem;
	align-items: center;
}

.product-gallery__nav {
	width: 64px;
	height: 64px;
	border: 0;
	border-radius: 50%;
	background: rgba(251, 194, 14, 0.94);
	color: var(--color-black);
	font-size: 1.8rem;
	line-height: 1;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-soft);
}

.product-gallery__thumbs {
	display: flex;
	gap: 0.75rem;
	padding: 0.25rem 0.25rem 0.1rem;
	overflow-x: auto;
	scrollbar-width: thin;
	scrollbar-color: var(--color-yellow) rgba(255, 255, 255, 0.08);
}

.product-gallery__thumb {
	flex: 0 0 88px;
	width: 88px;
	height: 88px;
	padding: 0.35rem;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.05);
	cursor: pointer;
	transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.product-gallery__thumb.is-active,
.product-gallery__thumb:hover {
	border-color: var(--color-yellow);
	background: rgba(251, 194, 14, 0.16);
	transform: translateY(-2px);
}

.product-gallery__thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.hero-section__caption {
	margin-top: 1rem;
	text-align: right;
	font-size: 0.9rem;
	font-style: italic;
}

.content-section {
	position: relative;
	padding: var(--section-space) 0;
	overflow: hidden;
}

.content-section--light {
	background:
		radial-gradient(circle at 8% 16%, rgba(251, 194, 14, 0.11), transparent 18%),
		radial-gradient(circle at 92% 80%, rgba(0, 0, 0, 0.05), transparent 24%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.92), var(--color-paper));
}

.content-section--dark {
	background: linear-gradient(180deg, #050505 0%, #161616 100%);
	color: var(--color-white);
}

.content-section--dark::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at top right, rgba(251, 194, 14, 0.2), transparent 28%),
		radial-gradient(circle at bottom left, rgba(251, 194, 14, 0.08), transparent 30%);
	pointer-events: none;
}

.content-section--accent {
	background:
		radial-gradient(circle at 10% 18%, rgba(255, 255, 255, 0.52), transparent 24%),
		radial-gradient(circle at 88% 78%, rgba(0, 0, 0, 0.08), transparent 26%),
		linear-gradient(180deg, #fff0b0 0%, var(--color-yellow) 100%);
}

.section-header {
	max-width: 64ch;
	margin-bottom: 2.5rem;
	position: relative;
	display: grid;
	gap: 0.9rem;
}

.section-header::after {
	content: "";
	width: 72px;
	height: 5px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--color-yellow), rgba(251, 194, 14, 0.15));
}

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

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

.quality-card,
.offer-card,
.contact-form-panel,
.contact-card,
.marketing-panel__copy {
	padding: 1.5rem;
	border-radius: var(--radius-md);
	position: relative;
	overflow: hidden;
}

.stats-grid__item,
.quality-card,
.offer-card,
.feature-list__item,
.contact-form-panel,
.contact-card,
.marketing-panel__copy {
	transition: transform 260ms ease, box-shadow 260ms ease;
	transform-origin: center;
}

@media (hover: hover) and (pointer: fine) {
	.stats-grid__item:hover,
	.quality-card:hover,
	.offer-card:hover,
	.feature-list__item:hover,
	.contact-form-panel:hover,
	.contact-card:hover,
	.marketing-panel__copy:hover {
		transform: scale(1.05);
	}

	.quality-card.reveal.is-visible:hover,
	.offer-card.reveal.is-visible:hover {
		transform: translateY(0) scale(1.05);
	}
}

.quality-card {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.quality-card::before,
.offer-card::before,
.feature-list__item::before,
.stats-grid__item::before,
.contact-card::before,
.contact-form-panel::before,
.marketing-panel__copy::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--color-yellow), transparent 75%);
	opacity: 0.92;
}

.section-header h2 {
	color: var(--color-yellow);
}

#vending h2 {
	color: var(--color-yellow);
}

#offer h2 {
	color: var(--color-black);
}

.quality-card__heading {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	margin-bottom: 0.8rem;
}

.quality-card__icon {
	width: 22px;
	height: 22px;
	margin-bottom: 0;
	border-radius: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	color: var(--color-yellow);
	box-shadow: none;
}

.quality-card__icon svg {
	width: 22px;
	height: 22px;
	display: block;
}

.quality-card h3,
.offer-card h3,
.feature-list__item h3,
.contact-card h3,
.contact-form-panel h3 {
	margin-top: 0;
	margin-bottom: 0.8rem;
	font-size: 1.18rem;
	text-transform: uppercase;
}

.quality-card h3 {
	margin-bottom: 0;
	color: var(--color-yellow);
}

.offer-card {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 248, 222, 0.86));
	border: 1px solid rgba(255, 255, 255, 0.72);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.offer-card__heading {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	margin-bottom: 0.8rem;
}

.offer-card__icon {
	width: 22px;
	height: 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--color-black);
	flex: 0 0 22px;
}

.offer-card__icon svg {
	width: 22px;
	height: 22px;
	display: block;
}

.offer-card h3 {
	margin-bottom: 0;
	color: var(--color-black);
}

.offer-card ul,
.bullet-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.offer-card li,
.bullet-list li {
	position: relative;
	padding-left: 1.1rem;
}

.offer-card li + li,
.bullet-list li + li {
	margin-top: 0.7rem;
}

.offer-card li::before,
.bullet-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.7rem;
	width: 0.45rem;
	height: 0.45rem;
	border-radius: 50%;
	background: var(--color-yellow);
}

.offer-summary {
	max-width: 60ch;
	margin-top: 2rem;
	font-weight: 600;
	padding: 1.2rem 1.4rem;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.38);
	box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
}

.image-stack {
	position: relative;
	min-height: 520px;
}

.image-stack img,
.rounded-media,
.marketing-panel img {
	border-radius: 32px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.68);
}

.image-stack__primary {
	width: min(100%, 460px);
}

.image-stack__secondary {
	position: absolute;
	right: 0;
	bottom: 0;
	width: min(58%, 260px);
	border: 10px solid var(--color-white);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 2rem;
}

.stats-grid__item {
	padding: 1.25rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 246, 208, 0.84));
	border-radius: 22px;
	border: 1px solid rgba(255, 255, 255, 0.72);
	box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
}

.stats-grid__item strong {
	display: block;
	font-size: 1.8rem;
	line-height: 1;
	margin-bottom: 0.35rem;
}

.feature-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 1.8rem;
}

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

.feature-list__item {
	padding: 1.3rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 245, 205, 0.7));
	border-radius: 22px;
	border: 1px solid rgba(255, 255, 255, 0.78);
	box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
}

.feature-list__heading {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	margin-bottom: 0.8rem;
}

.feature-list__icon {
	width: 22px;
	height: 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--color-black);
	flex: 0 0 22px;
}

.feature-list__icon svg {
	width: 22px;
	height: 22px;
	display: block;
}

.feature-list__item h3 {
	margin-bottom: 0;
}

.logistics-layout {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: clamp(2rem, 4vw, 3rem);
	align-items: start;
}

.marketing-panel {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	align-items: start;
}

.marketing-panel img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.marketing-panel__copy {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 250, 235, 0.94));
	border: 1px solid rgba(255, 255, 255, 0.7);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 20px 42px rgba(0, 0, 0, 0.08);
}

@media (min-width: 1101px) {
	.marketing-panel img {
		width: 100%;
		height: auto;
		object-fit: contain;
		align-self: start;
	}
}

.content-section--contact {
	padding-bottom: calc(var(--section-space) + 2rem);
}

.contact-card {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 1.4rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 250, 231, 0.88));
	border: 1px solid rgba(255, 255, 255, 0.7);
	box-shadow: 0 20px 44px rgba(0, 0, 0, 0.08);
}

.contact-form-panel {
	background:
		radial-gradient(circle at 16% 18%, rgba(251, 194, 14, 0.16), transparent 26%),
		linear-gradient(180deg, rgba(0, 0, 0, 0.96), rgba(20, 20, 20, 0.96));
	color: var(--color-white);
	border: 1px solid rgba(251, 194, 14, 0.24);
	box-shadow: 0 28px 72px rgba(0, 0, 0, 0.24);
}

.contact-form {
	display: grid;
	gap: 1rem;
}

.contact-form label {
	display: grid;
	gap: 0.35rem;
	font-weight: 600;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 0.9rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--color-white);
	font: inherit;
	box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: 2px solid var(--color-yellow);
	outline-offset: 1px;
}

.contact-form__status {
	min-height: 1.5rem;
	margin: 0;
	font-weight: 600;
}

.contact-form__status.is-error {
	color: #ffb9b9;
}

.contact-form__status.is-success {
	color: #fff5b8;
}

.contact-form__hp {
	position: absolute;
	left: -9999px;
	opacity: 0;
	pointer-events: none;
}

.theme-editor-link {
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	z-index: 40;
	padding: 0.85rem 1rem;
	border-radius: 999px;
	background: var(--color-black);
	color: var(--color-white);
	box-shadow: var(--shadow-soft);
	font-size: 0.9rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
	animation: interactive-breathe 3.1s ease-in-out infinite, interactive-glow 3.1s ease-in-out infinite;
	transform: translateZ(0);
	backface-visibility: hidden;
	will-change: transform, box-shadow;
}

.theme-editor-link:hover,
.theme-editor-link:focus-visible,
.site-header__edit-mobile:hover,
.site-header__edit-mobile:focus-visible,
.site-header__toggle:hover,
.site-header__toggle:focus-visible {
	transform: translateY(-4px) scale(1.05);
	box-shadow: 0 26px 60px rgba(251, 194, 14, 0.42);
}

.button:focus-visible,
.site-header__nav a:focus-visible,
.site-header__edit-mobile:focus-visible,
.site-header__toggle:focus-visible,
.theme-editor-link:focus-visible {
	outline: 2px solid var(--color-yellow);
	outline-offset: 3px;
}

.site-footer {
	padding: 1.3rem 0 2rem;
	background:
		linear-gradient(180deg, rgba(251, 194, 14, 0.12), transparent 20%),
		var(--color-black);
	color: var(--color-white);
	border-top: 1px solid rgba(251, 194, 14, 0.22);
}

.site-footer__inner {
	width: var(--shell-width);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.site-footer__brand {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.site-footer__brand img {
	width: 44px;
}

.site-footer__back {
	font-weight: 700;
	text-transform: uppercase;
	transition: transform 220ms ease, color 220ms ease, text-shadow 220ms ease;
	animation: interactive-breathe 3.2s ease-in-out infinite;
	transform: translateZ(0);
	backface-visibility: hidden;
	will-change: transform;
}

.site-footer__back:hover,
.site-footer__back:focus-visible {
	transform: translateY(-3px) scale(1.04);
	color: var(--color-yellow);
	text-shadow: 0 0 18px rgba(251, 194, 14, 0.28);
}

.reveal {
	opacity: 0;
	transform: translateY(32px);
	transition: opacity 700ms ease, transform 700ms ease;
}

.reveal--delay {
	transition-delay: 120ms;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@keyframes loader-bounce {
	0% {
		opacity: 0;
		transform: scale(0.84) translateY(18px);
	}
	60% {
		opacity: 1;
		transform: scale(1.03) translateY(-4px);
	}
	100% {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

@keyframes loader-wipe {
	0% {
		opacity: 0;
		transform: scaleX(0.2);
	}
	35% {
		opacity: 1;
	}
	100% {
		opacity: 1;
		transform: scaleX(1);
	}
}

.sir-sandwich-admin {
	max-width: 1120px;
}

.sir-sandwich-admin__intro,
.sir-sandwich-admin__products,
.sir-sandwich-admin__section {
	margin-top: 1.5rem;
	padding: 1.5rem;
	background: #ffffff;
	border: 1px solid #dcdcde;
	border-radius: 16px;
}

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

.sir-sandwich-admin__field {
	display: grid;
	gap: 0.4rem;
}

.sir-sandwich-admin__product-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1rem;
	padding: 0;
	margin: 1.5rem 0 0;
	list-style: none;
}

.sir-sandwich-admin__product-item {
	display: grid;
	gap: 0.8rem;
	padding: 1rem;
	border: 1px solid #dcdcde;
	border-radius: 14px;
}

.sir-sandwich-admin__product-item img {
	width: 100%;
	height: 180px;
	object-fit: contain;
	background: #f6f7f7;
	border-radius: 12px;
}

.sir-sandwich-admin__product-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

@media (max-width: 1100px) {
	.hero-section__layout,
	.section-shell--split,
	.logistics-layout,
	.marketing-panel,
	.quality-grid,
	.offer-grid {
		grid-template-columns: 1fr;
	}

	.image-stack {
		min-height: 0;
	}

	.image-stack__secondary {
		position: relative;
		width: min(72%, 260px);
		margin: -4rem 0 0 auto;
	}

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

@media (max-width: 840px) {
	.site-header__toggle {
		display: inline-flex;
	}

	.site-header__edit-mobile {
		display: inline-flex;
		margin-left: auto;
	}

	.site-header__nav {
		position: fixed;
		inset: var(--header-height) 1rem auto 1rem;
		padding: 1rem;
		border-radius: 24px;
		background: rgba(255, 255, 255, 0.96);
		box-shadow: var(--shadow-soft);
		display: none;
		flex-direction: column;
		align-items: flex-start;
	}

	.site-header__nav.is-open {
		display: flex;
	}

	.stats-grid,
	.feature-list,
	.sir-sandwich-admin__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 720px) {
	:root {
		--header-height: 76px;
	}

	.product-showcase__track {
		--visible-count: 1;
	}

	.product-showcase__item {
		min-height: 0;
		padding: 0.25rem 0;
	}

	.product-showcase__viewport {
		min-height: 0;
	}

	.product-showcase__item img {
		max-width: min(100%, 300px);
		max-height: 300px;
	}

	.product-gallery {
		padding: 0.75rem;
	}

	.product-gallery__dialog {
		width: min(100vw - 1.5rem, 100%);
		padding: 1rem 0.85rem 0.9rem;
		border-radius: 24px;
	}

	.product-gallery__main {
		min-height: 46vh;
	}

	.product-gallery__figure {
		min-height: 46vh;
		padding: 0.35rem;
	}

	.product-gallery__image {
		max-height: 42vh;
	}

	.product-gallery__nav,
	.product-gallery__close {
		width: 44px;
		height: 44px;
	}

	.product-gallery__controls {
		grid-template-columns: 44px minmax(0, 1fr) 44px;
		gap: 0.5rem;
		align-items: center;
	}

	.product-gallery__thumbs {
		margin-top: 0.35rem;
		padding: 0.25rem 0 0.1rem;
		scroll-padding-inline: 0;
	}

	.product-gallery__thumb {
		flex-basis: 72px;
		width: 72px;
		height: 72px;
	}

	.hero-section__actions,
	.site-footer__inner,
	.site-footer__brand {
		flex-direction: column;
		align-items: flex-start;
	}

	.theme-editor-link {
		display: none;
	}
}
