/* =========================================================
   KRČMA · Kostečná 4, Praha 1
   Vizuál: sklepení při svíčkách — smolná čerň, kámen,
   pergamen a jantarové světlo svíce.
   Písma: IM Fell English SC (titulky) · Alegreya (text)
   ========================================================= */

:root {
	--pitch: #14100c;          /* smolná čerň pozadí */
	--stone: #1e1811;          /* panely, karty */
	--stone-edge: #3a2d1d;     /* linky a rámečky */
	--parchment: #ecdcba;      /* hlavní text */
	--ash: #a3906f;            /* tlumený text */
	--candle: #d99a3d;         /* jantar svíčky – akcent */
	--candle-bright: #f2bd63;  /* jasnější jantar (hover) */
	--ember: #8c3b22;          /* žhavý uhlík – chyby, detail */

	--font-display: 'IM Fell English SC', 'Times New Roman', serif;
	--font-body: 'Alegreya', Georgia, serif;

	--max-width: 68rem;
	--radius: 3px;
}

/* ---------- reset & základ ---------- */

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

body {
	margin: 0;
	background: var(--pitch);
	color: var(--parchment);
	font-family: var(--font-body);
	font-size: 1.125rem;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
	font-family: var(--font-display);
	font-weight: 400;
	line-height: 1.15;
	color: var(--parchment);
	margin: 0 0 0.75em;
}

h1 { font-size: clamp(2.4rem, 6vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1em; }

a { color: var(--candle); }
a:hover { color: var(--candle-bright); }

:focus-visible {
	outline: 2px solid var(--candle-bright);
	outline-offset: 3px;
}

.visually-hidden {
	position: absolute; width: 1px; height: 1px;
	overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

.skip-link {
	position: absolute; left: 1rem; top: -3rem;
	background: var(--candle); color: var(--pitch);
	padding: 0.5rem 1rem; z-index: 100; transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

.center { text-align: center; }
.muted { color: var(--ash); font-size: 0.95rem; }

/* ---------- ozdobné prvky ---------- */

.eyebrow {
	font-family: var(--font-body);
	font-size: 0.8rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--candle);
	margin-bottom: 0.75rem;
}
.eyebrow--center { text-align: center; }

.fleuron {
	text-align: center;
	color: var(--stone-edge);
	font-size: 1.1rem;
	letter-spacing: 0.5em;
	margin: 1rem 0;
	user-select: none;
}

.text-link {
	color: var(--candle);
	text-decoration: none;
	border-bottom: 1px solid color-mix(in srgb, var(--candle) 40%, transparent);
}
.text-link:hover { border-bottom-color: var(--candle-bright); }

/* ---------- hlavička & navigace ---------- */

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: color-mix(in srgb, var(--pitch) 88%, transparent);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--stone-edge);
}

.site-header__inner {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0.9rem 1.25rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: nowrap;
}
.site-header__inner > .wordmark { flex: 0 0 auto; }   /* logo se nesmršťuje */
.site-header__inner { gap: 1.25rem; }

.wordmark {
	display: inline-flex;          /* jinak by se odkazy uvnitř zalomily pod sebe */
	align-items: baseline;         /* menší název krčmy sedí na stejném účaří */
	gap: 0.4em;
	white-space: nowrap;           /* logo se nikdy nerozlomí na dva řádky */
	font-family: var(--font-display);
	font-size: 1.7rem;
	color: var(--parchment);
	text-decoration: none;
	letter-spacing: 0.04em;
}
.wordmark:hover { color: var(--candle-bright); }
.wordmark--small { font-size: 1.4rem; margin-bottom: 0.5rem; }

/* varianta se dvěma odkazy: „Krčma" → rozcestník, název → úvodka krčmy */
.wordmark__brand {
	color: var(--parchment);
	text-decoration: none;
}
.wordmark__brand:hover { color: var(--candle-bright); }

.site-nav > ul {
	list-style: none;
	display: flex;
	gap: 1.15rem;              /* menší mezery, ať se vše vejde na řádek */
	margin: 0;
	padding: 0;
	align-items: center;
	flex-wrap: nowrap;
}
.site-nav > ul > li { white-space: nowrap; }

.site-nav a {
	font-size: 0.95rem;
	color: var(--parchment);
	text-decoration: none;
	padding: 0.35rem 0;
	border-bottom: 2px solid transparent;
	white-space: nowrap;       /* „Jídelní lístek" se nikdy nezlomí na dva řádky */
}
.site-nav a:hover { color: var(--candle-bright); }
.site-nav a.active {
	color: var(--candle);
	border-bottom-color: var(--candle);
}

.site-nav__cta {
	border: 1px solid var(--candle) !important;
	border-radius: var(--radius);
	padding: 0.4rem 1rem !important;
	color: var(--candle) !important;
}
.site-nav__cta:hover {
	background: var(--candle);
	color: var(--pitch) !important;
}

/* hamburger */
.nav-toggle {
	display: none;
	background: none;
	border: 1px solid var(--stone-edge);
	border-radius: var(--radius);
	padding: 0.6rem 0.55rem;
	cursor: pointer;
}
.nav-toggle__bar {
	display: block;
	width: 22px; height: 2px;
	background: var(--parchment);
	margin: 4px 0;
	transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- hero ---------- */

.hero {
	position: relative;
	min-height: min(88vh, 46rem);
	display: grid;
	place-items: center;
	text-align: center;
	overflow: hidden;
	padding: 4rem 1.25rem;
	border-bottom: 1px solid var(--stone-edge);
	isolation: isolate;
}

/* video na pozadí (www/videos/koleno.mp4) */
.hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	pointer-events: none;
}

/* ztmavení videa, aby text zůstal čitelný.
   Chcete-li vidět víc z videa, snižte hodnoty alfa; pro čitelnější text je zvyšte. */
.hero__scrim {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		/* silnější stín přímo pod textem uprostřed */
		radial-gradient(ellipse 60% 55% at 50% 45%,
			rgba(20, 16, 12, 0.55) 0%,
			rgba(20, 16, 12, 0.25) 60%,
			transparent 100%),
		/* plošné ztmavení + plynulý přechod do stránky */
		linear-gradient(
			rgba(20, 16, 12, 0.45),
			rgba(20, 16, 12, 0.45) 55%,
			rgba(20, 16, 12, 0.92) 92%,
			var(--pitch) 100%);
	pointer-events: none;
}

/* podpis webu: teplá záře svíčky, která se pomalu nadechuje */
.hero__glow {
	position: absolute;
	inset: -20%;
	z-index: 2;
	background:
		radial-gradient(ellipse 55% 45% at 50% 62%,
			rgba(217, 154, 61, 0.22) 0%,
			rgba(140, 59, 34, 0.10) 40%,
			transparent 70%);
	animation: candle 7s ease-in-out infinite alternate;
	pointer-events: none;
	mix-blend-mode: screen;
}

@keyframes candle {
	0%   { opacity: 0.75; transform: scale(1) translateY(0); }
	45%  { opacity: 1;    transform: scale(1.04) translateY(-0.5%); }
	60%  { opacity: 0.9;  transform: scale(1.02) translateY(0.3%); }
	100% { opacity: 1;    transform: scale(1.05) translateY(-0.8%); }
}

.hero__inner { position: relative; z-index: 3; max-width: 44rem; }

.hero__title {
	font-size: clamp(4rem, 14vw, 8.5rem);
	margin: 0.1em 0 0.15em;
	text-shadow: 0 0 60px rgba(217, 154, 61, 0.35), 0 6px 40px rgba(10, 8, 6, 0.85);
}

.hero__tagline {
	font-size: clamp(1.05rem, 2.4vw, 1.3rem);
	color: var(--parchment);
	margin-bottom: 2rem;
	text-shadow: 0 4px 24px rgba(10, 8, 6, 0.9);
}

.hero__actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.hero__scroll {
	position: absolute;
	z-index: 3;
	bottom: 1rem; left: 0; right: 0;
	text-align: center;
	color: var(--stone-edge);
	font-size: 1.5rem;
	margin: 0;
}

/* ---------- tlačítka ---------- */

.btn {
	display: inline-block;
	font-family: var(--font-body);
	font-size: 1.05rem;
	text-decoration: none;
	padding: 0.75rem 1.75rem;
	border-radius: var(--radius);
	border: 1px solid var(--candle);
	cursor: pointer;
	transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn--primary {
	background: var(--candle);
	color: var(--pitch);
}
.btn--primary:hover {
	background: var(--candle-bright);
	color: var(--pitch);
	box-shadow: 0 0 24px rgba(217, 154, 61, 0.35);
}

.btn--ghost {
	background: transparent;
	color: var(--candle);
}
.btn--ghost:hover {
	background: color-mix(in srgb, var(--candle) 12%, transparent);
	color: var(--candle-bright);
}

.btn--block { width: 100%; text-align: center; }

/* ---------- sekce & layout ---------- */

.section { padding: 4.5rem 1.25rem; }
.section--narrow .section__inner { max-width: 46rem; }

.section__inner {
	max-width: var(--max-width);
	margin: 0 auto;
}

.section__inner--split {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 3.5rem;
	align-items: start;
}
.section__inner--reverse { grid-template-columns: 0.9fr 1.1fr; }

.page-head {
	padding: 4rem 1.25rem 1rem;
	text-align: center;
	background:
		radial-gradient(ellipse 60% 90% at 50% -20%,
			rgba(217, 154, 61, 0.10), transparent 70%);
}
.page-head__note {
	color: var(--ash);
	max-width: 34rem;
	margin: 0 auto 1.5rem;
}

/* obrázek v „rámu" */
.frame {
	margin: 0;
	border: 1px solid var(--stone-edge);
	padding: 0.6rem;
	background: var(--stone);
}
.frame img { width: 100%; object-fit: cover; }
.frame figcaption {
	font-size: 0.85rem;
	color: var(--ash);
	text-align: center;
	padding-top: 0.6rem;
	font-style: italic;
}

/* karty */
.card {
	background: var(--stone);
	border: 1px solid var(--stone-edge);
	border-radius: var(--radius);
	padding: 2rem;
}

.card--contact { text-align: center; }
.card--contact__phone {
	font-family: var(--font-display);
	font-size: 1.9rem;
	margin: 0.5rem 0 1rem;
}
.card--contact__phone a { color: var(--candle); text-decoration: none; }

/* otevírací doba */
.hours {
	border-collapse: collapse;
	width: 100%;
	max-width: 26rem;
	margin-bottom: 1rem;
}
.hours th, .hours td {
	text-align: left;
	padding: 0.55rem 0;
	border-bottom: 1px dotted var(--stone-edge);
	font-weight: 400;
}
.hours td { text-align: right; color: var(--candle); }

/* teasery jídel na úvodu */
.teaser-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
	gap: 1.25rem;
	margin: 2.5rem 0;
}

.teaser {
	background: var(--stone);
	border: 1px solid var(--stone-edge);
	border-radius: var(--radius);
	padding: 1.5rem;
	transition: border-color 0.2s, transform 0.2s;
}
.teaser:hover {
	border-color: var(--candle);
	transform: translateY(-3px);
}
.teaser h3 { margin-bottom: 0.4rem; }
.teaser p { font-size: 0.98rem; color: var(--ash); }
.teaser__price {
	font-family: var(--font-display);
	font-size: 1.25rem;
	color: var(--candle) !important;
	margin: 0;
}

/* ---------- jídelní lístek ---------- */

.menu-category { margin-bottom: 3rem; }

.menu-category__head {
	display: flex;
	align-items: baseline;
	gap: 1rem;
	border-bottom: 1px solid var(--stone-edge);
	padding-bottom: 0.4rem;
	margin-bottom: 1.25rem;
}
.menu-category__head h2 { margin: 0; font-size: 1.6rem; }
.menu-category__note { margin: 0; color: var(--ash); font-style: italic; font-size: 0.9rem; }
.menu-category__head--drinks { border: none; justify-content: center; margin-top: 3rem; }

.menu-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.menu-list li { margin-bottom: 1.1rem; }

.menu-list__row {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
}
.menu-list__name { flex-shrink: 1; }
.menu-list__leader {
	flex: 1;
	border-bottom: 1px dotted var(--stone-edge);
	transform: translateY(-4px);
	min-width: 1.5rem;
}
.menu-list__price {
	white-space: nowrap;
	color: var(--candle);
	font-variant-numeric: tabular-nums;
}
.menu-list__desc {
	margin: 0.15rem 0 0;
	font-size: 0.92rem;
	color: var(--ash);
	font-style: italic;
}

/* ---------- text (legenda) ---------- */

.prose__lead {
	font-size: 1.3rem;
	line-height: 1.55;
	color: var(--parchment);
}
.prose p { color: color-mix(in srgb, var(--parchment) 88%, var(--ash)); }
.prose p::first-letter { }

.prose__quote {
	margin: 2rem 0;
	padding: 1.5rem 2rem;
	border-left: 3px solid var(--candle);
	background: var(--stone);
	font-style: italic;
	font-size: 1.15rem;
}
.prose__quote cite {
	display: block;
	margin-top: 0.75rem;
	color: var(--ash);
	font-size: 0.95rem;
	font-style: normal;
}

/* ---------- galerie ---------- */

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
	gap: 1rem;
}
.gallery-grid__item {
	margin: 0;
	border: 1px solid var(--stone-edge);
	background: var(--stone);
	padding: 0.4rem;
}
.gallery-grid__item img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	filter: saturate(0.9);
	transition: filter 0.25s;
}
.gallery-grid__item a:hover img { filter: saturate(1.1) brightness(1.05); }

.empty-state {
	text-align: center;
	padding: 3rem 1rem;
	border: 1px dashed var(--stone-edge);
	border-radius: var(--radius);
}

/* ---------- kontakt & formulář ---------- */

.contact-block p { margin-bottom: 1.25rem; }

.map-embed iframe {
	width: 100%;
	height: 320px;
	border: 1px solid var(--stone-edge);
	filter: grayscale(0.6) sepia(0.25) brightness(0.85);
}

.card--form label {
	display: block;
	font-size: 0.85rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ash);
	margin-bottom: 0.3rem;
}

.form__row { margin-bottom: 1.1rem; }
.form__row--half {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}
.form__row--thirds {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 1rem;
}

.form input[type="text"],
.form input[type="email"],
.form input[type="date"],
.form input[type="time"],
.form input[type="number"],
.form textarea {
	width: 100%;
	background: var(--pitch);
	border: 1px solid var(--stone-edge);
	border-radius: var(--radius);
	color: var(--parchment);
	font-family: var(--font-body);
	font-size: 1rem;
	padding: 0.65rem 0.8rem;
}
.form input:focus, .form textarea:focus {
	border-color: var(--candle);
	outline: none;
	box-shadow: 0 0 0 3px rgba(217, 154, 61, 0.18);
}
.form textarea { resize: vertical; }

.form__errors {
	list-style: none;
	margin: 0 0 1rem;
	padding: 0.75rem 1rem;
	border: 1px solid var(--ember);
	border-radius: var(--radius);
	color: #e8a48d;
}
.form__errors:empty { display: none; }

/* flash zprávy */
.flash {
	max-width: var(--max-width);
	margin: 1rem auto 0;
	padding: 0.9rem 1.25rem;
	border-radius: var(--radius);
	border: 1px solid;
}
.flash--success { border-color: var(--candle); color: var(--candle-bright); background: color-mix(in srgb, var(--candle) 8%, transparent); }
.flash--error { border-color: var(--ember); color: #e8a48d; background: color-mix(in srgb, var(--ember) 12%, transparent); }

/* ---------- patička ---------- */

.site-footer {
	border-top: 1px solid var(--stone-edge);
	padding: 3rem 1.25rem 1.5rem;
	background: var(--stone);
}

.site-footer__inner {
	max-width: var(--max-width);
	margin: 0 auto 2rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
	gap: 2rem;
	font-size: 0.98rem;
	color: var(--ash);
}

.site-footer h2 {
	font-family: var(--font-body);
	font-size: 0.8rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--candle);
	margin-bottom: 0.6rem;
}
.site-footer a { color: var(--parchment); text-decoration: none; }
.site-footer a:hover { color: var(--candle-bright); }

.site-footer__note {
	text-align: center;
	color: var(--stone-edge);
	font-size: 0.9rem;
	margin: 0;
	letter-spacing: 0.05em;
}

/* ---------- responzivita ---------- */

@media (max-width: 860px) {
	.section__inner--split,
	.section__inner--reverse {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	.section { padding: 3rem 1.25rem; }
}

@media (max-width: 720px) {
	.nav-toggle { display: block; }

	.site-nav {
		position: absolute;
		top: 100%; left: 0; right: 0;
		background: var(--pitch);
		border-bottom: 1px solid var(--stone-edge);
		display: none;
	}
	.site-nav.is-open { display: block; }

	.site-nav > ul {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 0.5rem 0;
	}
	.site-nav a {
		display: block;
		padding: 0.85rem 1.5rem;
		border-bottom: none;
	}
	.site-nav a.active { background: var(--stone); }
	.site-nav__cta {
		margin: 0.5rem 1.5rem;
		text-align: center;
	}

	.form__row--half,
	.form__row--thirds { grid-template-columns: 1fr; }

	body { font-size: 1.05rem; }
}

/* ---------- omezený pohyb ---------- */

@media (prefers-reduced-motion: reduce) {
	.hero__glow { animation: none; }
	/* video se zastaví skriptem v main.js, poster zůstane jako statické pozadí */
	.teaser, .teaser:hover { transform: none; }
	* { transition: none !important; }
}

/* ---------- přepínač jazyků ---------- */

.lang-switch {
	position: relative;
}

.lang-switch__toggle {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	white-space: nowrap;
	background: none;
	border: 1px solid var(--stone-edge);
	border-radius: var(--radius);
	color: var(--parchment);
	font-family: var(--font-body);
	font-size: 0.9rem;
	letter-spacing: 0.06em;
	padding: 0.35rem 0.7rem;
	cursor: pointer;
	transition: border-color 0.2s, color 0.2s;
}

/* vlajky – SVG obrázky (vypadají stejně na všech systémech) */
.lang-switch__flag {
	width: 22px;
	height: auto;
	display: block;
	border-radius: 2px;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
	flex: 0 0 auto;
}
.lang-switch__code { font-size: 0.85rem; }
.lang-switch__toggle:hover,
.lang-switch__toggle[aria-expanded="true"] {
	border-color: var(--candle);
	color: var(--candle);
}

.lang-switch__menu {
	position: absolute;
	top: calc(100% + 0.5rem);
	right: 0;
	min-width: 9rem;
	list-style: none;
	margin: 0;
	padding: 0.3rem 0;
	background: var(--stone);
	border: 1px solid var(--stone-edge);
	border-radius: var(--radius);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
	display: none;
	z-index: 60;
}
.lang-switch__menu.is-open { display: block; }

.lang-switch__menu a {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	white-space: nowrap;
	padding: 0.5rem 1rem;
	font-size: 0.95rem;
	color: var(--parchment);
	text-decoration: none;
	border-bottom: none;
}
.lang-switch__menu a:hover { background: var(--pitch); color: var(--candle-bright); }
.lang-switch__menu a.active { color: var(--candle); }
.lang-switch__menu a.active::after { content: ' ✓'; }

@media (max-width: 720px) {
	.lang-switch { padding: 0.5rem 1.5rem 0.75rem; }
	.lang-switch__toggle { width: 100%; text-align: left; }
	.lang-switch__menu {
		position: static;
		display: block;
		box-shadow: none;
		background: transparent;
		border: none;
		padding: 0.25rem 0 0;
	}
	.lang-switch__menu a { padding: 0.6rem 0.2rem; }
}

/* ---------- rozcestník (výběr krčmy) ---------- */

.body--gate {
	min-height: 100vh;
	display: grid;
	place-items: center;
	background:
		radial-gradient(ellipse 70% 60% at 50% 40%,
			rgba(217, 154, 61, 0.10), transparent 70%),
		var(--pitch);
	padding: 2.5rem 1.25rem;
}

.gate {
	width: 100%;
	max-width: 64rem;
	text-align: center;
}

.gate__head { margin-bottom: 2.5rem; }

.gate__title {
	font-size: clamp(3.5rem, 11vw, 6.5rem);
	margin: 0.1em 0 0.25em;
	text-shadow: 0 0 60px rgba(217, 154, 61, 0.3);
}

.gate__lead {
	color: var(--ash);
	max-width: 34rem;
	margin: 0 auto;
	font-size: 1.1rem;
}

.gate__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.75rem;
}

.gate__card {
	display: block;
	text-decoration: none;
	color: var(--parchment);
	background: var(--stone);
	border: 1px solid var(--stone-edge);
	border-radius: var(--radius);
	overflow: hidden;
	transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.gate__card:hover {
	border-color: var(--candle);
	transform: translateY(-4px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
	color: var(--parchment);
}

.gate__photo {
	display: block;
	position: relative;
	overflow: hidden;
}
.gate__photo::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(rgba(20, 16, 12, 0.15), rgba(20, 16, 12, 0.55));
}
.gate__photo img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	filter: saturate(0.85) brightness(0.9);
	transition: transform 0.5s, filter 0.3s;
}
.gate__card:hover .gate__photo img {
	transform: scale(1.05);
	filter: saturate(1) brightness(1);
}

.gate__body {
	display: block;
	padding: 1.5rem 1.5rem 1.75rem;
}

.gate__name {
	display: block;
	font-family: var(--font-display);
	font-size: 1.75rem;
	margin-bottom: 0.3rem;
}

.gate__addr {
	display: block;
	color: var(--ash);
	font-size: 0.95rem;
	margin-bottom: 1rem;
}

.gate__enter {
	display: inline-block;
	font-size: 0.85rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--candle);
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s;
}
.gate__card:hover .gate__enter { border-bottom-color: var(--candle); }

.gate__foot {
	margin-top: 2.5rem;
}

.gate__lang {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.35rem 1.25rem;
	margin-bottom: 1rem;
}
.gate__lang a {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: var(--ash);
	text-decoration: none;
	font-size: 0.95rem;
	white-space: nowrap;
}
.gate__lang a:hover { color: var(--candle-bright); }
.gate__lang a.active { color: var(--candle); }

@media (max-width: 720px) {
	.gate__grid { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* ---------- přepínač krčmy v hlavičce ---------- */

.venue-switch {
	display: flex;
	gap: 0.25rem;
	padding: 0.2rem;
	border: 1px solid var(--stone-edge);
	border-radius: 999px;
}
.venue-switch a {
	padding: 0.3rem 0.85rem !important;
	border-radius: 999px;
	font-size: 0.9rem;
	color: var(--ash) !important;
	border-bottom: none !important;
}
.venue-switch a:hover { color: var(--parchment) !important; }
.venue-switch a.active {
	background: var(--candle);
	color: var(--pitch) !important;
}

/* název krčmy v logu a v hero */

.wordmark__venue {
	color: var(--candle);
	font-size: 0.75em;
	text-decoration: none;
	white-space: nowrap;
}
.wordmark__venue:hover { color: var(--candle-bright); }

.hero__venue {
	font-family: var(--font-display);
	font-size: clamp(1.3rem, 3.5vw, 2rem);
	color: var(--candle);
	margin: -0.4em 0 0.9em;
	letter-spacing: 0.08em;
	text-shadow: 0 4px 24px rgba(10, 8, 6, 0.9);
}

.site-footer__venues {
	list-style: none;
	margin: 0;
	padding: 0;
}
.site-footer__venues li { margin-bottom: 0.3rem; }
.site-footer__venues a.active { color: var(--candle); }

@media (max-width: 720px) {
	.venue-switch {
		margin: 0.75rem 1.5rem 0.25rem;
		justify-content: center;
	}
}

/* odkaz zpět na rozcestník (výběr krčmy) v hlavní navigaci */
.site-nav__home {
	color: var(--ash) !important;
	white-space: nowrap;
}
.site-nav__home::before {
	content: '⌂ ';
	color: var(--candle);
}
.site-nav__home:hover { color: var(--candle-bright) !important; }

/* gramáž / objem porce v jídelním lístku */
.menu-list__portion {
	display: inline-block;
	min-width: 4.2rem;
	color: var(--ash);
	font-size: 0.85rem;
	font-variant-numeric: tabular-nums;
}

.teaser__portion {
	color: var(--ash) !important;
	font-size: 0.8rem !important;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 0.35rem !important;
}

@media (max-width: 600px) {
	.menu-list__portion { display: block; min-width: 0; }
}

/* ---------- denní menu ---------- */

.daybar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.9rem 1.2rem;
	margin-bottom: 1.25rem;
	background: var(--stone);
	border: 1px solid var(--stone-edge);
	border-radius: var(--radius);
}

.daybar__arrow {
	color: var(--candle);
	text-decoration: none;
	font-size: 0.95rem;
	white-space: nowrap;
	padding: 0.35rem 0.6rem;
	border-radius: var(--radius);
	transition: background 0.2s, color 0.2s;
}
.daybar__arrow:hover { background: var(--pitch); color: var(--candle-bright); }
.daybar__arrow--off { color: var(--stone-edge); cursor: default; }
.daybar__arrow--off:hover { background: none; color: var(--stone-edge); }

.daybar__now {
	text-align: center;
	line-height: 1.3;
}
.daybar__weekday {
	display: block;
	font-size: 0.78rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--ash);
}
.daybar__date {
	font-family: var(--font-display);
	font-size: 1.35rem;
	color: var(--parchment);
	font-weight: 400;
}
.daybar__today {
	display: inline-block;
	margin-left: 0.4rem;
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--pitch);
	background: var(--candle);
	border-radius: 999px;
	padding: 0.1rem 0.5rem;
	vertical-align: middle;
}

/* proklik na celý týden */
.weekbar {
	display: flex;
	gap: 0.4rem;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
}
.weekbar__day {
	flex: 1 1 4rem;
	text-align: center;
	padding: 0.5rem 0.3rem;
	border: 1px solid var(--stone-edge);
	border-radius: var(--radius);
	text-decoration: none;
	color: var(--ash);
	transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.weekbar__day:hover { border-color: var(--candle); color: var(--parchment); }
.weekbar__day.active {
	background: var(--candle);
	border-color: var(--candle);
	color: var(--pitch);
}
.weekbar__wd {
	display: block;
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
.weekbar__num {
	display: block;
	font-size: 0.95rem;
	font-variant-numeric: tabular-nums;
}

.daily__note {
	color: var(--ash);
	font-style: italic;
	font-size: 0.95rem;
	border-left: 2px solid var(--stone-edge);
	padding-left: 0.9rem;
	margin: 1.5rem 0;
}

@media (max-width: 600px) {
	.daybar { flex-direction: column; gap: 0.6rem; }
	.daybar__arrow { width: 100%; text-align: center; }
	.weekbar__day { flex: 1 1 3rem; }
}

/* denní menu – cena s polévkou, poznámka, šéfkuchař */
.menu-list__soup {
	display: block;
	font-size: 0.82rem;
	color: var(--ash);
	font-variant-numeric: tabular-nums;
}

.daily__banner {
	background: var(--stone);
	border: 1px solid var(--stone-edge);
	border-left: 3px solid var(--candle);
	border-radius: var(--radius);
	padding: 0.85rem 1.1rem;
	margin-bottom: 2rem;
	color: var(--parchment);
	font-size: 0.98rem;
}

.daily__chef {
	text-align: center;
	color: var(--ash);
	font-style: italic;
	margin: 2rem 0 1rem;
}
.daily__chef strong { color: var(--candle); font-style: normal; }

/* užší displeje: navigace se zmenší, ale zůstane na řádku */
@media (max-width: 1180px) and (min-width: 721px) {
	.site-nav > ul { gap: 0.85rem; }
	.site-nav a { font-size: 0.88rem; }
	.site-nav__cta { padding: 0.4rem 0.8rem !important; }
	.venue-switch a { padding: 0.3rem 0.6rem !important; font-size: 0.85rem; }
	.wordmark { font-size: 1.45rem; }
}

@media (max-width: 940px) and (min-width: 721px) {
	.site-nav > ul { gap: 0.6rem; }
	.site-nav a { font-size: 0.8rem; }
	.lang-switch__code { display: none; }   /* zůstane jen vlajka */
}
