/* ==========================================================================
   Poszarpane – Modern BBQ Theme
   ========================================================================== */

:root {
	--color-red: #d62f2f;
	--color-red-dark: #b82525;
	--color-red-glow: rgba(214, 47, 47, 0.35);
	--color-navy: #043b87;
	--color-navy-light: #29487d;
	--color-black: #000000;
	--color-dark: #0d0d0d;
	--color-dark-2: #1a1a1a;
	--color-dark-3: #252525;
	--color-gray: #888;
	--color-gray-light: #ccc;
	--color-white: #ffffff;
	--color-cream: #f5f6f7;

	--font-heading: "Oswald", sans-serif;
	--font-body: "Inter", sans-serif;

	--header-height: 80px;
	--container: 1200px;
	--radius: 12px;
	--radius-sm: 8px;
	--transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
	--shadow-red: 0 4px 24px var(--color-red-glow);
}

/* Reset & Base
   ========================================================================== */

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

html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
}

body {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-white);
	background: var(--color-black);
	overflow-x: hidden;
}

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

a {
	color: inherit;
	text-decoration: none;
	transition: color var(--transition), opacity var(--transition);
}

a:hover {
	color: var(--color-red);
}

ul, ol {
	list-style: none;
}

.skip-link {
	position: absolute;
	top: -100%;
	left: 16px;
	z-index: 9999;
	padding: 8px 16px;
	background: var(--color-red);
	color: var(--color-white);
	border-radius: var(--radius-sm);
}

.skip-link:focus {
	top: 16px;
}

.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}

/* Typography
   ========================================================================== */

.section-eyebrow {
	font-family: var(--font-heading);
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-red);
	margin-bottom: 8px;
}

.section-title {
	font-family: var(--font-heading);
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.1;
	letter-spacing: 0.02em;
}

.section-title__accent {
	color: var(--color-red);
}

.section-header {
	text-align: center;
	margin-bottom: 48px;
}

.section-cta {
	text-align: center;
	margin-top: 48px;
}

.section {
	padding: 96px 0;
	position: relative;
}

.section--dark {
	background: var(--color-dark);
}

/* Buttons
   ========================================================================== */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--font-heading);
	font-size: 0.9375rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 14px 32px;
	border: 2px solid transparent;
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: all var(--transition);
	white-space: nowrap;
}

.btn--primary {
	background: var(--color-red);
	color: var(--color-white);
	border-color: var(--color-red);
}

.btn--primary:hover {
	background: var(--color-red-dark);
	border-color: var(--color-red-dark);
	color: var(--color-white);
	box-shadow: var(--shadow-red);
	transform: translateY(-2px);
}

.btn--navy {
	background: var(--color-navy);
	color: var(--color-white);
	border-color: var(--color-navy);
}

.btn--navy:hover {
	background: var(--color-navy-light);
	border-color: var(--color-navy-light);
	color: var(--color-white);
	transform: translateY(-2px);
}

.btn--outline {
	background: transparent;
	color: var(--color-white);
	border-color: var(--color-white);
}

.btn--outline:hover {
	background: var(--color-white);
	color: var(--color-black);
}

.btn--sm {
	padding: 10px 20px;
	font-size: 0.8125rem;
}

.btn--lg {
	padding: 16px 40px;
	font-size: 1rem;
}

/* Header
   ========================================================================== */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	height: var(--header-height);
	transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(16px);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

.site-logo img,
.site-logo .custom-logo-link img,
.site-footer__brand img,
.site-footer__brand .custom-logo-link img {
	width: 64px;
	height: auto;
	filter: brightness(0) invert(1) drop-shadow(0 2px 10px rgba(0, 0, 0, 0.45));
	transition: filter var(--transition), transform var(--transition);
}

.site-logo:hover img,
.site-logo:hover .custom-logo-link img {
	filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(214, 47, 47, 0.45));
	transform: scale(1.03);
}

.nav__list {
	display: flex;
	align-items: center;
	gap: 8px;
}

.nav__link {
	font-family: var(--font-heading);
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 8px 16px;
	border-radius: var(--radius-sm);
	transition: all var(--transition);
}

.nav__link:hover,
.nav__link:focus {
	color: var(--color-red);
	background: rgba(214, 47, 47, 0.1);
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.nav-toggle span {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--color-white);
	transition: all var(--transition);
	border-radius: 2px;
}

.nav-toggle.is-active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
	opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Hero
   ========================================================================== */

.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding-top: var(--header-height);
	padding-bottom: 80px;
	overflow: hidden;
}

.hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero__bg-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 72%;
	transform: scale(1.05);
	filter: brightness(0.58) contrast(1.1) saturate(0.9);
	animation: heroZoom 20s ease-in-out infinite alternate;
}

@media (min-width: 769px) {
	.hero__bg-image {
		object-position: center 58%;
	}
}

@keyframes heroZoom {
	from { transform: scale(1.05); }
	to { transform: scale(1.1); }
}

.hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.12) 45%, rgba(0, 0, 0, 0.55) 100%),
		linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.5) 100%);
}

.hero__vignette {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at center, transparent 35%, rgba(0, 0, 0, 0.35) 100%);
	pointer-events: none;
	z-index: 1;
}

.hero__fog {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	background:
		radial-gradient(ellipse 90% 55% at 50% 100%, rgba(255, 255, 255, 0.16) 0%, transparent 65%),
		radial-gradient(ellipse 55% 40% at 20% 85%, rgba(255, 255, 255, 0.1) 0%, transparent 55%),
		radial-gradient(ellipse 50% 38% at 80% 80%, rgba(255, 255, 255, 0.12) 0%, transparent 55%),
		linear-gradient(to top, rgba(255, 255, 255, 0.08) 0%, transparent 45%);
	animation: fogDrift 14s ease-in-out infinite alternate;
}

@keyframes fogDrift {
	from {
		transform: translateX(-1.5%) scale(1);
		opacity: 0.75;
	}
	to {
		transform: translateX(1.5%) scale(1.04);
		opacity: 1;
	}
}

.hero__smoke {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	z-index: 3;
}

.hero__smoke--back {
	opacity: 0.95;
}

.hero__smoke--front {
	z-index: 4;
}

.hero__smoke span {
	position: absolute;
	bottom: -20%;
	border-radius: 50%;
	filter: blur(52px);
	animation: smokeRise 14s ease-in-out infinite;
}

.hero__smoke--back span {
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(220, 220, 220, 0.08) 35%, transparent 72%);
}

.hero__smoke--front span {
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.28) 0%, rgba(240, 240, 240, 0.1) 30%, transparent 68%);
	filter: blur(40px);
	animation-name: smokeRiseFront;
}

.hero__smoke--back span:nth-child(1) { left: 3%;  animation-delay: 0s;  animation-duration: 16s; }
.hero__smoke--back span:nth-child(2) { left: 22%; animation-delay: 3s;  animation-duration: 18s; width: 380px; height: 380px; }
.hero__smoke--back span:nth-child(3) { left: 45%; animation-delay: 1s;  animation-duration: 15s; }
.hero__smoke--back span:nth-child(4) { left: 62%; animation-delay: 5s;  animation-duration: 17s; width: 340px; height: 340px; }
.hero__smoke--back span:nth-child(5) { left: 78%; animation-delay: 2s;  animation-duration: 19s; }
.hero__smoke--back span:nth-child(6) { left: 92%; animation-delay: 7s;  animation-duration: 14s; width: 260px; height: 260px; }

.hero__smoke--front span:nth-child(1) { left: 8%;  animation-delay: 0.5s; animation-duration: 11s; }
.hero__smoke--front span:nth-child(2) { left: 24%; animation-delay: 2.5s; animation-duration: 13s; width: 260px; height: 260px; }
.hero__smoke--front span:nth-child(3) { left: 40%; animation-delay: 0s;   animation-duration: 10s; }
.hero__smoke--front span:nth-child(4) { left: 55%; animation-delay: 4s;   animation-duration: 12s; width: 240px; height: 240px; }
.hero__smoke--front span:nth-child(5) { left: 68%; animation-delay: 1.5s; animation-duration: 14s; }
.hero__smoke--front span:nth-child(6) { left: 82%; animation-delay: 6s;   animation-duration: 11s; width: 220px; height: 220px; }
.hero__smoke--front span:nth-child(7) { left: 15%; animation-delay: 8s;   animation-duration: 15s; width: 180px; height: 180px; }
.hero__smoke--front span:nth-child(8) { left: 50%; animation-delay: 9s;   animation-duration: 16s; width: 320px; height: 320px; }

@keyframes smokeRise {
	0% {
		transform: translateY(0) translateX(0) scale(0.8);
		opacity: 0;
	}
	12% { opacity: 0.65; }
	45% { opacity: 0.5; }
	100% {
		transform: translateY(-130vh) translateX(-50px) scale(3);
		opacity: 0;
	}
}

@keyframes smokeRiseFront {
	0% {
		transform: translateY(0) translateX(0) scale(0.6);
		opacity: 0;
	}
	15% { opacity: 0.75; }
	50% { opacity: 0.55; }
	100% {
		transform: translateY(-120vh) translateX(45px) scale(2.4);
		opacity: 0;
	}
}

.hero__content {
	position: relative;
	z-index: 5;
	max-width: 640px;
	padding: 48px 0 40px;
}

.hero__eyebrow {
	font-family: var(--font-heading);
	font-size: clamp(1.25rem, 3vw, 1.75rem);
	font-weight: 600;
	color: var(--color-red);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.hero__title {
	font-family: var(--font-heading);
	font-size: clamp(2.5rem, 7vw, 4.5rem);
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.05;
	letter-spacing: 0.02em;
	margin-bottom: 16px;
}

.hero__divider {
	width: 80px;
	height: 4px;
	background: var(--color-red);
	margin-bottom: 24px;
}

.hero__text {
	font-size: 1.0625rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 32px;
	max-width: 520px;
}

.info-bar {
	position: relative;
	z-index: 10;
	margin-top: -48px;
	padding-bottom: 48px;
}

.info-bar__notice {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px 16px;
	margin-bottom: 20px;
	padding: 14px 24px;
	background: rgba(20, 20, 20, 0.9);
	border: 1px solid rgba(214, 47, 47, 0.35);
	border-radius: var(--radius);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
	text-align: center;
}

.info-bar__notice-label {
	font-family: var(--font-heading);
	font-size: 0.8125rem;
	font-weight: 700;
	color: var(--color-red);
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.info-bar__notice-text {
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.88);
}

.info-bar__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.info-card {
	background: rgba(20, 20, 20, 0.85);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius);
	padding: 28px 24px;
	transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.info-card:hover {
	transform: translateY(-4px);
	border-color: rgba(214, 47, 47, 0.3);
	box-shadow: var(--shadow);
}

.info-card__icon {
	width: 40px;
	height: 40px;
	color: var(--color-red);
	margin-bottom: 16px;
}

.info-card__icon svg {
	width: 100%;
	height: 100%;
}

.info-card__title {
	font-family: var(--font-heading);
	font-size: 1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 12px;
}

.info-card p {
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.5;
}

.info-card__link {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--color-white);
}

.info-card__link:hover {
	color: var(--color-red);
}

.info-card__today {
	margin-bottom: 8px;
}

.info-card__today strong {
	color: var(--color-red);
}

.info-card__toggle {
	background: none;
	border: none;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.8125rem;
	cursor: pointer;
	text-decoration: underline;
	padding: 0;
	margin-top: 4px;
	font-family: var(--font-body);
}

.info-card__toggle:hover {
	color: var(--color-red);
}

.info-card__hours {
	margin-top: 12px;
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.65);
}

.info-card__hours li {
	padding: 4px 0;
	display: flex;
	justify-content: space-between;
	gap: 16px;
}

.info-card--cta {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.info-card--cta .btn {
	width: 100%;
	margin-top: 8px;
}

.info-card__email {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.75);
	word-break: break-all;
}

.info-card__email:hover {
	color: var(--color-red);
}

.info-card--hours {
	display: flex;
	flex-direction: column;
}

.info-card__subtitle {
	font-family: var(--font-heading);
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-top: 20px;
	margin-bottom: 8px;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.9);
}

.contact__hours {
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.75);
}

.contact__hours li {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 4px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact__hours li:last-child {
	border-bottom: none;
}

.contact__hours span {
	text-transform: capitalize;
	min-width: 110px;
}

/* About
   ========================================================================== */

.about__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

.about__media {
	position: relative;
}

.about__media img {
	border-radius: var(--radius);
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
	box-shadow: var(--shadow);
}

.about__media-accent {
	position: absolute;
	bottom: -16px;
	right: -16px;
	width: 60%;
	height: 60%;
	border: 3px solid var(--color-red);
	border-radius: var(--radius);
	z-index: -1;
}

.about__text {
	margin: 24px 0 32px;
}

.about__text p {
	margin-bottom: 16px;
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.0625rem;
	line-height: 1.7;
}

/* Menu
   ========================================================================== */

.menu {
	overflow: hidden;
}

.menu__smoke {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 200px;
	background: linear-gradient(to bottom, rgba(214, 47, 47, 0.05), transparent);
	pointer-events: none;
}

.menu__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}

.menu-card {
	background: var(--color-dark-2);
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.06);
	transition: transform var(--transition), box-shadow var(--transition);
}

.menu-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow);
	border-color: rgba(214, 47, 47, 0.2);
}

.menu-card__image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16/10;
}

.menu-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.menu-card:hover .menu-card__image img {
	transform: scale(1.08);
}

.menu-card__body {
	padding: 24px;
}

.menu-card__title {
	font-family: var(--font-heading);
	font-size: 1.375rem;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 8px;
	letter-spacing: 0.02em;
}

.menu-card__desc {
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.6;
}

/* Reviews
   ========================================================================== */

.reviews__stat {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.7);
	margin-top: 12px;
}

.reviews__slider {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
}

.reviews__track {
	position: relative;
	min-height: 200px;
}

.review-card {
	position: absolute;
	inset: 0;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.5s ease;
	pointer-events: none;
}

.review-card.is-active {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
	position: relative;
}

.review-card__stars {
	color: var(--color-red);
	font-size: 1.25rem;
	letter-spacing: 4px;
	margin-bottom: 20px;
}

.review-card__text {
	font-size: 1.375rem;
	font-style: italic;
	line-height: 1.5;
	margin-bottom: 20px;
	color: rgba(255, 255, 255, 0.9);
}

.review-card__author {
	font-family: var(--font-heading);
	font-size: 1rem;
	font-weight: 600;
	font-style: normal;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--color-red);
}

.reviews__controls {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 32px;
}

.reviews__dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.3);
	background: transparent;
	cursor: pointer;
	padding: 0;
	transition: all var(--transition);
}

.reviews__dot.is-active,
.reviews__dot:hover {
	background: var(--color-red);
	border-color: var(--color-red);
}

/* Gallery
   ========================================================================== */

.gallery__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.gallery__item {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius);
	aspect-ratio: 4/3;
	cursor: pointer;
}

.gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.gallery__item::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(214, 47, 47, 0);
	transition: background var(--transition);
}

.gallery__item:hover img {
	transform: scale(1.1);
}

.gallery__item:hover::after {
	background: rgba(214, 47, 47, 0.2);
}

/* Steps
   ========================================================================== */

.steps__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	counter-reset: steps;
}

.step-card {
	text-align: center;
	padding: 40px 24px;
	background: var(--color-dark-2);
	border-radius: var(--radius);
	border: 1px solid rgba(255, 255, 255, 0.06);
	transition: transform var(--transition), border-color var(--transition);
}

.step-card:hover {
	transform: translateY(-4px);
	border-color: rgba(214, 47, 47, 0.3);
}

.step-card__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	background: var(--color-red);
	color: var(--color-white);
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	border-radius: 50%;
	margin-bottom: 20px;
	box-shadow: var(--shadow-red);
}

.step-card__title {
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.step-card__text {
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.65);
}

/* Features
   ========================================================================== */

.features {
	overflow: hidden;
}

.features__smoke {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 150px;
	background: linear-gradient(to top, rgba(214, 47, 47, 0.04), transparent);
	pointer-events: none;
}

.features__slider {
	position: relative;
}

.feature-slide {
	display: none;
	animation: fadeIn 0.5s ease;
}

.feature-slide.is-active {
	display: block;
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

.feature-slide__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.feature-slide__tag {
	font-size: 0.8125rem;
	color: var(--color-red);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 8px;
}

.feature-slide__title {
	font-family: var(--font-heading);
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 8px;
	line-height: 1.15;
}

.feature-slide__sub {
	font-family: var(--font-heading);
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 16px;
}

.feature-slide__text {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.7;
	margin-bottom: 24px;
}

.feature-slide__media img {
	border-radius: var(--radius);
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
	box-shadow: var(--shadow);
}

.features__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	margin-top: 40px;
}

.features__arrow {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.2);
	background: transparent;
	color: var(--color-white);
	font-size: 1.5rem;
	cursor: pointer;
	transition: all var(--transition);
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.features__arrow:hover {
	border-color: var(--color-red);
	color: var(--color-red);
	background: rgba(214, 47, 47, 0.1);
}

.features__dots {
	display: flex;
	gap: 10px;
}

.features__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.25);
	cursor: pointer;
	padding: 0;
	transition: all var(--transition);
}

.features__dot.is-active,
.features__dot:hover {
	background: var(--color-red);
	transform: scale(1.2);
}

/* Contact
   ========================================================================== */

.contact__intro {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.7);
	margin-top: 8px;
}

.contact__grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 48px;
	align-items: start;
}

.contact__item {
	margin-bottom: 28px;
}

.contact__item h3 {
	font-family: var(--font-heading);
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--color-red);
	margin-bottom: 8px;
}

.contact__item p {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
}

.contact__map {
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
	aspect-ratio: 16/10;
}

.contact__map iframe {
	width: 100%;
	height: 100%;
	border: 0;
	filter: grayscale(30%) contrast(1.1);
}

/* Footer
   ========================================================================== */

.site-footer {
	position: relative;
	background: var(--color-dark);
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding-top: 64px;
}

.site-footer__smoke {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 80px;
	background: linear-gradient(to bottom, rgba(214, 47, 47, 0.06), transparent);
	pointer-events: none;
}

.site-footer__inner {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 48px;
}

.site-footer__tagline {
	font-family: var(--font-heading);
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.5);
	margin-top: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.site-footer__info p {
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.9375rem;
	line-height: 1.6;
}

.site-footer__social {
	display: inline-block;
	margin-top: 12px;
	font-family: var(--font-heading);
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.footer-nav {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer-nav a {
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.65);
}

.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding: 20px 0;
}

.site-footer__bottom p {
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.4);
	text-align: center;
}

/* Cookie Bar
   ========================================================================== */

.cookie-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9998;
	background: rgba(20, 20, 20, 0.95);
	backdrop-filter: blur(16px);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 16px 0;
	animation: slideUp 0.4s ease;
}

@keyframes slideUp {
	from { transform: translateY(100%); }
	to { transform: translateY(0); }
}

.cookie-bar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.cookie-bar__inner p {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.7);
	flex: 1;
}

/* Order Menu (Restaumatic / ABS POS)
   ========================================================================== */

.order-menu {
	padding-top: 96px;
	min-height: 70vh;
}

.order-menu#zamow {
	scroll-margin-top: calc(var(--header-height) + 16px);
}

.order-menu__embed {
	margin-top: 32px;
}

.active-menu-wrap {
	background: var(--color-dark-2);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius);
	overflow: hidden;
	min-height: 600px;
}

.active-menu-wrap--iframe {
	min-height: 900px;
}

.active-menu-wrap iframe {
	width: 100%;
	min-height: 80vh;
	border: 0;
	display: block;
}

.active-menu-wrap--iframe iframe {
	min-height: 900px;
}

.order-menu__fallback {
	text-align: center;
	padding: 64px 32px;
	background: var(--color-dark-2);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius);
}

.order-menu__fallback p {
	color: rgba(255, 255, 255, 0.75);
	margin-bottom: 24px;
	line-height: 1.7;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}

.order-menu__content {
	margin-top: 48px;
}

/* Page Content
   ========================================================================== */

.page-content {
	padding: calc(var(--header-height) + 48px) 0 96px;
}

.page-content--dark {
	background: var(--color-dark);
	min-height: 60vh;
}

.page-article__content {
	margin-top: 24px;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.7;
}

.page-article__content h2,
.page-article__content h3 {
	font-family: var(--font-heading);
	margin: 32px 0 16px;
	text-transform: uppercase;
}

.page-article__content p {
	margin-bottom: 16px;
}

/* Reveal Animation
   ========================================================================== */

.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.7s ease, transform 0.7s ease;
	transition-delay: var(--delay, 0s);
}

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

/* Responsive
   ========================================================================== */

@media (max-width: 1024px) {
	.info-bar__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.about__grid,
	.feature-slide__grid,
	.contact__grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.about__media-accent {
		display: none;
	}

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

	.gallery__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.steps__grid {
		grid-template-columns: 1fr;
		max-width: 400px;
		margin: 0 auto;
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

@media (max-width: 768px) {
	:root {
		--header-height: 70px;
	}

	.site-header.is-scrolled {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	.nav {
		position: fixed;
		top: var(--header-height);
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 1101;
		background: rgba(0, 0, 0, 0.97);
		padding: 32px 24px;
		transform: translateX(100%);
		transition: transform var(--transition);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	.nav.is-open {
		transform: translateX(0);
	}

	.nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 4px;
	}

	.nav__link {
		display: block;
		padding: 16px;
		font-size: 1.125rem;
		border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	}

	.nav-toggle {
		display: flex;
	}

	.site-header__actions .btn--sm {
		display: none;
	}

	.section {
		padding: 64px 0;
	}

	.info-bar {
		margin-top: -24px;
	}

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

	.hero__content {
		padding-bottom: 32px;
	}

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

	.cookie-bar__inner {
		flex-direction: column;
		text-align: center;
	}

	.feature-slide__media {
		order: -1;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 16px;
	}

	.btn--lg {
		width: 100%;
	}
}
