/*
Theme Name: Lezzet Sofrası
Theme URI: https://lezzetsofrasi.de/
Author: Lezzet Sofrası
Description: Individuelles One-Page-Theme für Frühstück, Abendcafé und Catering bei Lezzet Sofrası.
Version: 1.0.0
Text Domain: lezzet-sofrasi
*/

:root {
	--ink: #0b0d0c;
	--ink-soft: #171a18;
	--cream: #f6f0e5;
	--cream-muted: #d9d1c3;
	--wheat: #d6a647;
	--wheat-light: #f2cf78;
	--olive: #66715a;
	--olive-deep: #30392f;
	--ember: #bd5a32;
	--glass: rgba(15, 18, 16, 0.56);
	--glass-light: rgba(248, 243, 233, 0.12);
	--line: rgba(246, 240, 229, 0.2);
	--shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
	--display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
	--body: Aptos, "Segoe UI", Helvetica, Arial, sans-serif;
	--utility: "Arial Narrow", "Aptos Narrow", Aptos, sans-serif;
	--page-pad: clamp(1.1rem, 3.4vw, 4.5rem);
	--header-height: 5.8rem;
}

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

html {
	scroll-behavior: smooth;
	scroll-snap-type: y proximity;
	background: var(--ink);
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--ink);
	color: var(--cream);
	font-family: var(--body);
	font-size: 15px;
	line-height: 1.5;
	overflow-x: hidden;
}

body.menu-open {
	overflow: hidden;
}

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

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

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

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

h1,
h2,
h3,
h4,
p,
a,
span {
	overflow-wrap: break-word;
}

::selection {
	background: var(--wheat);
	color: var(--ink);
}

:focus-visible {
	outline: 2px solid var(--wheat-light);
	outline-offset: 4px;
}

.skip-link {
	position: fixed;
	z-index: 200;
	top: 0.75rem;
	left: 0.75rem;
	padding: 0.7rem 1rem;
	transform: translateY(-150%);
	border-radius: 999px;
	background: var(--cream);
	color: var(--ink);
	font-weight: 700;
	transition: transform 180ms ease;
}

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

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

.site-header {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--header-height);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	padding: 1rem var(--page-pad);
	pointer-events: none;
}

.brand-lockup,
.site-nav,
.menu-toggle {
	pointer-events: auto;
}

.brand-lockup {
	display: grid;
	place-items: center;
	width: clamp(8.5rem, 11vw, 10.5rem);
	min-height: 3.25rem;
	padding: 0.4rem 0.65rem;
	border: 1px solid rgba(242, 207, 120, 0.24);
	border-radius: 0.85rem;
	background: rgba(2, 3, 2, 0.58);
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
	backdrop-filter: blur(18px) saturate(120%);
}

.brand-lockup img {
	width: auto;
	max-width: 100%;
	height: 2.05rem;
	margin: 0 auto;
	object-fit: contain;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	padding: 0.35rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	background: rgba(9, 11, 10, 0.48);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.16);
	backdrop-filter: blur(20px) saturate(120%);
}

.site-nav a {
	position: relative;
	padding: 0.72rem 1rem;
	border-radius: 999px;
	color: rgba(255, 255, 255, 0.8);
	font-family: var(--utility);
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="true"] {
	background: rgba(255, 255, 255, 0.11);
	color: #fff;
}

.site-nav .nav-accent {
	background: var(--wheat);
	color: var(--ink);
}

.site-nav .nav-accent:hover {
	background: var(--wheat-light);
	color: var(--ink);
}

.menu-toggle {
	display: none;
	width: 3rem;
	height: 3rem;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 50%;
	background: rgba(9, 11, 10, 0.62);
	color: var(--cream);
	backdrop-filter: blur(18px);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
	content: "";
	display: block;
	width: 1.15rem;
	height: 1px;
	margin: 0.26rem auto;
	background: currentColor;
	transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span {
	opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
	transform: translateY(5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
	transform: translateY(-5px) rotate(-45deg);
}

.full-panel {
	position: relative;
	min-height: 100svh;
	scroll-snap-align: start;
	overflow: hidden;
}

section[id],
#kontakt {
	scroll-margin-top: calc(var(--header-height) + 1rem);
}

.storefront-sequence {
	position: relative;
	min-height: 200svh;
}

.storefront-stage {
	position: sticky;
	z-index: 0;
	top: 0;
	height: 100svh;
	overflow: hidden;
	background: #111;
}

.storefront-image {
	position: absolute;
	inset: 0;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	transform: scale(1.002);
}

.storefront-day {
	background-image: url("assets/images/storefront-day.jpg");
}

.storefront-night {
	background-image: url("assets/images/storefront-night.jpg");
	opacity: var(--night-opacity, 0);
	will-change: opacity;
}

.storefront-stage::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0, transparent 24%, transparent 66%, rgba(0, 0, 0, 0.5) 100%),
		radial-gradient(circle at 50% 45%, transparent 35%, rgba(0, 0, 0, 0.22) 100%);
	pointer-events: none;
}

.facade-sign {
	position: absolute;
	z-index: 2;
	top: 56.27%;
	left: 50%;
	display: flex;
	align-items: center;
	width: max(42.5vw, 75.55svh);
	height: max(3.53vw, 6.27svh);
	padding: 0 clamp(1.15rem, 2.1vw, 2.6rem);
	border: 1px solid #090706;
	background:
		linear-gradient(180deg, rgba(255, 224, 153, 0.12), transparent 38%, rgba(13, 6, 3, 0.2)),
		repeating-linear-gradient(
			90deg,
			#3c1b0e 0,
			#5a2c15 2px,
			#74411f 6px,
			#8a5228 8px,
			#45200f 10px,
			#2e140a 11px
		);
	box-shadow:
		inset 0 0 0 1px rgba(255, 210, 121, 0.08),
		inset 0 0 18px rgba(15, 7, 3, 0.46),
		0 2px 5px rgba(0, 0, 0, 0.55);
	transform: translate(-50%, -50%);
	isolation: isolate;
	pointer-events: none;
}

.facade-sign::before,
.facade-sign::after {
	content: "";
	position: absolute;
	z-index: 3;
	left: -0.25%;
	width: 100.5%;
	height: clamp(0.34rem, 0.68svh, 0.56rem);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.13), transparent 25%),
		linear-gradient(180deg, #282b2a 0%, #101211 43%, #050606 62%, #1b1d1c 100%);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.12),
		inset 0 -1px 0 rgba(0, 0, 0, 0.85),
		0 2px 3px rgba(0, 0, 0, 0.62);
}

.facade-sign::before {
	top: 0;
}

.facade-sign::after {
	bottom: 0;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.1),
		inset 0 -1px 0 rgba(0, 0, 0, 0.9),
		0 -1px 3px rgba(0, 0, 0, 0.58),
		0 2px 3px rgba(0, 0, 0, 0.72);
}

.facade-sign__brand {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	min-width: 0;
	gap: clamp(0.35rem, 0.75vw, 0.9rem);
}

.facade-sign__name {
	position: relative;
	z-index: 0;
	display: block;
	background:
		repeating-linear-gradient(
			102deg,
			rgba(255, 250, 220, 0.16) 0,
			rgba(255, 250, 220, 0.16) 0.7px,
			rgba(88, 55, 14, 0.08) 0.8px,
			rgba(88, 55, 14, 0.08) 1.6px,
			transparent 2px,
			transparent 6px
		),
		linear-gradient(
			180deg,
			#f1dda0 0%,
			#d8b65c 19%,
			#b98425 45%,
			#e0c16b 62%,
			#a26d1e 82%,
			#744610 100%
		);
	background-clip: text;
	color: #dfc16c;
	filter: saturate(0.96) contrast(1.07) brightness(1.12);
	font-family: Bahnschrift, "Bahnschrift SemiCondensed", "Arial Narrow", Arial, sans-serif;
	font-size: clamp(1.2rem, 1.85vw, 2.15rem);
	font-weight: 900;
	font-stretch: condensed;
	letter-spacing: 0.065em;
	line-height: 0.9;
	text-shadow:
		-0.6px -0.6px 0 rgba(255, 239, 181, 0.62),
		0.8px 0.9px 0 #8d631f,
		1.5px 1.8px 0 #57340d,
		2.2px 2.8px 2px rgba(31, 16, 3, 0.72),
		0 4px 5px rgba(21, 10, 2, 0.32);
	white-space: nowrap;
	-webkit-background-clip: text;
	-webkit-text-stroke: 0.32px rgba(82, 48, 10, 0.9);
	-webkit-text-fill-color: transparent;
}

.facade-sign__name::before {
	content: attr(data-text);
	position: absolute;
	z-index: -1;
	inset: 0;
	color: #4d2e0a;
	text-shadow: 0 1px 2px rgba(10, 5, 1, 0.72);
	transform: translate(1.2px, 1.7px);
	white-space: nowrap;
	-webkit-text-fill-color: #4d2e0a;
}

.facade-sign__name::after {
	content: attr(data-text);
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, #fff0ad 0%, #e7bd59 42%, #bb7814 100%);
	background-clip: text;
	opacity: var(--night-opacity, 0);
	text-shadow:
		0 1px 0 rgba(255, 242, 191, 0.38),
		0 2px 1px rgba(72, 37, 5, 0.66),
		0 0 calc(2px + var(--night-opacity, 0) * 6px) rgba(238, 185, 67, calc(0.08 + var(--night-opacity, 0) * 0.34));
	transition: opacity 180ms linear;
	white-space: nowrap;
	-webkit-background-clip: text;
	-webkit-text-stroke: 0;
	-webkit-text-fill-color: transparent;
}

.facade-sign__wheat {
	flex: 0 0 auto;
	width: clamp(3.2rem, 3.75vw, 4.8rem);
	height: clamp(2.2rem, 2.85vw, 3.65rem);
	background-image: url("assets/images/lezzet-sofrasi-logo-gold.png");
	background-position: 100% 27%;
	background-repeat: no-repeat;
	background-size: 260% auto;
	mix-blend-mode: screen;
	filter:
		saturate(calc(0.86 + var(--night-opacity, 0) * 0.14))
		brightness(calc(0.94 + var(--night-opacity, 0) * 0.13))
		contrast(1.04)
		drop-shadow(1.4px 2px 1px rgba(45, 22, 4, 0.72))
		drop-shadow(0 0 calc(var(--night-opacity, 0) * 5px) rgba(238, 185, 67, 0.48));
	opacity: 0.98;
}

.facade-sign__phone {
	position: relative;
	z-index: 2;
	flex: 0 0 auto;
	margin-left: auto;
	padding: 0;
	border: 0;
	background: none;
	color: #e1c77d;
	filter:
		saturate(calc(0.9 + var(--night-opacity, 0) * 0.1))
		brightness(calc(1.04 + var(--night-opacity, 0) * 0.1));
	font-family: Bahnschrift, "Bahnschrift SemiCondensed", "Arial Narrow", Arial, sans-serif;
	font-size: clamp(0.64rem, 0.78vw, 0.9rem);
	font-weight: 700;
	letter-spacing: 0.07em;
	line-height: 1;
	text-shadow:
		-0.45px -0.45px 0 rgba(255, 239, 186, 0.46),
		0.75px 0.9px 0 #76501a,
		1.35px 1.7px 1px rgba(39, 20, 4, 0.72),
		0 3px 3px rgba(20, 9, 2, 0.3);
	white-space: nowrap;
}

.storefront-panels {
	position: relative;
	z-index: 3;
	margin-top: -100svh;
}

.scene-panel {
	display: grid;
	min-height: 100svh;
	padding: calc(var(--header-height) + 1.25rem) var(--page-pad) 2rem;
}

.day-panel {
	grid-template-rows: 1fr auto;
}

.opening-card {
	align-self: center;
	justify-self: end;
	width: min(46rem, 84vw);
	margin-top: -1rem;
	margin-right: calc(var(--page-pad) * -0.55);
	padding: clamp(1.05rem, 2.1vw, 1.7rem) clamp(1.25rem, 3vw, 2.8rem) clamp(1.05rem, 2.1vw, 1.7rem) clamp(4.5rem, 10vw, 9rem);
	border: 0;
	border-right: 2px solid var(--wheat);
	border-radius: 0;
	background: linear-gradient(270deg, rgba(248, 243, 233, 0.9), rgba(248, 243, 233, 0));
	box-shadow: none;
	color: var(--ink);
	text-align: right;
}

.opening-card .eyebrow {
	justify-content: flex-end;
	color: var(--olive-deep);
}

.opening-card .eyebrow::before {
	order: 2;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	margin: 0 0 0.75rem;
	color: var(--wheat-light);
	font-family: var(--utility);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.eyebrow::before {
	content: "";
	width: 1.7rem;
	height: 1px;
	background: currentColor;
}

.opening-card h1,
.scene-copy h2,
.section-heading h2,
.menu-intro h2,
.mission-copy h2 {
	margin: 0;
	font-family: var(--display);
	font-weight: 500;
	letter-spacing: -0.04em;
	line-height: 0.96;
}

.opening-card h1 {
	font-size: clamp(2.55rem, 4.8vw, 4.65rem);
	text-wrap: balance;
}

.opening-card > p:not(.eyebrow) {
	max-width: 31rem;
	margin: 0.8rem 0 1.05rem auto;
	color: rgba(11, 13, 12, 0.92);
	font-size: clamp(0.98rem, 1.16vw, 1.08rem);
	font-weight: 500;
	line-height: 1.5;
}

.primary-action,
.secondary-action,
.text-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	min-height: 3rem;
	border-radius: 999px;
	font-family: var(--utility);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.primary-action {
	padding: 0.85rem 1.3rem;
	border: 0;
	background: var(--wheat);
	color: var(--ink);
	box-shadow: 0 12px 34px rgba(214, 166, 71, 0.22);
}

.primary-action:hover,
.secondary-action:hover,
.text-action:hover {
	transform: translateY(-2px);
}

.primary-action:hover {
	background: var(--wheat-light);
}

.secondary-action {
	padding: 0.82rem 1.25rem;
	border: 1px solid rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}

.secondary-action:hover {
	background: rgba(255, 255, 255, 0.16);
}

.text-action {
	min-height: auto;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--wheat-light);
}

.text-action svg,
.primary-action svg,
.secondary-action svg {
	width: 1rem;
	height: 1rem;
}

.hero-utility {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: end;
	gap: 1rem;
}

.share-cluster,
.address-card {
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: rgba(8, 10, 9, 0.5);
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
	backdrop-filter: blur(18px) saturate(120%);
}

.share-cluster {
	display: inline-flex;
	width: fit-content;
	align-items: center;
	gap: 0.35rem;
	padding: 0.42rem;
	border-radius: 999px;
}

.share-label {
	padding: 0 0.45rem 0 0.75rem;
	color: rgba(255, 255, 255, 0.68);
	font-family: var(--utility);
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.icon-button {
	display: grid;
	width: 2.6rem;
	height: 2.6rem;
	padding: 0;
	place-items: center;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.09);
	color: #fff;
	cursor: pointer;
	transition: background 180ms ease, transform 180ms ease;
}

.icon-button:hover {
	transform: translateY(-2px);
	background: var(--wheat);
	color: var(--ink);
}

.icon-button svg {
	width: 1.05rem;
	height: 1.05rem;
}

.address-card {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 0.85rem;
	max-width: 27rem;
	padding: 0.75rem 0.85rem;
	border-radius: 1rem;
}

.address-pin {
	display: grid;
	width: 2.5rem;
	height: 2.5rem;
	place-items: center;
	border-radius: 50%;
	background: var(--wheat);
	color: var(--ink);
}

.address-pin svg {
	width: 1.1rem;
	height: 1.1rem;
}

.address-copy small {
	display: block;
	margin-bottom: 0.15rem;
	color: var(--wheat-light);
	font-family: var(--utility);
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.address-copy {
	display: block;
	border-radius: 0.35rem;
}

.address-copy span {
	display: block;
	color: rgba(255, 255, 255, 0.86);
	font-size: 0.82rem;
	line-height: 1.25;
}

.address-links {
	display: flex;
	gap: 0.35rem;
}

.address-links a {
	padding: 0.48rem 0.56rem;
	border-radius: 0.55rem;
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.82);
	font-family: var(--utility);
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.address-links a:hover {
	background: rgba(255, 255, 255, 0.15);
}

.night-panel {
	align-items: end;
	padding-bottom: clamp(2rem, 7vh, 5.5rem);
}

.scene-copy {
	max-width: 46rem;
	padding: clamp(1.2rem, 2.8vw, 2.2rem);
	border-left: 2px solid var(--wheat);
	background: linear-gradient(90deg, rgba(7, 9, 8, 0.72), rgba(7, 9, 8, 0));
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.scene-copy h2 {
	max-width: 42rem;
	font-size: clamp(2.8rem, 4.5vw, 5rem);
}

.scene-copy p {
	max-width: 34rem;
	margin: 1rem 0 1.3rem;
	color: rgba(255, 255, 255, 0.74);
	font-size: clamp(0.9rem, 1.05vw, 1.02rem);
}

.service-hours {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}

.service-hours span {
	padding: 0.5rem 0.72rem;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	font-family: var(--utility);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.catering-panel {
	display: grid;
	align-items: center;
	background:
		linear-gradient(90deg, rgba(10, 13, 11, 0.98) 0%, rgba(10, 13, 11, 0.9) 36%, rgba(10, 13, 11, 0.2) 72%, rgba(10, 13, 11, 0.1) 100%),
		url("assets/images/catering.jpg") center / cover no-repeat;
}

.section-shell {
	width: 100%;
	max-width: 92rem;
	margin: 0 auto;
	padding: calc(var(--header-height) + 1.5rem) var(--page-pad) clamp(2rem, 5vw, 4.5rem);
}

.catering-copy {
	width: min(42rem, 56vw);
}

.section-heading h2 {
	font-size: clamp(2.8rem, 5.4vw, 5.4rem);
}

.section-heading > p {
	max-width: 39rem;
	margin: 1.2rem 0 1.65rem;
	color: var(--cream-muted);
	font-size: clamp(0.94rem, 1.1vw, 1.06rem);
}

.catering-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.75rem;
	margin: 1.8rem 0;
}

.service-card {
	min-height: 9.2rem;
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 1rem;
	background: rgba(245, 239, 227, 0.08);
	backdrop-filter: blur(16px);
}

.service-card strong {
	display: block;
	margin-bottom: 0.35rem;
	font-family: var(--display);
	font-size: 1.18rem;
	font-weight: 600;
}

.service-card span {
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.82rem;
}

.service-card .card-mark {
	display: grid;
	width: 2.1rem;
	height: 2.1rem;
	margin-bottom: 1.1rem;
	place-items: center;
	border-radius: 50%;
	background: var(--wheat);
	color: var(--ink);
	font-family: var(--utility);
	font-size: 0.67rem;
	font-weight: 900;
}

.menu-panel {
	background:
		linear-gradient(120deg, rgba(246, 240, 229, 0.96), rgba(234, 225, 209, 0.98)),
		url("assets/images/breakfast-spread.jpg") center / cover fixed;
	color: var(--ink);
}

.menu-layout {
	display: grid;
	grid-template-columns: minmax(16rem, 0.38fr) minmax(0, 1fr);
	gap: clamp(2rem, 5vw, 6rem);
	align-items: start;
}

.menu-intro {
	position: sticky;
	top: calc(var(--header-height) + 2rem);
	min-width: 0;
}

.menu-intro .eyebrow {
	color: #75531b;
}

.menu-intro h2 {
	max-width: 100%;
	font-size: clamp(2.65rem, 4vw, 4.4rem);
	line-height: 1;
	text-wrap: balance;
}

.menu-intro p {
	max-width: 25rem;
	margin: 1rem 0 0;
	color: #55584f;
}

.menu-tabs {
	display: grid;
	gap: 0.45rem;
	margin-top: 1.4rem;
	scrollbar-color: rgba(48, 57, 47, 0.45) transparent;
	scrollbar-width: thin;
}

.menu-tab {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 0.8rem;
	width: 100%;
	padding: 0.85rem 0.95rem;
	border: 1px solid rgba(11, 13, 12, 0.12);
	border-radius: 0.8rem;
	background: rgba(255, 255, 255, 0.26);
	color: var(--ink);
	text-align: left;
	cursor: pointer;
	transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.menu-tab:hover {
	transform: translateX(4px);
	background: rgba(255, 255, 255, 0.54);
}

.menu-tab[aria-selected="true"] {
	border-color: var(--olive-deep);
	background: var(--olive-deep);
	color: var(--cream);
}

.menu-tab-index {
	color: #8a6a2b;
	font-family: var(--utility);
	font-size: 0.63rem;
	font-weight: 900;
	letter-spacing: 0.1em;
}

.menu-tab[aria-selected="true"] .menu-tab-index {
	color: var(--wheat-light);
}

.menu-tab-name {
	font-family: var(--display);
	font-size: 1.08rem;
	font-weight: 600;
}

.menu-tab-arrow {
	font-size: 1rem;
}

.menu-content {
	min-width: 0;
	padding-top: 0.25rem;
}

.menu-category[hidden] {
	display: none;
}

.menu-category-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(11, 13, 12, 0.16);
}

.menu-category-head h3 {
	margin: 0;
	font-family: var(--display);
	font-size: clamp(1.9rem, 2.5vw, 2.8rem);
	font-weight: 500;
}

.menu-category-head span {
	color: #6b6b61;
	font-family: var(--utility);
	font-size: 0.67rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

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

.dish-card {
	overflow: hidden;
	border: 1px solid rgba(11, 13, 12, 0.1);
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.58);
	box-shadow: 0 14px 35px rgba(53, 43, 26, 0.08);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.dish-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 42px rgba(53, 43, 26, 0.14);
}

.dish-photo {
	height: clamp(8.5rem, 18vh, 12rem);
	background-image: url("assets/images/breakfast-spread.jpg");
	background-repeat: no-repeat;
	background-size: 235% auto;
}

.focus-menemen {
	background-position: 54% 38%;
}

.focus-sucuk {
	background-position: 88% 37%;
}

.focus-cheese {
	background-position: 23% 80%;
}

.focus-bread {
	background-position: 84% 3%;
}

.focus-sweet {
	background-position: 87% 86%;
}

.focus-olive {
	background-position: 35% 42%;
}

.focus-veg {
	background-position: 78% 62%;
}

.focus-table {
	background-position: 62% 56%;
}

.dish-copy {
	padding: 1rem;
}

.dish-copy h4 {
	margin: 0 0 0.35rem;
	font-family: var(--display);
	font-size: 1.18rem;
	font-weight: 600;
	line-height: 1;
}

.dish-copy p {
	min-height: 3.8em;
	margin: 0;
	color: #646358;
	font-size: 0.8rem;
}

.dish-note {
	display: inline-block;
	margin-top: 0.8rem;
	color: #7a5b22;
	font-family: var(--utility);
	font-size: 0.62rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.mission-panel {
	min-height: 100svh;
	background:
		linear-gradient(100deg, rgba(10, 13, 11, 0.97) 0%, rgba(10, 13, 11, 0.9) 46%, rgba(10, 13, 11, 0.65) 100%),
		url("assets/images/breakfast-spread.jpg") center / cover no-repeat;
}

.mission-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(24rem, 1.1fr);
	gap: clamp(2rem, 5vw, 6rem);
	align-items: start;
}

.mission-copy h2 {
	font-size: clamp(2.8rem, 4.8vw, 5rem);
}

.mission-copy > p {
	max-width: 36rem;
	color: var(--cream-muted);
}

.mission-values {
	display: grid;
	gap: 0.7rem;
	margin-top: 2rem;
}

.value-row {
	display: grid;
	grid-template-columns: 2.2rem 1fr;
	gap: 0.85rem;
	padding-top: 0.85rem;
	border-top: 1px solid var(--line);
}

.value-row b {
	color: var(--wheat-light);
	font-family: var(--utility);
	font-size: 0.7rem;
	letter-spacing: 0.08em;
}

.value-row strong {
	display: block;
	margin-bottom: 0.2rem;
	font-family: var(--display);
	font-size: 1.18rem;
	font-weight: 600;
}

.value-row span {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.8rem;
}

.contact-surface {
	padding: clamp(1.1rem, 2.6vw, 2rem);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 1.4rem;
	background: rgba(244, 239, 228, 0.09);
	box-shadow: var(--shadow);
	backdrop-filter: blur(22px) saturate(120%);
}

.contact-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
}

.contact-head h3 {
	margin: 0;
	font-family: var(--display);
	font-size: 1.7rem;
	font-weight: 500;
}

.contact-head span {
	color: var(--wheat-light);
	font-family: var(--utility);
	font-size: 0.63rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.contact-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
}

.field {
	display: grid;
	gap: 0.35rem;
}

.field-wide {
	grid-column: 1 / -1;
}

.field label {
	color: rgba(255, 255, 255, 0.72);
	font-family: var(--utility);
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 0.75rem;
	background: rgba(0, 0, 0, 0.2);
	color: #fff;
	outline: 0;
}

.field input,
.field select {
	height: 3rem;
	padding: 0 0.8rem;
}

.field textarea {
	min-height: 6.2rem;
	padding: 0.75rem 0.8rem;
	resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
	border-color: var(--wheat);
	box-shadow: 0 0 0 3px rgba(214, 166, 71, 0.14);
}

.field select option {
	color: var(--ink);
}

.consent-row {
	display: flex;
	grid-column: 1 / -1;
	align-items: flex-start;
	gap: 0.55rem;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.72rem;
}

.consent-row input {
	width: 1rem;
	height: 1rem;
	margin-top: 0.15rem;
	accent-color: var(--wheat);
}

.form-actions {
	display: flex;
	grid-column: 1 / -1;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.form-note {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.68rem;
}

.form-status {
	grid-column: 1 / -1;
	padding: 0.75rem 0.85rem;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 0.7rem;
	background: rgba(0, 0, 0, 0.16);
	font-size: 0.8rem;
}

.form-status.success {
	border-color: rgba(166, 211, 146, 0.45);
	color: #d9f3cb;
}

.form-status.error {
	border-color: rgba(233, 125, 95, 0.48);
	color: #ffd3c7;
}

.reviews-strip {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1.2rem;
	margin-top: 1rem;
	padding: 1rem 1.1rem;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 1rem;
	background: rgba(0, 0, 0, 0.2);
}

.review-stars {
	color: var(--wheat-light);
	font-size: 1rem;
	letter-spacing: 0.08em;
	white-space: nowrap;
}

.reviews-strip strong {
	display: block;
	font-family: var(--display);
	font-size: 1.08rem;
	font-weight: 600;
}

.reviews-strip span {
	color: rgba(255, 255, 255, 0.56);
	font-size: 0.72rem;
}

.reviews-strip a {
	color: var(--wheat-light);
	font-family: var(--utility);
	font-size: 0.65rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.site-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 1.2rem;
	padding-top: 0.9rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.45);
	font-size: 0.67rem;
}

.site-footer a:hover {
	color: var(--wheat-light);
}

.coupon-toast {
	position: fixed;
	z-index: 160;
	right: var(--page-pad);
	bottom: 1.2rem;
	max-width: 24rem;
	padding: 0.9rem 1rem;
	transform: translateY(calc(100% + 2rem));
	border: 1px solid rgba(242, 207, 120, 0.28);
	border-radius: 1rem;
	background: rgba(7, 9, 8, 0.92);
	box-shadow: var(--shadow);
	color: #fff;
	opacity: 0;
	backdrop-filter: blur(20px);
	transition: transform 220ms ease, opacity 220ms ease;
}

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

.coupon-toast strong {
	color: var(--wheat-light);
	letter-spacing: 0.08em;
}

@media (max-width: 1050px) {
	.site-nav a {
		padding-inline: 0.78rem;
		font-size: 0.68rem;
	}

	.catering-copy {
		width: min(44rem, 68vw);
	}

	.menu-layout,
	.mission-layout {
		gap: 2rem;
	}

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

	.dish-card:last-child {
		grid-column: 1 / -1;
		display: grid;
		grid-template-columns: 0.75fr 1fr;
	}

	.dish-card:last-child .dish-photo {
		height: auto;
		min-height: 10rem;
	}
}

@media (max-width: 820px) {
	:root {
		--header-height: 5rem;
	}

	html {
		scroll-snap-type: none;
	}

	.menu-toggle {
		display: block;
	}

	.site-nav {
		position: fixed;
		inset: 0;
		display: grid;
		align-content: center;
		justify-items: center;
		gap: 0.4rem;
		padding:
			max(5rem, env(safe-area-inset-top))
			max(1.5rem, env(safe-area-inset-right))
			max(2rem, env(safe-area-inset-bottom))
			max(1.5rem, env(safe-area-inset-left));
		overflow-y: auto;
		overscroll-behavior: contain;
		border: 0;
		border-radius: 0;
		background: rgba(8, 10, 9, 0.96);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-0.7rem);
		transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
	}

	.site-nav.is-open {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.site-nav a {
		min-width: 14rem;
		min-height: 3.15rem;
		padding: 0.9rem 1rem;
		text-align: center;
		font-size: 0.78rem;
	}

	.facade-sign {
		top: 56.27%;
		width: 94vw;
		height: max(2.9rem, 6.27svh);
		padding-inline: clamp(0.8rem, 3vw, 1.35rem);
	}

	.facade-sign__name {
		font-size: clamp(0.82rem, 3.35vw, 1rem);
		letter-spacing: 0.055em;
	}

	.facade-sign__wheat {
		width: clamp(2.45rem, 9vw, 3.15rem);
		height: clamp(1.8rem, 6.8vw, 2.35rem);
	}

	.facade-sign__phone {
		font-size: clamp(0.54rem, 2.25vw, 0.68rem);
	}

	.opening-card {
		align-self: start;
		justify-self: stretch;
		width: 100%;
		margin-top: 7vh;
		margin-right: 0;
		padding-left: clamp(4.5rem, 16vw, 8rem);
	}

	.opening-card h1 {
		font-size: clamp(2.4rem, 9.5vw, 3.4rem);
	}

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

	.address-card {
		justify-self: stretch;
		max-width: none;
	}

	.catering-panel {
		align-items: end;
		background:
			linear-gradient(180deg, rgba(10, 13, 11, 0.22) 0%, rgba(10, 13, 11, 0.84) 45%, rgba(10, 13, 11, 0.98) 100%),
			url("assets/images/catering.jpg") 66% center / cover no-repeat;
	}

	.catering-copy {
		width: 100%;
	}

	.catering-grid {
		grid-template-columns: repeat(3, minmax(8rem, 1fr));
		overflow-x: auto;
		padding-bottom: 0.5rem;
		scroll-snap-type: x mandatory;
	}

	.service-card {
		scroll-snap-align: start;
	}

	.menu-layout,
	.mission-layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.menu-intro {
		position: static;
	}

	.menu-tabs {
		grid-template-columns: repeat(4, minmax(9.5rem, 1fr));
		overflow-x: auto;
		overscroll-behavior-inline: contain;
		padding-bottom: 0.5rem;
		scroll-snap-type: x mandatory;
	}

	.menu-panel {
		background-attachment: scroll;
	}

	.menu-tab {
		scroll-snap-align: start;
	}

	.mission-panel {
		overflow: visible;
	}
}

@media (max-width: 600px) {
	:root {
		--page-pad: clamp(1rem, 4.5vw, 1.35rem);
		--header-height: 4.65rem;
	}

	.site-header {
		gap: 0.75rem;
		padding-top: max(0.65rem, env(safe-area-inset-top));
		padding-right: max(var(--page-pad), env(safe-area-inset-right));
		padding-bottom: 0.65rem;
		padding-left: max(var(--page-pad), env(safe-area-inset-left));
	}

	.brand-lockup {
		width: 7.4rem;
		min-height: 2.85rem;
		padding: 0.35rem 0.55rem;
	}

	.brand-lockup img {
		height: 1.65rem;
	}

	.menu-toggle {
		width: 2.85rem;
		height: 2.85rem;
	}

	.storefront-image {
		background-position: 50% center;
	}

	.facade-sign {
		width: 94vw;
	}

	.scene-panel {
		padding-top: calc(var(--header-height) + 0.75rem);
		padding-bottom: max(1rem, env(safe-area-inset-bottom));
	}

	.opening-card {
		align-self: start;
		margin-top: 0;
		padding: 0.8rem 0.9rem 0.85rem 2.25rem;
		border-right-width: 1px;
		background: linear-gradient(270deg, rgba(248, 243, 233, 0.94), rgba(248, 243, 233, 0.1));
	}

	.opening-card > p:not(.eyebrow) {
		margin: 0.6rem 0 0.85rem auto;
		font-size: 0.95rem;
	}

	.opening-card .primary-action,
	.catering-copy > .primary-action,
	.form-actions .primary-action {
		width: 100%;
		min-height: 3.25rem;
	}

	.hero-utility {
		gap: 0.65rem;
	}

	.share-cluster {
		width: 100%;
		justify-content: center;
		padding: 0.35rem;
	}

	.share-label {
		margin-right: auto;
		padding-left: 0.55rem;
	}

	.icon-button {
		flex: 0 0 auto;
		width: 2.75rem;
		height: 2.75rem;
	}

	.address-card {
		grid-template-columns: auto 1fr;
		gap: 0.7rem;
		min-height: 4.15rem;
		padding: 0.65rem;
	}

	.address-links {
		display: none;
	}

	.address-copy span {
		font-size: 0.75rem;
	}

	.night-panel {
		align-items: end;
	}

	.scene-copy {
		padding: 1.1rem 0.95rem;
		border-left-width: 1px;
		background: linear-gradient(90deg, rgba(7, 9, 8, 0.82), rgba(7, 9, 8, 0.12));
	}

	.scene-copy h2 {
		font-size: clamp(2.35rem, 10.5vw, 3.35rem);
	}

	.service-hours span {
		min-height: 2.15rem;
		display: inline-flex;
		align-items: center;
		font-size: 0.6rem;
	}

	.section-shell {
		padding-top: calc(var(--header-height) + 1.1rem);
		padding-bottom: 2.4rem;
	}

	.section-heading h2,
	.menu-intro h2,
	.mission-copy h2 {
		font-size: clamp(2.45rem, 11.5vw, 3.5rem);
	}

	.catering-grid {
		grid-template-columns: 1fr;
		gap: 0.65rem;
		overflow: visible;
		padding-bottom: 0;
		scroll-snap-type: none;
	}

	.service-card {
		display: grid;
		grid-template-columns: 2.35rem minmax(0, 1fr);
		column-gap: 0.8rem;
		min-height: 0;
		padding: 0.9rem;
	}

	.service-card .card-mark {
		grid-column: 1;
		grid-row: 1 / span 2;
		margin: 0;
	}

	.service-card strong,
	.service-card span {
		grid-column: 2;
	}

	.menu-panel,
	.mission-panel {
		min-height: auto;
	}

	.menu-tabs {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.5rem;
		overflow: visible;
		padding-bottom: 0;
		scroll-snap-type: none;
	}

	.menu-tab {
		grid-template-columns: auto 1fr;
		grid-template-rows: auto auto;
		gap: 0.25rem 0.55rem;
		min-height: 4.7rem;
		padding: 0.75rem;
	}

	.menu-tab-name {
		font-size: 0.98rem;
		line-height: 1.05;
	}

	.menu-tab-arrow {
		grid-column: 2;
		font-size: 0.85rem;
		justify-self: end;
	}

	.menu-category-head {
		align-items: start;
		flex-direction: column;
	}

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

	.dish-card:last-child {
		grid-column: auto;
		display: block;
	}

	.dish-card:last-child .dish-photo {
		height: 10.5rem;
		min-height: 0;
	}

	.dish-photo {
		height: 10.5rem;
	}

	.dish-copy p {
		min-height: 0;
	}

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

	.field-wide,
	.consent-row,
	.form-actions,
	.form-status {
		grid-column: auto;
	}

	.form-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.field input,
	.field select {
		height: 3.25rem;
	}

	.field input,
	.field textarea,
	.field select {
		font-size: 1rem;
	}

	.consent-row {
		gap: 0.7rem;
		font-size: 0.76rem;
	}

	.consent-row input {
		flex: 0 0 auto;
		width: 1.15rem;
		height: 1.15rem;
	}

	.reviews-strip {
		grid-template-columns: 1fr;
		gap: 0.45rem;
		padding: 0.9rem;
	}

	.site-footer {
		align-items: flex-start;
		flex-direction: column;
	}

	.coupon-toast {
		right: var(--page-pad);
		bottom: max(0.85rem, env(safe-area-inset-bottom));
		left: var(--page-pad);
		max-width: none;
		font-size: 0.84rem;
	}
}

@media (hover: none) {
	.primary-action:hover,
	.secondary-action:hover,
	.text-action:hover,
	.icon-button:hover,
	.menu-tab:hover,
	.dish-card:hover {
		transform: none;
	}
}

@media (max-width: 380px) {
	:root {
		--page-pad: 0.85rem;
	}

	.opening-card {
		padding-left: 1.4rem;
	}

	.opening-card h1,
	.section-heading h2,
	.menu-intro h2,
	.mission-copy h2 {
		font-size: clamp(2.2rem, 11vw, 2.8rem);
	}

	.share-label {
		display: none;
	}

	.share-cluster {
		justify-content: space-evenly;
	}

	.menu-tabs {
		grid-template-columns: 1fr;
	}

	.menu-tab {
		min-height: 3.8rem;
	}
}

@media (max-height: 720px) and (min-width: 821px) {
	:root {
		--header-height: 4.7rem;
	}

	.opening-card {
		padding: 0.9rem 1.5rem 0.9rem 8rem;
	}

	.opening-card h1 {
		font-size: clamp(2.35rem, 5.5vh, 3.65rem);
	}

	.opening-card > p:not(.eyebrow) {
		margin: 0.5rem 0 0.75rem auto;
	}

	.section-shell {
		padding-top: calc(var(--header-height) + 0.9rem);
		padding-bottom: 1rem;
	}

	.section-heading h2,
	.mission-copy h2 {
		font-size: clamp(2.5rem, 6.2vh, 4rem);
	}

	.section-heading > p {
		margin: 0.7rem 0 1rem;
	}

	.catering-grid {
		margin: 1rem 0;
	}

	.service-card {
		min-height: 7rem;
	}

	.service-card .card-mark {
		margin-bottom: 0.6rem;
	}

	.dish-photo {
		height: 8rem;
	}

	.dish-copy p {
		min-height: 0;
	}

	.mission-values {
		margin-top: 1rem;
	}

	.contact-surface {
		padding: 1rem;
	}

	.field textarea {
		min-height: 4.4rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}
