/* ==========================================================================
   site.css — čistá vrstva nahrazující WP/Elementor CSS.
   Taxi Pavel (taxipavel.cz). Mobile-first, vanilla CSS.
   ========================================================================== */

:root {
	--gold: #EFC701;
	--gold-soft: #FFD562;
	--gold-head: #FEB733;
	--ink: #1A1D1A;
	--navy: #3d4459;
	--text: #333333;
	--dark-1: #1B2025;
	--dark-2: #000000;
	--head-shadow: none;
	--font-head: "Varela Round", system-ui, sans-serif;
	--font-body: "Montserrat", system-ui, sans-serif;
	--font-btn: "Montserrat", system-ui, sans-serif;
	--font-mono-meta: "Montserrat", system-ui, sans-serif;
	--maxw: 1200px;
}

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

/* Pojistka proti vodorovnému rolování na mobilu.
   `clip` (ne `hidden`) zachová funkční sticky hlavičku. */
html { overflow-x: clip; scroll-behavior: smooth; }

body {
	margin: 0;
	padding: 0;
	overflow-x: clip;
	font-family: var(--font-body);
	color: var(--text);
	background: var(--dark-1);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

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

.container {
	width: 100%;
	max-width: var(--maxw);
	margin-inline: auto;
	padding-inline: 20px;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--gold);
	color: #000;
	padding: 10px 16px;
	z-index: 1000;
}
.skip-link:focus { left: 8px; top: 8px; }

/* Inline ☎ ikonky u telefonních čísel (dříve wp-emoji inline styl) */
img.emoji {
	display: inline;
	height: 1em;
	width: 1em;
	margin: 0 0.07em;
	vertical-align: -0.1em;
	border: 0;
}

/* ===== Hlavička ========================================================== */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	margin-bottom: -72px;
	background: transparent;
	border-bottom: 1px solid transparent;
	box-shadow: none;
	transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.site-header.is-scrolled {
	background: #111111;
	border-bottom-color: rgba(255, 255, 255, 0.07);
	box-shadow: 0 4px 40px rgba(0, 0, 0, 0.65);
}
.site-header__inner {
	display: flex;
	align-items: center;
	min-height: 72px;
}
.site-logo { flex: 0 0 auto; line-height: 0; }
.site-logo img { width: 145px; height: auto; }

/* Small – navbar CTA */
.header-cta {
	gap: 7px;
	margin-left: 20px;
	padding: 9px 20px;
	font-size: 13px;
	letter-spacing: 0.35px;
	flex-shrink: 0;
}
.header-cta svg { width: 14px; height: 14px; flex: 0 0 auto; }

.main-nav { margin-left: auto; }
.main-nav ul {
	display: flex;
	align-items: center;
	gap: 32px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.main-nav a {
	position: relative;
	color: rgba(255, 255, 255, 0.72);
	text-decoration: none;
	font-family: var(--font-head);
	font-weight: 400;
	font-size: 14px;
	letter-spacing: 0.3px;
	padding: 4px 0;
	transition: color 0.2s;
}
.main-nav a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1.5px;
	background: var(--gold);
	transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.main-nav a:hover { color: #fff; }
.main-nav a:hover::after { width: 100%; }

/* ===== Hero ============================================================== */
.hero {
	position: relative;
	z-index: 1;
	background: #3C3C3C;
	overflow-x: clip;
}
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(to right, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.3) 42%, transparent 68%),
		url("../images/hero.webp") center / cover no-repeat;
	background-attachment: fixed;
}
@media (max-width: 768px) {
	.hero::before {
		background-attachment: scroll;
	}
}
.hero__inner {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	align-items: center;
	gap: 0 32px;
	padding-top: 108px;
	padding-bottom: 0;
	min-height: 100dvh;
}
.hero__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 28px;
	position: relative;
	z-index: 2;
}
.status.hero__status {
	margin: 0;
}
.hero__status {
	background: rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.22);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}
.hero__status .status__dot { background: rgba(255, 255, 255, 0.5); }
.hero__status.is-open {
	background: rgba(34, 197, 94, 0.18);
	color: #86efac;
	border-color: rgba(34, 197, 94, 0.5);
}
.hero__status.is-open .status__dot {
	background: #22c55e;
	box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.3);
}
.hero__status.is-closed {
	background: rgba(239, 68, 68, 0.30);
	color: #ffe0e0;
	border-color: rgba(239, 68, 68, 0.65);
	font-weight: 600;
}
.hero__status.is-closed .status__dot {
	background: #ff5a5a;
	box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.35);
}
.hero__title {
	margin: 0;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: clamp(30px, 4.2vw, 54px);
	line-height: 1.1;
	letter-spacing: -0.01em;
	color: #fff;
	text-shadow: none;
}
.hero__sub {
	margin: 0;
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.55);
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.hero__visual {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
}
.hero__car {
	width: 100%;
	max-width: 720px;
	margin: 0 -20px 0 0;
	position: relative;
	z-index: 2;
	animation: slideInRight 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes slideInRight {
	from { transform: translate3d(60%, 0, 0); opacity: 0; }
	to   { transform: translate3d(0, 0, 0); opacity: 1; }
}
.hero__wave {
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 100%;
	height: 120px;
	display: block;
	z-index: 1;
}
.hero__wave path { fill: #fff; }

/* ===== Sekce ============================================================= */
.section { padding-block: 60px; }
.section--intro,
.section--why,
.section--services { background: #fff; }
.section--hours { background: var(--gold-soft); }

.display {
	margin: 0 0 24px;
	text-align: center;
	font-family: var(--font-head);
	font-weight: 300;
	line-height: 1.2;
	font-size: clamp(28px, 4vw, 45px);
	text-shadow: var(--head-shadow);
}
.display--dark { color: #000; }
.display a { text-decoration: none; }

.prose {
	max-width: 720px;
	margin-inline: auto;
	font-size: 18px;
}
.prose--center { text-align: center; }
.prose p { margin: 0 0 14px; }

/* ==========================================================================
   Button System
   – Primary  : gold solid   → hlavní CTA (Volat taxi)
   – Secondary: gold outline → vedlejší CTA (footer, tmavé pozadí)
   – Tertiary : ghost        → k dispozici pro budoucí použití
   ========================================================================== */

/* --- Sdílený základ ---------------------------------------------------- */
.btn--call,
.hero__cta,
.header-cta,
.footer-cta-btn {
	display: inline-flex;
	align-items: center;
	border-radius: 100px;
	text-decoration: none;
	font-family: var(--font-btn);
	font-weight: 700;
	white-space: nowrap;
	cursor: pointer;
	transition:
		background 0.22s cubic-bezier(0.16, 1, 0.3, 1),
		box-shadow  0.22s cubic-bezier(0.16, 1, 0.3, 1),
		color       0.22s cubic-bezier(0.16, 1, 0.3, 1),
		transform   0.14s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn--call:active,
.hero__cta:active,
.header-cta:active,
.footer-cta-btn:active {
	transform: translateY(1px) scale(0.975) !important;
	box-shadow: none !important;
}

/* --- Primary (solid gold) ---------------------------------------------- */
.btn--call,
.hero__cta,
.header-cta {
	background: var(--gold);
	color: #0d0d0d;
	border: none;
}
.btn--call:hover,
.hero__cta:hover,
.header-cta:hover {
	background: var(--gold-soft);
	box-shadow: 0 6px 24px rgba(239, 199, 1, 0.38);
	transform: translateY(-1px);
}

/* --- Secondary (gold outline) ------------------------------------------ */
.footer-cta-btn {
	background: transparent;
	border: 1.5px solid var(--gold);
	color: var(--gold);
}
.footer-cta-btn:hover {
	background: var(--gold);
	color: #0d0d0d;
	box-shadow: 0 6px 24px rgba(239, 199, 1, 0.32);
	transform: translateY(-1px);
}

/* --- Velikostní varianty ----------------------------------------------- */

/* Large – hero CTA */
.hero__cta {
	gap: 10px;
	margin-top: 8px;
	padding: 16px 36px;
	font-size: 17px;
	letter-spacing: 0.2px;
}
.hero__cta svg { width: 18px; height: 18px; flex: 0 0 auto; }

/* Medium – tlačítko Volat v sekcích */
.btn--call {
	gap: 10px;
	margin: 24px auto 0;
	padding: 15px 34px;
	font-size: 17px;
	letter-spacing: 0.2px;
}
.btn--call svg { width: 20px; height: 20px; flex: 0 0 auto; }
.section .btn--call { display: flex; width: max-content; }

/* ===== Intro ============================================================= */
.intro-wrap {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 0 80px;
	align-items: center;
}

.intro-year {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding-right: 48px;
	border-right: 1px solid rgba(0,0,0,0.08);
	align-self: stretch;
	justify-content: center;
}

.intro-year__num {
	display: block;
	font-family: var(--font-head);
	font-size: clamp(52px, 7vw, 88px);
	font-weight: 700;
	line-height: 1;
	color: rgba(0,0,0,0.07);
	letter-spacing: -0.04em;
}

.intro-year__label {
	display: block;
	font-family: var(--font-mono-meta);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold-head);
	margin-top: 10px;
}

.intro-body .display { text-align: left; }
.intro-body .prose { max-width: none; font-size: 17px; }
.intro-cta { margin: 24px 0 0 !important; }

/* ===== Nadpis sekce — eyebrow =========================================== */
.section-eyebrow {
	margin: 0 0 10px;
	text-align: center;
	font-family: var(--font-mono-meta);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold-head);
}

/* ===== Proč si vybrat (hodnoty) ========================================= */
.values {
	list-style: none;
	margin: 40px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid rgba(0,0,0,0.08);
	border-bottom: 1px solid rgba(0,0,0,0.08);
}

.value {
	padding: 40px 28px;
	border-right: 1px solid rgba(0,0,0,0.08);
	text-align: left;
}
.value:last-child { border-right: none; }

.value__icon {
	color: var(--gold-head);
	margin-bottom: 20px;
}
.value__icon svg { width: 36px; height: 36px; display: block; }

.value__title {
	margin: 0 0 8px;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: clamp(17px, 1.8vw, 22px);
	color: #111;
}

.value__desc {
	margin: 0;
	font-size: 14px;
	color: #777;
	line-height: 1.6;
}

/* Why bottom: text + badge in a row */
.why-bottom {
	display: flex;
	align-items: center;
	gap: 48px;
	margin-top: 40px;
}
.why-text { margin: 0; max-width: 560px; font-size: 16px; }
/* Google review widget */
.grw {
  flex-shrink: 0;
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 22px 16px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.06);
  text-decoration: none;
  color: inherit;
  min-width: 210px;
  transition: box-shadow 0.22s cubic-bezier(0.16,1,0.3,1), transform 0.22s cubic-bezier(0.16,1,0.3,1);
}
.grw:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.1), 0 8px 28px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.grw__header {
  display: flex;
  align-items: center;
  gap: 8px;
}
.grw__g { width: 20px; height: 20px; flex-shrink: 0; }

.grw__brand {
  font-family: var(--font-btn);
  font-size: 15px;
  font-weight: 500;
  color: #3c4043;
  letter-spacing: 0;
}

.grw__rating {
  display: flex;
  align-items: center;
  gap: 10px;
}
.grw__score {
  font-family: var(--font-btn);
  font-size: 30px;
  font-weight: 700;
  color: #202124;
  line-height: 1;
}
.grw__stars {
  display: flex;
  gap: 2px;
}
.grw__stars svg { width: 17px; height: 17px; display: block; }

.grw__count {
  margin: 0;
  font-family: var(--font-btn);
  font-size: 13px;
  color: #70757a;
}
.grw__cta {
  margin: 0;
  font-family: var(--font-btn);
  font-size: 13px;
  font-weight: 500;
  color: #1a73e8;
}

/* Skupina review widgetů (Google + Firmy.cz) */
.review-badges {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* Firmy.cz CTA odkaz (oranžová barva firmy) */
.grw--firmy .grw__cta { color: #e65c00; }

/* ===== Naše služby ====================================================== */
.services {
	list-style: none;
	margin: 40px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px 20px;
}

.service { text-align: center; }

.service--feat { grid-column: span 2; }

.service img {
	width: 72%;
	margin: 0 auto 14px;
	transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.service--feat img { width: 56%; }
.service:hover img { transform: scale(1.05); }

.service__title {
	margin: 0;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: clamp(15px, 1.6vw, 19px);
	color: #111;
	letter-spacing: -0.01em;
}

/* ===== Provozní doba ==================================================== */
.section--hours {
  background: var(--ink);
  color: #fff;
  padding-block: 72px;
}

.hours-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px 80px;
  align-items: start;
}

/* Levý panel */
.hours-label {
  margin: 0 0 12px;
  font-family: var(--font-mono-meta);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .8;
}

.hours-title {
  margin: 0 0 28px;
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.2;
  color: #fff;
}

/* Status badge */
.hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 32px;
  padding: 8px 16px 8px 12px;
  border-radius: 100px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  font-family: var(--font-mono-meta);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .01em;
  color: #ccc;
  transition: background .3s;
}

.hours-badge__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #888;
  flex-shrink: 0;
  transition: background .3s;
}

/* Otevřeno */
.hours-badge.is-open {
  background: rgba(34, 197, 94, .12);
  border-color: rgba(34, 197, 94, .3);
  color: #86efac;
}
.hours-badge.is-open .hours-badge__dot {
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,.5);
  animation: pulse-green 2s ease-out infinite;
}

/* Zavřeno */
.hours-badge.is-closed {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.1);
  color: #888;
}
.hours-badge.is-closed .hours-badge__dot {
  background: #555;
}

@keyframes pulse-green {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  70%  { box-shadow: 0 0 0 7px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.hours-cta {
  display: inline-flex;
  margin: 0;
}

/* Pravý panel – tabulka dnů */
.hours-schedule {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 4px;
}

.hours-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background .2s;
}

.hours-row.is-today {
  background: rgba(239,199,1,.06);
  margin-inline: -16px;
  padding-inline: 16px;
  border-radius: 6px;
  border-bottom-color: transparent;
}

.hours-day {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}

.hours-row.is-today .hours-day {
  color: #fff;
  font-weight: 600;
}

.hours-time {
  font-family: var(--font-mono-meta);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  letter-spacing: .01em;
  transition: color .2s;
  order: 3;
}

.hours-row.is-today .hours-time {
  color: var(--gold);
  font-weight: 700;
}

/* visibility:hidden zachovává místo v mřížce → časy zůstávají svisle zarovnané */
.hours-today-tag {
  visibility: hidden;
  font-family: var(--font-mono-meta);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(239,199,1,.15);
  padding: 3px 8px;
  border-radius: 4px;
  order: 2;
  align-self: center;
}

.hours-row.is-today .hours-today-tag {
  visibility: visible;
}

.hours-note {
  margin: 20px 0 0;
  font-family: var(--font-mono-meta);
  font-size: 11px;
  letter-spacing: .06em;
  color: rgba(255,255,255,.3);
  text-transform: uppercase;
}

/* ===== Blok "Rezervace mimo provozní dobu" — dark sekce (index) ========== */
.hours-extra {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 16px;
  align-items: stretch;
}

/* Část 1: info o možnosti jízdy mimo dobu */
.hours-extra__info {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 22px 24px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
}
.hours-extra__info svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--gold);
  margin-top: 2px;
}
.hours-extra__info-body { flex: 1; }
.hours-extra__info-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .7;
  margin-bottom: 6px;
}
.hours-extra__info p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255,255,255,.65);
}
.hours-extra__info strong { color: #fff; }

/* Část 2: výrazné varování o volání v provozní době */
.hours-extra__warning {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 24px 28px;
  border-radius: 14px;
  background: var(--gold);
}
.hours-extra__warning-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  background: rgba(0,0,0,.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hours-extra__warning-icon svg { width: 22px; height: 22px; color: #0d0d0d; }
.hours-extra__warning-body { flex: 1; }
.hours-extra__warning-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(0,0,0,.5);
  margin-bottom: 4px;
}
.hours-extra__warning-text {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  color: #0d0d0d;
}
.hours-extra__warning-time {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 700;
  color: #0d0d0d;
  letter-spacing: -.5px;
}
.hours-extra__warning-sub {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(0,0,0,.55);
  line-height: 1.4;
}

/* ===== Kompaktní verze pro podstránky (bílé pozadí) ===================== */
.booking-note {
  margin-top: 24px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.09);
}
.booking-note__info {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 18px;
  background: #f7f7f7;
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.booking-note__info svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  color: #777;
  margin-top: 2px;
}
.booking-note__info p {
  margin: 0;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.55;
}
.booking-note__info strong { color: var(--ink); }

.booking-note__warning {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 15px 18px;
  background: var(--gold);
}
.booking-note__warning svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: #0d0d0d;
  margin-top: 2px;
  flex-shrink: 0;
}
.booking-note__warning p {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.55;
  color: #0d0d0d;
}
.booking-note__warning strong {
  font-size: 1rem;
  font-weight: 900;
}

/* === Responsivita === */
@media (max-width: 768px) {
  .section--hours { padding-block: 52px; }

  .hours-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hours-title { font-size: clamp(26px, 7vw, 34px); }

  .hours-row {
    grid-template-columns: 1fr auto auto;
    padding: 12px 0;
  }

  .hours-day { font-size: 14px; }
  .hours-time { font-size: 14px; }

  .hours-extra {
    grid-template-columns: 1fr;
    margin-top: 36px;
    padding-top: 32px;
  }
  .hours-extra__warning-time { font-size: 1.25rem; }
}

/* ===== Interní stránky (GDPR, Kontakty, …) ================================ */

/* Nadpis stránky pod hlavičkou */
.page-banner {
	background: var(--dark-1);
	color: #fff;
	padding-block: 100px 56px;
	text-align: center;
}
.page-banner .section-eyebrow {
	color: var(--gold);
	margin-bottom: 12px;
}
.page-banner__title {
	margin: 0 0 12px;
	font-family: var(--font-head);
	font-size: clamp(28px, 4vw, 46px);
	font-weight: 700;
	line-height: 1.15;
	color: #fff;
}
.page-banner__sub {
	margin: 0;
	font-size: 15px;
	color: rgba(255,255,255,0.52);
	letter-spacing: 0.04em;
}

/* Legal obsah */
.section--legal { padding-block: 56px 80px; }

.legal-wrap {
	max-width: 780px;
	margin-inline: auto;
}

.legal-block {
	padding-bottom: 36px;
	margin-bottom: 36px;
	border-bottom: 1px solid rgba(0,0,0,0.08);
}
.legal-block--last {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.legal-block h2 {
	margin: 0 0 16px;
	font-family: var(--font-head);
	font-size: clamp(18px, 2.2vw, 22px);
	font-weight: 700;
	color: var(--ink);
}
.legal-block h3 {
	margin: 20px 0 8px;
	font-family: var(--font-head);
	font-size: 16px;
	font-weight: 700;
	color: var(--ink);
}

.legal-block p {
	margin: 0 0 14px;
	font-size: 15px;
	line-height: 1.7;
	color: var(--text);
}
.legal-block p:last-child { margin-bottom: 0; }

.legal-block ul {
	margin: 0 0 14px;
	padding-left: 20px;
}
.legal-block ul li {
	font-size: 15px;
	line-height: 1.7;
	color: var(--text);
	margin-bottom: 6px;
}

.legal-block a {
	color: var(--navy);
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: color 0.2s;
}
.legal-block a:hover { color: var(--gold-head); }

/* Tabulka pro účely zpracování */
.legal-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
	margin-top: 8px;
}
.legal-table th {
	background: var(--dark-1);
	color: #fff;
	padding: 10px 14px;
	text-align: left;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.04em;
}
.legal-table td {
	padding: 10px 14px;
	border-bottom: 1px solid rgba(0,0,0,0.07);
	vertical-align: top;
	color: var(--text);
	line-height: 1.5;
}
.legal-table tr:last-child td { border-bottom: none; }
.legal-table tr:nth-child(even) td { background: #f9f9f9; }

.legal-date {
	font-family: var(--font-mono-meta);
	font-size: 13px;
	color: rgba(0,0,0,0.4);
	margin-top: 8px !important;
}

/* ===== Footer =========================================================== */
.footer-main {
	background: var(--dark-1);
	color: #fff;
	padding-block: 72px 48px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2.2fr 1.4fr 1.2fr;
	gap: 48px 56px;
	align-items: start;
}

/* Brand column */
.footer-col--brand {}

.footer-brand-name {
	margin: 0 0 6px;
	font-family: var(--font-head);
	font-size: 26px;
	font-weight: 700;
	color: #fff;
	letter-spacing: -0.02em;
}

.footer-tagline {
	margin: 0 0 24px;
	font-size: 14px;
	color: #9aa0a6;
	line-height: 1.5;
	max-width: 26ch;
}

/* Medium – footer secondary CTA */
.footer-cta-btn {
	gap: 9px;
	padding: 12px 24px;
	font-size: 15px;
	letter-spacing: 0.2px;
}
.footer-cta-btn svg { flex-shrink: 0; }

.footer-hours {
	display: flex;
	align-items: center;
	gap: 7px;
	margin: 14px 0 0;
	font-family: var(--font-mono-meta);
	font-size: 13px;
	color: #9aa0a6;
}
.footer-hours svg { flex-shrink: 0; opacity: 0.7; }


/* Link columns */
.footer-col__title {
	margin: 0 0 14px;
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #9aa0a6;
}
.footer-col__title--spaced { margin-top: 32px; }

.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a {
	color: #d0d5dc;
	text-decoration: none;
	font-size: 15px;
	transition: color .15s;
}
.footer-links a:hover { color: var(--gold); }

.socials { display: flex; gap: 10px; }
.socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #d0d5dc;
	transition: background .2s, border-color .2s, color .2s;
}
.socials a:hover {
	background: var(--gold);
	border-color: var(--gold);
	color: #111;
}
.socials svg { width: 18px; height: 18px; }

/* Divider + bottom row */
.footer-divider {
	height: 1px;
	background: rgba(255, 255, 255, 0.08);
	margin-block: 48px 28px;
}

.footer-bottom-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 6px;
}

.footer-copy {
	margin: 0;
	font-family: var(--font-mono-meta);
	font-size: 13px;
	color: #6b7280;
}

/* ===== Indikátor Otevřeno / Zavřeno ===================================== */
.status {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 0 auto 8px;
	padding: 7px 16px;
	border-radius: 999px;
	background: #f0f0f0;
	color: #333;
	font-size: 15px;
	font-weight: 500;
}
.status__dot {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: #9aa0a6;
	flex: 0 0 auto;
}
.status.is-open { background: rgba(97, 206, 112, 0.15); color: #1e6b2c; }
.status.is-open .status__dot { background: #2faa46; box-shadow: 0 0 0 4px rgba(47, 170, 70, 0.2); }
.status.is-closed { background: rgba(220, 53, 69, 0.1); color: #a11; }
.status.is-closed .status__dot { background: #d33; }

/* Indikátor v navbaru — jen na mobilu, optimalizováno pro tmavé pozadí */
.header-status {
	display: none; /* na desktopu skryto, místo něj je CTA */
	gap: 8px;
	margin-left: auto;
	padding: 7px 14px;
	font-size: 13px;
	font-weight: 600;
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.85);
	border: 1px solid rgba(255, 255, 255, 0.18);
}
.header-status.is-open {
	background: rgba(34, 197, 94, 0.18);
	color: #86efac;
	border-color: rgba(34, 197, 94, 0.5);
}
.header-status.is-open .status__dot {
	background: #22c55e;
	box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.3);
}
.header-status.is-closed {
	background: rgba(239, 68, 68, 0.22);
	color: #ffb4b4;
	border-color: rgba(239, 68, 68, 0.6);
}
.header-status.is-closed .status__dot {
	background: #ff5a5a;
	box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.35);
}

/* ===== Fixní mobilní FAB (telefon) ====================================== */
.mobile-call-fab {
	display: none; /* skryto na desktopu */
}

/* ===== Responsivita ===================================================== */
@media (max-width: 1024px) {
	.hero__inner { grid-template-columns: 1fr 1.2fr; }
	.values { grid-template-columns: repeat(2, 1fr); }
	.value:nth-child(2) { border-right: none; }
	.value:nth-child(1),
	.value:nth-child(2) { border-bottom: 1px solid rgba(0,0,0,0.08); }
	.intro-wrap { grid-template-columns: 160px 1fr; gap: 0 48px; }
}

@media (max-width: 767px) {
	/* Hlavička → logo + indikátor otevřeno/zavřeno (CTA i menu skryté).
	   Volání na mobilu zajišťuje plovoucí tlačítko (.mobile-call-fab). */
	.main-nav { display: none; }
	.header-cta { display: none; }
	.site-logo img { width: 110px; }
	.header-status {
		display: inline-flex;
		white-space: nowrap;
		padding: 6px 12px;
		font-size: 12px;
		gap: 7px;
	}

	/* Status se přesouvá do navbaru → v hero i v banneru ho na mobilu skryjeme */
	.status.hero__status,
	.status.page-banner__status { display: none; }

	/* Hero: jednosloupcový flex na mobilu */
	.hero__inner {
		display: flex;
		flex-direction: column;
		justify-content: space-evenly;
		grid-template-columns: unset;
		padding-top: 90px;
		padding-bottom: 0;
		min-height: 100dvh;
		gap: 0;
	}
	.hero__title { font-size: clamp(26px, 8vw, 38px); }
	.hero__cta { display: none; }
	.hero__visual { justify-content: center; }
	.hero__car {
		width: 100%;
		max-width: none;
		margin: 0;
	}
	.hero__wave { height: 70px; }

	/* Intro → 1 sloupec, rok skrytý */
	.intro-wrap { grid-template-columns: 1fr; }
	.intro-year { display: none; }
	.intro-body .display { text-align: center; }
	.intro-cta { margin: 24px auto 0 !important; }

	/* Values → 1 sloupec */
	.values { grid-template-columns: 1fr; border-bottom: none; }
	.value { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.08); padding: 28px 4px; }
	.value:nth-child(1), .value:nth-child(2) { border-bottom: 1px solid rgba(0,0,0,0.08); }

	/* Why bottom → stack */
	.why-bottom { flex-direction: column; align-items: flex-start; gap: 24px; }

	/* Services → 2 sloupce; featured přes celou šířku */
	.services { grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: none; margin-inline: unset; }
	.service--feat { grid-column: span 2; }
	.service img { width: 62%; }
	.service--feat img { width: 48%; }

	.section { padding-block: 44px; }
	.footer-grid { grid-template-columns: 1fr; gap: 36px; }
	.footer-tagline { max-width: none; }
	.footer-bottom-row { flex-direction: column; gap: 4px; }
	.footer-col__title--spaced { margin-top: 20px; }

	/* Fixní zelené kolečko — telefon */
	.mobile-call-fab {
		display: flex;
		align-items: center;
		justify-content: center;
		position: fixed;
		bottom: calc(24px + env(safe-area-inset-bottom, 0px));
		right: 20px;
		z-index: 200;
		width: 60px;
		height: 60px;
		border-radius: 50%;
		background: #22b558;
		color: #fff;
		text-decoration: none;
		box-shadow: 0 4px 20px rgba(34, 181, 88, 0.45);
		transition: background 0.2s, transform 0.15s;
	}
	.mobile-call-fab svg { width: 26px; height: 26px; }
	.mobile-call-fab:active {
		background: #1a9648;
		transform: scale(0.93);
	}
}

@media (max-width: 767px) {
	/* na mobilu skryjeme desktopový H2 v úvodu — H1 v hero ho zastupuje */
	.intro__h2 { display: none; }
}

/* ==========================================================================
   Lokalitní (SEO) podstránky — obce/*.html
   ========================================================================== */
.section--obec { padding-block: 56px 72px; }

.obec-wrap {
	max-width: 820px;
	margin-inline: auto;
}

.obec-lead {
	font-family: var(--font-head);
	font-size: clamp(19px, 2.4vw, 24px);
	line-height: 1.5;
	color: var(--ink);
	margin: 0 0 28px;
}

.obec-content p {
	margin: 0 0 16px;
	font-size: 16px;
	line-height: 1.75;
	color: var(--text);
}
.obec-content p:last-child { margin-bottom: 0; }
.obec-content strong { color: var(--ink); }
.obec-content a {
	color: var(--navy);
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: color 0.2s;
}
.obec-content a:hover { color: var(--gold-head); }

/* Mřížka výhod / služeb pro danou obec */
.obec-tags {
	list-style: none;
	margin: 32px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}
.obec-tag {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 18px;
	background: #fafafa;
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 12px;
	font-size: 15px;
	font-weight: 600;
	color: var(--ink);
}
.obec-tag svg {
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
	color: var(--gold-head);
}

/* Tip blok — zmínka o externím místě (klub, akce apod.) */
.obec-tip {
	margin-top: 28px;
	padding: 20px 22px;
	background: #fffdf0;
	border: 1px solid rgba(239, 199, 1, 0.28);
	border-left: 3px solid var(--gold);
	border-radius: 12px;
	display: flex;
	gap: 16px;
	align-items: flex-start;
}
.obec-tip__icon {
	flex: 0 0 auto;
	width: 36px;
	height: 36px;
	background: var(--gold);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0d0d0d;
}
.obec-tip__icon svg { width: 18px; height: 18px; }
.obec-tip__body { flex: 1; min-width: 0; }
.obec-tip__label {
	display: block;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #999;
	margin-bottom: 4px;
}
.obec-tip__text {
	font-size: 0.95rem;
	line-height: 1.65;
	color: var(--text);
	margin: 0;
}
.obec-tip__text a {
	color: var(--ink);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-color: rgba(0,0,0,0.25);
}
.obec-tip__text a:hover {
	text-decoration-color: var(--gold-head);
	color: var(--gold-head);
}

/* CTA pruh */
.obec-cta-band {
	margin-top: 44px;
	padding: 32px 28px;
	background: var(--dark-1);
	border-radius: 16px;
	text-align: center;
	color: #fff;
}
.obec-cta-band h2 {
	margin: 0 0 8px;
	font-family: var(--font-head);
	font-size: clamp(20px, 2.6vw, 26px);
	color: #fff;
}
.obec-cta-band p {
	margin: 0 0 22px;
	font-size: 15px;
	color: rgba(255,255,255,0.66);
}
.obec-cta-band .btn--call { margin-inline: auto; }

/* Prolinkování okolních obcí */
.obec-related {
	margin-top: 52px;
	padding-top: 36px;
	border-top: 1px solid rgba(0,0,0,0.08);
}
.obec-related__title {
	font-family: var(--font-head);
	font-size: 18px;
	font-weight: 700;
	color: var(--ink);
	margin: 0 0 18px;
}
.obec-chips {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.obec-chips a {
	display: inline-block;
	padding: 9px 16px;
	background: #fff;
	border: 1px solid rgba(0,0,0,0.14);
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	color: var(--ink);
	text-decoration: none;
	transition: border-color 0.2s, background 0.2s;
}
.obec-chips a:hover {
	border-color: var(--gold-head);
	background: #fffdf3;
}

/* Banner lokalitních stránek — indikátor, CTA a foto vozu */
.status.page-banner__status { margin: 0 0 20px; }

.page-banner__cta { margin-top: 26px; }

.page-banner__visual {
	margin-top: 40px;
	display: flex;
	justify-content: center;
}
.page-banner__car {
	width: 100%;
	max-width: 600px;
	filter: drop-shadow(0 22px 38px rgba(0,0,0,0.5));
	animation: slideInRight 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@media (max-width: 560px) {
	.obec-tags { grid-template-columns: 1fr; }
	.page-banner__car { max-width: 420px; }
}
