/*
Theme Name: Takeaway One — WokDeliver
Author: Desarrollo a medida
Description: Tema cinematográfico mobile first de una sola página para recogida y entrega, con ajustes nativos de WordPress.
Version: 1.2.0
Requires at least: 6.4
Tested up to: 7.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: takeaway-one
*/

:root {
	--black: #050505;
	--black-soft: #080808;
	--surface: #0d0d0d;
	--surface-2: #141414;
	--white: #f7f7f4;
	--muted: #aaa9a4;
	--muted-2: #777772;
	--red: #e50914;
	--red-hover: #c90813;
	--line: rgba(255, 255, 255, 0.12);
	--line-soft: rgba(255, 255, 255, 0.075);
	--font-body: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	--font-display: "Arial Narrow", "Helvetica Neue Condensed", "Roboto Condensed", Impact, sans-serif;
	--shell: 1440px;
	--gutter: clamp(20px, 4vw, 64px);
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--header-height: 72px;
}

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

html {
	background: var(--black);
	color-scheme: dark;
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-height) + 16px);
	overflow-x: clip;
}

body {
	margin: 0;
	background: var(--black);
	color: var(--white);
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 450;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: clip;
}

body.cookie-open {
	overflow: hidden;
}

body.cookie-open::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: 110;
	background: rgba(0, 0, 0, 0.54);
}

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

button,
input,
select,
textarea {
	font: inherit;
}

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

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

p,
h1,
h2,
h3,
address {
	margin-top: 0;
}

[hidden] {
	display: none !important;
}

::selection {
	background: var(--red);
	color: #fff;
}

:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 4px;
}

.shell {
	width: min(100%, var(--shell));
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.sr-only {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.skip-link {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 999;
	transform: translateY(-180%);
	background: #fff;
	color: #000;
	padding: 12px 18px;
	font-weight: 800;
	transition: transform 180ms ease;
}

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

.eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
	color: var(--white);
	font-size: 0.72rem;
	font-weight: 850;
	letter-spacing: 0.16em;
	line-height: 1.2;
	text-transform: uppercase;
}

.eyebrow > span {
	display: inline-block;
	width: 22px;
	height: 2px;
	background: var(--red);
	flex: 0 0 auto;
}

.section {
	position: relative;
	padding-block: clamp(68px, 8vw, 118px);
}

.section-heading {
	max-width: 920px;
	margin-bottom: clamp(34px, 4.8vw, 64px);
}

.section-heading h2,
.location-copy h2,
.document-article h1 {
	margin-bottom: 22px;
	font-family: var(--font-display);
	font-size: clamp(3.4rem, 14.5vw, 6.8rem);
	font-stretch: condensed;
	font-weight: 900;
	letter-spacing: -0.045em;
	line-height: 0.84;
	text-transform: uppercase;
}

.section-heading > p:last-child {
	max-width: 460px;
	margin: 0;
	color: var(--muted);
	font-size: clamp(1rem, 2vw, 1.18rem);
}

.button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: 56px;
	border: 1px solid transparent;
	border-radius: 2px;
	padding: 0 18px;
	background: transparent;
	color: #fff;
	cursor: pointer;
	font-size: 0.78rem;
	font-weight: 850;
	letter-spacing: 0.08em;
	line-height: 1;
	text-align: left;
	text-transform: uppercase;
	transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.button > span {
	display: inline-block;
	font-size: 1.1em;
	transition: transform 220ms ease;
}

.button:hover > span {
	transform: translate(3px, -1px);
}

.button:active {
	transform: translateY(1px) scale(0.99);
}

.button--large {
	min-height: 58px;
	padding-inline: 20px;
}

.button--full {
	width: 100%;
}

.button--primary {
	background: var(--red);
	border-color: var(--red);
	color: #fff;
	box-shadow: 0 10px 34px rgba(229, 9, 20, 0.14);
}

.button--primary:hover {
	background: var(--red-hover);
	border-color: var(--red-hover);
	box-shadow: 0 14px 38px rgba(229, 9, 20, 0.23);
}

.button--outline,
.button--glass {
	border-color: rgba(255, 255, 255, 0.24);
	background: rgba(8, 8, 8, 0.46);
}

@supports (backdrop-filter: blur(12px)) {
	.button--glass {
		background: rgba(8, 8, 8, 0.34);
		backdrop-filter: blur(12px);
		-webkit-backdrop-filter: blur(12px);
	}
}

.button--outline:hover,
.button--glass:hover {
	border-color: rgba(255, 255, 255, 0.62);
	background: rgba(255, 255, 255, 0.08);
}

.button--disabled {
	border-color: rgba(255, 255, 255, 0.09);
	background: #111;
	color: #777;
	cursor: not-allowed;
	box-shadow: none;
}

.button--disabled small {
	font-size: 0.58rem;
	letter-spacing: 0.12em;
}

/* Header */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 90;
	width: 100%;
	background: transparent;
	border-bottom: 1px solid transparent;
	transition: background-color 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.site-header.is-scrolled {
	background: rgba(5, 5, 5, 0.9);
	border-bottom-color: rgba(255, 255, 255, 0.08);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

@supports (backdrop-filter: blur(16px)) {
	.site-header.is-scrolled {
		background: rgba(5, 5, 5, 0.7);
		backdrop-filter: blur(16px);
		-webkit-backdrop-filter: blur(16px);
	}
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: calc(var(--header-height) + env(safe-area-inset-top));
	padding-top: env(safe-area-inset-top);
}

.site-brand {
	display: inline-flex;
	align-items: center;
	min-width: 68px;
	height: 58px;
}

.site-brand__image {
	width: 76px;
	height: 58px;
	object-fit: contain;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: clamp(16px, 3vw, 34px);
}

.header-actions__location {
	display: none;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.13em;
}

.header-actions__location:hover {
	color: var(--red);
}

.button--header {
	min-height: 56px;
	padding-inline: 15px;
	background: var(--red);
	border-color: var(--red);
	font-size: 0.7rem;
}

/* Hero */
.hero {
	position: relative;
	display: grid;
	min-height: 100vh;
	min-height: 100svh;
	isolation: isolate;
	overflow: hidden;
}

.hero__media,
.hero__poster,
.hero__video,
.hero__overlay,
.hero__noise {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hero__media {
	z-index: -4;
	background: #100b09;
}

.hero__poster img,
.hero__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.hero__video {
	z-index: 1;
	background: transparent;
}

.hero__overlay {
	z-index: -2;
	background:
		radial-gradient(ellipse 92% 74% at 12% 78%, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.22) 44%, transparent 76%),
		linear-gradient(90deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.12) 46%, transparent 76%),
		linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, transparent 34%, rgba(0, 0, 0, 0.08) 58%, rgba(0, 0, 0, 0.44) 100%);
}

.hero__noise {
	z-index: -1;
	opacity: 0.04;
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

.hero__content {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 100vh;
	min-height: 100svh;
	padding-top: calc(var(--header-height) + env(safe-area-inset-top) + 56px);
	padding-bottom: 18px;
}

.hero__eyebrow {
	margin-bottom: 12px;
	color: rgba(255, 255, 255, 0.9);
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.9);
}

.hero__title {
	max-width: min(100%, 7.5ch);
	margin-bottom: 14px;
	font-family: var(--font-display);
	font-size: clamp(4rem, 21vw, 6.75rem);
	font-stretch: condensed;
	font-weight: 900;
	letter-spacing: -0.06em;
	line-height: 0.76;
	text-transform: uppercase;
	text-wrap: balance;
	overflow-wrap: normal;
	word-break: keep-all;
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.76), 0 1px 3px rgba(0, 0, 0, 0.94);
}

.hero__subtitle {
	max-width: 430px;
	margin-bottom: 18px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 1rem;
	text-shadow: 0 1px 14px rgba(0, 0, 0, 0.92);
}

.hero__actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: stretch;
	gap: 8px;
	width: min(100%, 520px);
	margin-bottom: 10px;
	text-shadow: none;
}

.hero__actions > :only-child {
	grid-column: 1 / -1;
}

.hero__actions .button {
	min-width: 0;
	min-height: 58px;
	align-content: center;
	flex-wrap: wrap;
	gap: 5px 12px;
	padding-block: 9px;
}

.hero__actions .button--disabled {
	color: rgba(255, 255, 255, 0.72);
}

.hero__actions .button small {
	display: block;
	width: 100%;
	flex: 0 0 100%;
	font-size: 0.62rem;
	line-height: 1.15;
	white-space: normal;
}

.hero__delivery-state {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px 12px;
	margin-bottom: 12px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.9);
	text-transform: uppercase;
}

.hero__delivery-state:empty {
	display: none;
}

.hero__delivery-state a {
	color: #fff;
	text-decoration: underline;
	text-decoration-color: var(--red);
	text-underline-offset: 4px;
}

.status-disabled {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border-left: 2px solid var(--red);
	padding-left: 10px;
	color: #fff;
}

.status-disabled small {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.66rem;
}

.hero__facts {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(5, 5, 5, 0.28);
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.92);
}

.hero-fact {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 70px;
	padding: 12px 10px 8px 0;
}

.hero-fact + .hero-fact {
	border-left: 1px solid rgba(255, 255, 255, 0.14);
	padding-left: 14px;
}

.hero-fact span,
.hero-fact strong {
	display: block;
}

.hero-fact span {
	margin-bottom: 3px;
	color: rgba(255, 255, 255, 0.74);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.1em;
}

.hero-fact strong {
	font-size: 0.78rem;
	font-style: normal;
	font-weight: 750;
	line-height: 1.3;
}

.hero-fact--address:hover strong {
	color: var(--red);
}

.status-dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	margin: 0;
	border-radius: 50%;
	background: var(--red);
	box-shadow: 0 0 0 4px rgba(229, 9, 20, 0.16);
	flex: 0 0 auto;
}

.video-toggle {
	position: absolute;
	top: calc(var(--header-height) + env(safe-area-inset-top) + 12px);
	right: var(--gutter);
	z-index: 4;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-width: 44px;
	min-height: 44px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	padding: 0 12px;
	background: rgba(5, 5, 5, 0.58);
	color: #fff;
	cursor: pointer;
	font-size: 0.58rem;
	font-weight: 800;
	letter-spacing: 0.1em;
}

@supports (backdrop-filter: blur(12px)) {
	.video-toggle {
		backdrop-filter: blur(12px);
		-webkit-backdrop-filter: blur(12px);
	}
}

.video-toggle__icon {
	position: relative;
	display: block;
	width: 18px;
	height: 16px;
	flex: 0 0 18px;
}

.video-toggle__icon i {
	position: absolute;
	display: block;
	color: currentColor;
}

.video-toggle__icon i:first-child {
	top: 3px;
	left: 0;
	width: 10px;
	height: 10px;
	background: currentColor;
	clip-path: polygon(0 30%, 36% 30%, 100% 0, 100% 100%, 36% 70%, 0 70%);
}

.video-toggle__icon i:last-child {
	top: 3px;
	right: 0;
	width: 6px;
	height: 10px;
	border: 2px solid currentColor;
	border-left: 0;
	border-radius: 0 12px 12px 0;
}

.video-toggle.is-muted .video-toggle__icon i:last-child {
	top: -1px;
	right: 3px;
	width: 2px;
	height: 18px;
	border: 0;
	border-radius: 2px;
	background: currentColor;
	box-shadow: 0 0 0 2px rgba(5, 5, 5, 0.58);
	transform: rotate(-45deg);
}

/* Order */
.order-section {
	background: var(--black);
}

.order-section::before {
	content: "PEDIR";
	position: absolute;
	top: 40px;
	right: -0.05em;
	color: rgba(255, 255, 255, 0.018);
	font-family: var(--font-display);
	font-size: clamp(8rem, 24vw, 25rem);
	font-weight: 900;
	letter-spacing: -0.08em;
	line-height: 0.8;
	pointer-events: none;
}

.order-grid {
	border-bottom: 1px solid var(--line);
}

.order-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 260px;
	border-top: 1px solid var(--line);
	padding: 28px 0 24px;
}

.order-card__number {
	position: absolute;
	top: 28px;
	right: 2px;
	color: var(--muted-2);
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.12em;
}

.order-card__type {
	margin-bottom: 18px;
	color: #ff3b43;
	font-size: 0.66rem;
	font-weight: 850;
	letter-spacing: 0.14em;
}

.order-card h3 {
	margin-bottom: 14px;
	font-family: var(--font-display);
	font-size: clamp(3.1rem, 13vw, 5.4rem);
	font-stretch: condensed;
	font-weight: 900;
	letter-spacing: -0.045em;
	line-height: 0.82;
}

.order-card > p:not(.order-card__type) {
	max-width: 320px;
	margin-bottom: 22px;
	color: var(--muted);
}

.order-card .button {
	margin-top: auto;
}

/* Brand visual */
.brand-visual {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: 62vh;
	min-height: 62svh;
	padding-block: clamp(56px, 7vw, 96px);
	isolation: isolate;
	overflow: hidden;
}

.brand-visual__media,
.brand-visual__shade {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.brand-visual__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1.01);
}

.brand-visual__shade {
	z-index: -1;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.42) 62%, rgba(0, 0, 0, 0.2) 100%),
		linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.72));
}

.brand-visual::after {
	content: "";
	position: absolute;
	top: 0;
	left: var(--gutter);
	width: 4px;
	height: 28%;
	background: var(--red);
}

.brand-visual__content h2 {
	max-width: 100%;
	margin-bottom: 24px;
	font-family: var(--font-display);
	font-size: clamp(2.15rem, 10.8vw, 10rem);
	font-stretch: condensed;
	font-weight: 900;
	letter-spacing: -0.055em;
	line-height: 0.78;
}

.brand-visual__content > p:last-child {
	max-width: 390px;
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 1rem;
}

/* Delivery platforms */
.platform-section {
	background: var(--black-soft);
}

.section-heading--compact h2 {
	font-size: clamp(3.3rem, 13vw, 6.2rem);
}

.platform-list {
	border-top: 1px solid var(--line);
}

.platform-link {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 14px;
	min-height: 72px;
	border-bottom: 1px solid var(--line);
	transition: background-color 240ms ease, color 240ms ease, padding 240ms var(--ease);
}

a.platform-link:hover {
	padding-inline: 14px;
	background: var(--red);
}

.platform-link__index {
	color: var(--muted-2);
	font-size: 0.6rem;
	font-weight: 800;
}

.platform-link strong {
	font-family: var(--font-display);
	font-size: clamp(1.55rem, 6vw, 2.6rem);
	font-weight: 900;
	letter-spacing: -0.025em;
}

.platform-link__state {
	color: var(--muted);
	font-size: 0.58rem;
	font-weight: 800;
	letter-spacing: 0.1em;
}

a.platform-link:hover .platform-link__index,
a.platform-link:hover .platform-link__state {
	color: #fff;
}

.platform-link--disabled {
	color: #757575;
}

/* Location */
.location-section {
	background: #070707;
}

.location-copy address {
	max-width: 540px;
	margin-bottom: 28px;
	font-size: clamp(1.25rem, 4.7vw, 2rem);
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
}

.location-hours {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 34px;
}

.location-hours span,
.location-hours strong {
	display: block;
}

.location-hours span:not(.status-dot) {
	color: var(--muted);
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.12em;
}

.location-hours strong {
	font-size: 1.12rem;
	font-weight: 800;
}

.location-phone {
	display: inline-block;
	margin: -14px 0 30px;
	border-bottom: 1px solid var(--red);
	font-weight: 700;
}

.location-actions {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	max-width: 540px;
}

.text-link {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	min-height: 48px;
	padding: 0 2px;
	border-bottom: 1px solid var(--line);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.1em;
}

.text-link:hover {
	color: var(--red);
}

.copy-status {
	min-height: 1.5em;
	margin: 12px 0 0;
	color: var(--muted);
	font-size: 0.75rem;
}

.location-visual {
	position: relative;
	display: block;
	min-height: min(86vw, 440px);
	margin-top: 54px;
	background: #101010;
	border: 1px solid var(--line);
	isolation: isolate;
	overflow: hidden;
}

.location-visual::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	background:
		linear-gradient(33deg, transparent 0 42%, rgba(255, 255, 255, 0.09) 42.3% 43%, transparent 43.3%),
		linear-gradient(112deg, transparent 0 58%, rgba(255, 255, 255, 0.06) 58.3% 59%, transparent 59.3%),
		repeating-linear-gradient(90deg, transparent 0 70px, rgba(255, 255, 255, 0.035) 71px 72px),
		repeating-linear-gradient(0deg, transparent 0 70px, rgba(255, 255, 255, 0.035) 71px 72px);
}

.location-visual::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: radial-gradient(circle at 50% 46%, rgba(229, 9, 20, 0.12), transparent 35%);
}

.location-visual__grid i {
	position: absolute;
	display: block;
	height: 1px;
	background: rgba(255, 255, 255, 0.12);
	transform-origin: left;
}

.location-visual__grid i:nth-child(1) { top: 22%; left: -10%; width: 120%; transform: rotate(17deg); }
.location-visual__grid i:nth-child(2) { top: 42%; left: -8%; width: 116%; transform: rotate(-9deg); }
.location-visual__grid i:nth-child(3) { top: 70%; left: -10%; width: 130%; transform: rotate(31deg); }
.location-visual__grid i:nth-child(4) { top: 12%; left: 78%; width: 90%; transform: rotate(91deg); }

.location-pin {
	position: absolute;
	top: 43%;
	left: 50%;
	width: 46px;
	height: 46px;
	border-radius: 50% 50% 50% 0;
	background: var(--red);
	transform: translate(-50%, -50%) rotate(-45deg);
	box-shadow: 0 12px 30px rgba(229, 9, 20, 0.3);
}

.location-pin span {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #fff;
	transform: translate(-50%, -50%);
}

.location-visual__label {
	position: absolute;
	left: 22px;
	right: 22px;
	bottom: 20px;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: end;
	border-top: 1px solid var(--line);
	padding-top: 16px;
}

.location-visual__disclaimer {
	position: absolute;
	top: 18px;
	left: 18px;
	z-index: 2;
	max-width: calc(100% - 36px);
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.1em;
}

.location-visual__label span,
.location-visual__label small {
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.12em;
}

.location-visual__label strong {
	grid-column: 1;
	font-family: var(--font-display);
	font-size: clamp(4rem, 18vw, 7rem);
	line-height: 0.8;
}

.location-visual__label small {
	grid-column: 2;
	grid-row: 1 / span 2;
	align-self: end;
	color: var(--muted);
}

.location-visual:hover .location-visual__label small {
	color: var(--red);
}

/* Footer */
.site-footer {
	position: relative;
	background: #030303;
	border-top: 1px solid var(--line);
	padding-top: clamp(70px, 9vw, 120px);
	padding-bottom: calc(28px + env(safe-area-inset-bottom));
}

.site-footer__top {
	display: grid;
	gap: 50px;
}

.footer-brand__logo {
	width: 150px;
	height: auto;
	margin-bottom: 14px;
}

.footer-brand p,
.footer-location p {
	margin: 0;
	color: var(--muted);
	font-size: 0.82rem;
}

.footer-location > a {
	display: inline-block;
	max-width: 300px;
	margin-bottom: 16px;
	font-weight: 750;
	line-height: 1.3;
}

.footer-location > a:hover {
	color: var(--red);
}

.footer-location strong {
	color: var(--white);
}

.footer-links {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 13px;
}

.footer-links a,
.footer-links button,
.footer-links > span {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	border: 0;
	padding: 8px 0;
	background: transparent;
	color: var(--white);
	cursor: pointer;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-align: left;
}

.footer-links a:hover,
.footer-links button:hover {
	color: var(--red);
}

.footer-links > span {
	color: var(--muted-2);
	cursor: not-allowed;
}

.footer-links small {
	display: block;
	margin-left: 7px;
	font-size: 0.58rem;
}

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 60px;
	border-top: 1px solid var(--line-soft);
	padding-top: 22px;
	color: var(--muted-2);
	font-size: 0.7rem;
	font-weight: 750;
	letter-spacing: 0.08em;
}

.site-footer__bottom p {
	margin: 0;
}

.site-footer__bottom a:hover {
	color: #fff;
}

/* Mobile order bar */
.sticky-order-bar {
	position: fixed;
	left: 12px;
	right: 12px;
	bottom: calc(12px + env(safe-area-inset-bottom));
	z-index: 75;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6px;
	min-height: 66px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 14px;
	padding: 6px;
	background: rgba(8, 8, 8, 0.94);
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
	opacity: 0;
	pointer-events: none;
	transform: translateY(calc(100% + 30px));
	transition: opacity 280ms ease, transform 450ms var(--ease);
}

@supports (backdrop-filter: blur(16px)) {
	.sticky-order-bar {
		background: rgba(8, 8, 8, 0.8);
		backdrop-filter: blur(16px);
		-webkit-backdrop-filter: blur(16px);
	}
}

.sticky-order-bar.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.sticky-order-bar--single {
	grid-template-columns: 1fr;
}

body.cookie-open .sticky-order-bar {
	opacity: 0;
	pointer-events: none;
	transform: translateY(calc(100% + 30px));
}

.sticky-order-bar a,
.sticky-order-bar > span {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 56px;
	border-radius: 8px;
	padding: 0 14px;
	font-size: 0.68rem;
	font-weight: 850;
	letter-spacing: 0.09em;
}

.sticky-order-bar__disabled {
	color: var(--muted-2);
	cursor: not-allowed;
}

.sticky-order-bar__disabled small {
	font-size: 0.54rem;
	letter-spacing: 0.05em;
}

.sticky-order-bar__pickup {
	background: var(--red);
}

.sticky-order-bar__delivery {
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.04);
}

/* Consent */
.cookie-banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 120;
	max-height: min(88vh, 720px);
	max-height: min(88svh, 720px);
	overflow-y: auto;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	background: #050505;
	box-shadow: 0 -24px 60px rgba(0, 0, 0, 0.45);
}

.cookie-banner__inner {
	width: min(100%, 1100px);
	margin: auto;
	padding: 24px var(--gutter) calc(22px + env(safe-area-inset-bottom));
}

.cookie-banner__eyebrow {
	margin-bottom: 7px;
	color: #ff3b43;
	font-size: 0.6rem;
	font-weight: 850;
	letter-spacing: 0.13em;
}

.cookie-banner h2 {
	margin-bottom: 8px;
	font-family: var(--font-display);
	font-size: 2.25rem;
	font-weight: 900;
	letter-spacing: -0.03em;
	line-height: 0.95;
}

.cookie-banner__copy > #cookie-description {
	max-width: 670px;
	margin-bottom: 18px;
	color: var(--muted);
	font-size: 0.82rem;
}

.cookie-banner__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 7px 18px;
	margin: -8px 0 18px;
	color: var(--muted);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.07em;
}

.cookie-banner__legal a {
	color: #fff;
	text-decoration: underline;
	text-decoration-color: rgba(255, 255, 255, 0.45);
	text-underline-offset: 3px;
}

.cookie-banner__actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
}

.button--consent-choice,
.button--consent-primary,
.button--consent-secondary {
	justify-content: center;
	min-height: 56px;
	text-align: center;
}

.button--consent-choice {
	border-color: rgba(255, 255, 255, 0.5);
	background: #f4f4f1;
	color: #050505;
}

.button--consent-primary {
	border-color: var(--red);
	background: var(--red);
}

.button--consent-secondary {
	border-color: rgba(255, 255, 255, 0.36);
	background: transparent;
}

.button--consent-primary:hover,
.button--consent-secondary:hover,
.button--consent-choice:hover {
	border-color: #fff;
	background: #fff;
	color: #000;
}

.cookie-banner__actions [data-consent-manage] {
	grid-column: 1 / -1;
	grid-row: 2;
}

.cookie-banner__actions--essential {
	grid-template-columns: 1fr;
}

.cookie-preferences {
	margin-top: 20px;
	border-top: 1px solid var(--line);
	padding-top: 8px;
}

.cookie-choice {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 18px;
	min-height: 74px;
	border-bottom: 1px solid var(--line-soft);
}

.cookie-choice strong,
.cookie-choice span {
	display: block;
}

.cookie-choice strong {
	font-size: 0.72rem;
	letter-spacing: 0.08em;
}

.cookie-choice__copy span {
	color: var(--muted);
	font-size: 0.72rem;
}

.cookie-choice__fixed {
	color: var(--muted);
	font-size: 0.58rem;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.cookie-choice input {
	position: absolute;
	right: 0;
	width: 48px;
	height: 28px;
	opacity: 0;
	cursor: pointer;
}

.cookie-switch {
	position: relative;
	width: 48px;
	height: 28px;
	border: 1px solid rgba(255, 255, 255, 0.34);
	border-radius: 20px;
	background: #1b1b1b;
	pointer-events: none;
}

.cookie-switch::after {
	content: "";
	position: absolute;
	top: 4px;
	left: 4px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #fff;
	transition: transform 200ms ease, background-color 200ms ease;
}

.cookie-choice input:checked + .cookie-switch {
	background: var(--red);
	border-color: var(--red);
}

.cookie-choice input:checked + .cookie-switch::after {
	transform: translateX(20px);
}

.cookie-choice input:focus-visible + .cookie-switch {
	outline: 3px solid #fff;
	outline-offset: 4px;
}

.cookie-preferences > .button {
	width: 100%;
	margin-top: 16px;
}

/* Legal/document pages */
.document-main {
	min-height: 70vh;
	padding-top: calc(var(--header-height) + 80px);
	padding-bottom: 100px;
}

.document-main + .site-footer,
.page .site-header,
.single .site-header,
.blog .site-header {
	background: rgba(5, 5, 5, 0.96);
	border-bottom-color: var(--line-soft);
}

.document-shell {
	max-width: 960px;
}

.document-article h1 {
	max-width: 9ch;
}

.document-content {
	max-width: 720px;
	color: #d2d2ce;
}

.document-content h2,
.document-content h3 {
	margin-top: 2.2em;
	color: #fff;
}

.document-content a {
	color: #fff;
	text-decoration: underline;
	text-decoration-color: var(--red);
	text-underline-offset: 3px;
}

/* Reveal */
.js .reveal {
	opacity: 0;
	filter: blur(5px);
	transform: translateY(28px);
	transition: opacity 700ms var(--ease), transform 700ms var(--ease), filter 700ms var(--ease);
}

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

/* Small phones / short viewports */
@media (max-width: 374px) {
	:root {
		--gutter: 16px;
	}

	.hero__subtitle {
		margin-bottom: 14px;
	}

	.hero__actions .button {
		padding-inline: 12px;
		font-size: 0.68rem;
	}

	.hero__actions .button small {
		font-size: 0.56rem;
		letter-spacing: 0.08em;
	}

	.hero-fact strong {
		font-size: 0.72rem;
	}

	.button {
		padding-inline: 14px;
	}

	.video-toggle__label {
		display: none;
	}
}

@media (max-height: 700px) and (max-width: 767px) {
	.hero,
	.hero__content {
		min-height: 100vh;
		min-height: 100svh;
	}

	.hero__content {
		padding-top: calc(var(--header-height) + env(safe-area-inset-top) + 32px);
		padding-bottom: 10px;
	}

	.hero__title {
		margin-bottom: 8px;
		font-size: clamp(3.85rem, 20vw, 5rem);
	}

	.hero__subtitle {
		margin-bottom: 12px;
		font-size: 0.88rem;
	}

	.hero__actions {
		margin-bottom: 8px;
	}

	.hero__actions .button {
		min-height: 58px;
	}

	.hero-fact {
		min-height: 56px;
		padding-block: 8px;
	}
}

/* Tablet */
@media (min-width: 640px) {
	.header-actions__location {
		display: inline-block;
	}

	.site-brand__image {
		width: 88px;
		height: 64px;
	}

	.hero__content {
		padding-bottom: 26px;
	}

	.hero__title {
		font-size: clamp(6.75rem, 16.5vw, 9.5rem);
	}

	.hero__facts {
		max-width: 720px;
		grid-template-columns: 0.72fr 1.28fr;
	}

	.hero-fact {
		min-height: 76px;
		padding-right: 24px;
	}

	.hero-fact strong {
		font-size: 0.82rem;
	}

	.location-actions {
		grid-template-columns: 1.15fr 0.85fr;
	}

	.location-actions .text-link {
		grid-column: 1 / -1;
	}

	.cookie-banner__actions {
		grid-template-columns: repeat(3, 1fr);
	}

	.cookie-banner__actions [data-consent-manage] {
		grid-column: auto;
		grid-row: auto;
	}

	.cookie-banner__actions--essential {
		grid-template-columns: 1fr;
	}

	.site-footer__top {
		grid-template-columns: 1.2fr 1fr;
	}

	.footer-links {
		grid-column: 1 / -1;
		flex-flow: row wrap;
		gap: 10px 26px;
	}
}

@media (min-width: 768px) {
	:root {
		--header-height: 82px;
	}

	.site-brand__image {
		width: 104px;
		height: 74px;
	}

	.button--header {
		min-height: 56px;
		padding-inline: 22px;
	}

	.hero__content {
		padding-top: calc(var(--header-height) + env(safe-area-inset-top) + 72px);
		padding-bottom: 28px;
	}

	.hero__title {
		font-size: clamp(7.9rem, 15.5vw, 12rem);
	}

	.hero__subtitle {
		font-size: 1.12rem;
	}

	.hero__actions {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		width: min(100%, 560px);
	}

	.hero__facts {
		width: 720px;
	}

	.hero-fact span {
		font-size: 0.7rem;
	}

	.hero-fact strong {
		font-size: 0.9rem;
	}

	.order-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		border-top: 1px solid var(--line);
	}

	.order-card {
		min-height: 310px;
		border-top: 0;
		padding: 30px 26px 28px;
	}

	.order-card h3 {
		font-size: clamp(3.35rem, 7.3vw, 4.3rem);
	}

	.order-card:nth-child(even) {
		border-left: 1px solid var(--line);
	}

	.order-card:last-child {
		grid-column: 1 / -1;
		border-top: 1px solid var(--line);
	}

	.order-card__number {
		top: 30px;
		right: 26px;
	}

	.brand-visual {
		min-height: 66vh;
		min-height: 66svh;
	}

	.brand-visual__content h2 {
		font-size: clamp(2.15rem, 10.8vw, 10rem);
	}

	.platform-link {
		min-height: 82px;
	}

	.location-visual {
		min-height: 540px;
	}

	.sticky-order-bar {
		display: none;
	}

	.site-footer__top {
		grid-template-columns: 1.2fr 1fr 1fr;
	}

	.footer-links {
		grid-column: auto;
		flex-direction: column;
		gap: 11px;
	}

	.cookie-banner__inner {
		display: grid;
		grid-template-columns: minmax(0, 1.35fr) minmax(430px, 1fr);
		align-items: center;
		gap: 28px 48px;
		padding-block: 28px;
	}

	.cookie-banner__copy > #cookie-description {
		margin-bottom: 0;
	}

	.cookie-preferences {
		grid-column: 1 / -1;
	}
}

/* Desktop */
@media (min-width: 960px) {
	:root {
		--header-height: 92px;
	}

	.hero__content {
		padding-bottom: 34px;
	}

	.hero__title {
		font-size: clamp(9.25rem, 14vw, 14rem);
	}

	.hero__subtitle {
		margin-bottom: 28px;
	}

	.hero__actions,
	.hero__delivery-state,
	.hero__facts {
		margin-left: clamp(0px, 2vw, 42px);
	}

	.order-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.order-card,
	.order-card:last-child {
		grid-column: auto;
		min-height: 340px;
		border-top: 0;
		padding: 32px 28px 28px;
	}

	.order-card + .order-card {
		border-left: 1px solid var(--line);
	}

	.order-card h3 {
		font-size: clamp(3.5rem, 4.7vw, 4.8rem);
	}

	.order-card__number {
		top: 32px;
		right: 28px;
	}

	.platform-layout {
		display: grid;
		grid-template-columns: 0.84fr 1.16fr;
		gap: clamp(70px, 9vw, 150px);
		align-items: start;
	}

	.platform-layout .section-heading {
		position: sticky;
		top: calc(var(--header-height) + 40px);
		margin-bottom: 0;
	}

	.location-layout {
		display: grid;
		grid-template-columns: 0.9fr 1.1fr;
		gap: clamp(70px, 9vw, 150px);
		align-items: center;
	}

	.location-visual {
		min-height: 650px;
		margin-top: 0;
	}

	.location-visual__label {
		left: 34px;
		right: 34px;
		bottom: 30px;
	}

	.location-visual__label strong {
		font-size: 8rem;
	}
}

@media (min-width: 768px) and (max-height: 820px) {
	.hero__content {
		padding-top: calc(var(--header-height) + env(safe-area-inset-top) + 36px);
		padding-bottom: 20px;
	}

	.hero__title {
		margin-bottom: 10px;
		font-size: clamp(7rem, 11.5vw, 9.5rem);
	}

	.hero__subtitle {
		margin-bottom: 16px;
	}
}

@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;
	}

	.js .reveal {
		opacity: 1;
		filter: none;
		transform: none;
	}
}

@media (forced-colors: active) {
	.button,
	.platform-link,
	.sticky-order-bar,
	.cookie-banner {
		border: 1px solid ButtonText;
	}

	.status-dot {
		border: 2px solid ButtonText;
	}
}
