/* ============================================================
   HodoManzel.cz — statický build
   Sémantické CSS: tag selektory + pojmenované kontejnery.
   Žádné utility třídy na elementech (mimo animační háčky).
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --bg: #fafafa;
  --fg: #27272a;
  --card: #ffffff;
  --muted: #71717a;
  --muted-bg: #f4f4f5;
  --border: #e4e4e7;
  --brand: #d97706;
  --brand-foreground: #ffffff;
  --brand-soft: #fff7ed;
  --destructive: #dc2626;

  --radius-sm: 0.375rem;
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;

  --container: 72rem;
  --gutter: 1.25rem;

  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input,
textarea {
  font: inherit;
  color: inherit;
}

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

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container-wide {
  width: 100%;
  max-width: 90rem;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
@media (min-width: 640px) {
  .container,
  .container-wide {
    --gutter: 1.5rem;
  }
}

.site-root {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.site-main {
  flex: 1 0 auto;
}
.site-footer {
  flex-shrink: 0;
}

/* ---------- Headings ---------- */
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.4rem);
  line-height: 1.08;
}

h2 {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

/* ---------- Section base ---------- */
.section {
  padding-block: 6rem;
}
@media (min-width: 1024px) {
  .section {
    padding-block: 7rem;
  }
}
.section--card {
  background: var(--card);
}
.section--soft {
  background: color-mix(in srgb, var(--brand-soft) 60%, transparent);
}

.section-head {
  max-width: 48rem;
}
.section-head.--wide {
  max-width: none;
}
.section-head p:first-child {
  /* eyebrow handled below */
}

.eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand);
}
.section-head h2 {
  margin-top: 0.75rem;
  max-width: 48rem;
}
.section-lead {
  margin-top: 1rem;
  max-width: 42rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--muted);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius-sm);
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.btn--lg {
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
}
.btn--primary {
  background: var(--brand);
  color: var(--brand-foreground);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: color-mix(in srgb, var(--brand) 90%, black);
  box-shadow: var(--shadow-md);
}
.btn--secondary {
  background: var(--card);
  color: var(--fg);
  box-shadow: var(--shadow-sm);
}
.btn--secondary:hover {
  background: var(--muted-bg);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  background: var(--card);
  color: var(--fg);
  box-shadow: var(--shadow-sm);
}
.btn--outline:hover {
  background: var(--fg);
  color: var(--bg);
}
.btn--dark {
  background: var(--fg);
  color: var(--bg);
}
.btn--dark:hover {
  background: color-mix(in srgb, var(--fg) 85%, white);
}
.btn--block {
  width: 100%;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: var(--bg);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header.is-scrolled {
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.accent-bar {
  height: 2px;
  width: 100%;
  background: var(--brand);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
@media (min-width: 1024px) {
  .header-inner {
    height: 4.5rem;
  }
}
.logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
}
@media (min-width: 640px) {
  .logo {
    font-size: 1.375rem;
  }
}

.nav--desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}
.nav--desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.15s ease;
}
.nav--desktop a:hover {
  color: var(--fg);
}
.header-actions {
  display: none;
}
.header-actions .btn {
  display: inline-flex;
}
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-sm);
  color: var(--fg);
  transition: background-color 0.15s ease;
}
.menu-toggle:hover {
  background: var(--muted-bg);
}
.menu-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
}
.menu-toggle [data-icon="close"] {
  display: none;
}
.menu-toggle[aria-expanded="true"] [data-icon="open"] {
  display: none;
}
.menu-toggle[aria-expanded="true"] [data-icon="close"] {
  display: block;
}

@media (min-width: 768px) {
  .nav--desktop {
    display: flex;
  }
  .header-actions {
    display: block;
  }
  .menu-toggle {
    display: none;
  }
}

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--bg);
  box-shadow: var(--shadow-sm);
}
.mobile-menu.is-open {
  display: block;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-block: 1rem;
}
.mobile-nav a {
  padding: 0.75rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg);
  transition: background-color 0.15s ease;
}
.mobile-nav a:hover {
  background: var(--muted-bg);
}
.mobile-nav .btn {
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
}
.hero-wash {
  position: absolute;
  inset: 0 0 auto 0;
  height: 600px;
  background: linear-gradient(
    to bottom,
    var(--brand-soft),
    color-mix(in srgb, var(--brand-soft) 40%, transparent)
  );
  pointer-events: none;
}
.hero > .container {
  position: relative;
  padding-top: 5rem;
}
@media (min-width: 640px) {
  .hero > .container {
    padding-top: 6rem;
  }
}
@media (min-width: 1024px) {
  .hero > .container {
    padding-top: 7rem;
  }
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 6fr 6fr;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: var(--card);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand);
}
.hero-badge svg {
  width: 0.875rem;
  height: 0.875rem;
  fill: var(--brand);
}

.hero-content h1 {
  margin-top: 1.25rem;
}
.hero-content > p {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--muted);
}
@media (min-width: 640px) {
  .hero-content > p {
    font-size: 1.25rem;
  }
}

.hero-actions {
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
  }
}
.hero-actions .btn {
  width: 100%;
}
@media (min-width: 640px) {
  .hero-actions .btn {
    width: auto;
  }
}

.hero-trust {
  margin-top: 3rem;
  padding-bottom: 5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.5rem;
}
@media (min-width: 640px) {
  .hero-trust {
    grid-template-columns: repeat(4, 1fr);
    padding-bottom: 6rem;
  }
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg);
}
.hero-trust .trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  background: var(--brand-soft);
  color: var(--brand);
}
.hero-trust .trust-icon svg {
  width: 0.875rem;
  height: 0.875rem;
}

/* Hero image + floating price card */
.hero-visual {
  position: relative;
}
.hero-photo {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--card);
  box-shadow: var(--shadow-sm);
}
.hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.hero-price-float {
  position: absolute;
  bottom: -1.25rem;
  left: 0.75rem;
  display: none;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow-md);
}
@media (min-width: 640px) {
  .hero-price-float {
    display: block;
    left: 1rem;
  }
}
.hero-price-float p {
  margin: 0;
}
.hero-price-float .hero-calc-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--fg);
}
.hero-price-float .hero-calc-subtitle {
  margin-top: 0.35rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
}

/* Hero info card */
.hero-card {
  background: var(--card);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.hero-card > h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg);
}
.hero-card > h3 svg {
  width: 1rem;
  height: 1rem;
  color: var(--brand);
}

.regions-list {
  margin-top: 1.25rem;
}
.regions-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.75rem;
  font-size: 0.9375rem;
  color: var(--muted);
}
.regions-list li + li {
  /* gap handled by padding; last has no padding-bottom */
}
.regions-list li:last-child {
  padding-bottom: 0;
}
.regions-list li span {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 500;
  color: var(--brand);
}
.regions-list li span::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  background: var(--brand);
}

.hero-note {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: var(--brand-soft);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--fg);
}
.hero-note strong {
  font-weight: 600;
}

.price-teaser {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-lg);
  background: var(--bg);
}
.price-teaser p {
  margin: 0;
}
.price-teaser p:first-child {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.price-teaser p:nth-child(2) {
  margin-top: 0.125rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.price-teaser p:nth-child(2) span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
}
.price-teaser a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.price-teaser a:hover {
  color: color-mix(in srgb, var(--brand) 80%, black);
}

/* Trust strip */
.trust {
  margin-top: 3rem;
  padding-bottom: 5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.5rem;
}
@media (min-width: 640px) {
  .trust {
    grid-template-columns: repeat(4, 1fr);
    padding-bottom: 6rem;
  }
}
.trust li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg);
}
.trust li svg {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  color: var(--brand);
}
.trust .trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background: var(--brand-soft);
  color: var(--brand);
}

/* ---------- Cards grids (shared) ---------- */
.cards {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.25rem;
}
.cards--3 {
  grid-template-columns: 1fr;
}
.cards--4 {
  grid-template-columns: 1fr;
}
.cards--2 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .cards--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .cards--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .cards--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .cards--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .cards--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Divider-style grid (open cards) */
.cards--divider {
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.cards--divider > * {
  background: var(--card);
}

/* Generic card */
.card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
}
@media (min-width: 640px) {
  .card {
    padding: 2rem;
  }
}
.card .card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-lg);
  background: var(--bg);
  color: var(--brand);
}
.card .card-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}
.card h3 {
  margin-top: 1.25rem;
}
.card p {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--muted);
}

/* ---------- Process ---------- */
.process .cards {
  gap: 1rem;
}
@media (min-width: 640px) {
  .process .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .process .cards {
    grid-template-columns: repeat(4, 1fr);
  }
}
.process .card {
  padding: 1.75rem;
  background: var(--card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}
.process .step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--brand);
  line-height: 1;
}
.process .card h3 {
  margin-top: 1.25rem;
  font-size: 1.125rem;
}

/* ---------- Services ---------- */
.services-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: none;
}
@media (min-width: 640px) {
  .services-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.services-head p {
  max-width: 24rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--muted);
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--bg);
  transition: border-color 0.2s ease;
}
.service-card:hover {
}
.service-card .service-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.service-card .service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg);
  color: var(--brand);
  box-shadow: 0 0 0 1px var(--border) inset;
  transition: all 0.2s ease;
}
.service-card:hover .service-icon {
  background: var(--brand);
  color: var(--brand-foreground);
  box-shadow: 0 0 0 1px var(--brand) inset;
}
.service-card .service-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}
.service-card h3 {
  font-size: 1.125rem;
}
.service-card ul {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.service-card li {
  display: flex;
  gap: 0.625rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--muted);
}
.service-card li::before {
  content: "";
  margin-top: 0.5rem;
  width: 0.25rem;
  height: 0.25rem;
  flex-shrink: 0;
  border-radius: 9999px;
  background: var(--brand);
}

.services-footnote {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--muted-bg) 50%, transparent);
  text-align: center;
  font-size: 0.9375rem;
  color: var(--muted);
}
.services-footnote a {
  font-weight: 600;
  color: var(--fg);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.15s ease;
}
.services-footnote a:hover {
  color: var(--brand);
}

/* ---------- Craftsmen ---------- */
.craftsman {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease;
}
.craftsman:hover {
  box-shadow: var(--shadow-md);
}
.craftsman-photo {
  overflow: hidden;
  background: var(--muted-bg);
  aspect-ratio: 4 / 5;
}
.craftsman-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.craftsman:hover .craftsman-photo img {
  transform: scale(1.03);
}
.craftsman-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem;
}
.craftsman-body h3 {
  font-size: 1.25rem;
}
.craftsman-body .craftsman-role {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand);
}
.craftsman-body p {
  margin-top: 1rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--muted);
}
.craftsman-location {
  margin-top: 1.25rem;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.craftsman-location svg {
  width: 1rem;
  height: 1rem;
  color: var(--brand);
}

/* ---------- Gallery ---------- */
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease;
}
.gallery-item:hover {
  box-shadow: var(--shadow-md);
}
.gallery-photo {
  overflow: hidden;
  background: var(--muted-bg);
  aspect-ratio: 4 / 3;
}
.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-photo img {
  transform: scale(1.04);
}
.gallery-item figcaption {
  padding: 1.25rem;
}
.gallery-item figcaption h3 {
  font-size: 1rem;
}
.gallery-item figcaption p {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
}

/* ---------- Video ---------- */
.video-frame {
  margin-top: 3rem;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--bg);
  box-shadow: var(--shadow-sm);
}
.video-frame .video-ratio {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-note {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.video-note svg {
  width: 1rem;
  height: 1rem;
  color: var(--brand);
}

/* ---------- Pricing ---------- */
.pricing-grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 5fr 7fr;
  }
  .pricing-side {
    display: grid;
    gap: 1.25rem;
    align-content: start;
  }
}

.pricing-card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: var(--card);
  box-shadow: var(--shadow-sm);
}
.pricing-card .label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
}
.pricing-card .label svg {
  width: 1rem;
  height: 1rem;
  color: var(--brand);
}
.price-amount {
  margin-top: 0.75rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.price-amount .price-prefix {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
}
.price-amount > span:nth-child(2) {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  line-height: 1;
}
@media (min-width: 640px) {
  .price-amount > span:nth-child(2) {
    font-size: 3rem;
  }
}
.price-amount .price-unit {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
}
.price-note {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.pricing-how-title {
  font-size: clamp(1.75rem, 3vw, 2.125rem);
  line-height: 1.15;
}
.pricing-how-text {
  margin-top: 0.875rem;
  padding-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}

.included {
  margin-top: 2rem;
}
.included-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.included ul {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.included li {
  display: flex;
  gap: 0.625rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--fg);
}
.included li svg {
  margin-top: 0.125rem;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: var(--brand);
}

.location-card,
.excluded-card {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: var(--card);
  box-shadow: var(--shadow-sm);
}
.location-card .label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
}
.location-card .label svg {
  width: 1rem;
  height: 1rem;
  color: var(--brand);
}
.location-card > p {
  margin-top: 1rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--fg);
}
.location-card > p strong {
  font-weight: 600;
}
.region-tags {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.region-tags li {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: var(--bg);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg);
}
.region-tags li::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  background: var(--brand);
}

.excluded-card .excluded-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.excluded-card .excluded-head svg {
  width: 1rem;
  height: 1rem;
  color: color-mix(in srgb, var(--muted) 60%, transparent);
}
.excluded-card .excluded-head p {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.excluded-card ul {
  margin-top: 1rem;
  display: grid;
  gap: 0.5rem;
}
@media (min-width: 640px) {
  .excluded-card ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
.excluded-card li {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--muted);
}
.excluded-foot {
  margin-top: 1.25rem;
  padding-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
}

/* ---------- CTA band ---------- */
.cta-band {
  padding-block: 4rem;
}
@media (min-width: 1024px) {
  .cta-band {
    padding-block: 5rem;
  }
}
.cta-box {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--brand);
  padding: 2.5rem 1.75rem;
}
@media (min-width: 640px) {
  .cta-box {
    padding: 3rem 3rem;
  }
}
.cta-box-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .cta-box-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cta-box h2 {
  max-width: 42rem;
  color: var(--brand-foreground);
  font-size: 1.5rem;
}
@media (min-width: 640px) {
  .cta-box h2 {
    font-size: 1.875rem;
  }
}
.cta-box p {
  margin-top: 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--brand-foreground) 85%, transparent);
}
@media (min-width: 640px) {
  .cta-box p {
    font-size: 1.125rem;
  }
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}
@media (min-width: 640px) {
  .cta-actions {
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .cta-actions {
    width: auto;
    flex-direction: column;
    align-items: stretch;
  }
}
.cta-actions .btn {
  width: 100%;
}
.cta-actions .btn--onbrand {
  background: var(--brand-foreground);
  color: var(--brand);
}
.cta-actions .btn--onbrand:hover {
  background: color-mix(in srgb, var(--brand-foreground) 90%, transparent);
}
.cta-actions .btn--ghost {
  background: color-mix(in srgb, var(--brand-foreground) 10%, transparent);
  color: var(--brand-foreground);
}
.cta-actions .btn--ghost:hover {
  background: color-mix(in srgb, var(--brand-foreground) 20%, transparent);
}

/* ---------- Contact ---------- */
.contact-grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.contact-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  border-radius: var(--radius-xl);
  background: var(--bg);
  box-shadow: var(--shadow-sm);
}
@media (min-width: 640px) {
  .contact-card {
    padding: 2rem;
  }
}
.contact-card > h3 {
  font-size: 1.125rem;
}
.contact-rows {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-row {
  display: flex;
  gap: 1rem;
  transition: opacity 0.15s ease;
}
a.contact-row:hover {
  opacity: 0.85;
}
.contact-row .row-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-lg);
  background: var(--card);
  color: var(--brand);
  transition: all 0.2s ease;
}
a.contact-row:hover .row-icon {
  background: var(--brand);
  color: var(--brand-foreground);
}
.contact-row .row-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}
.contact-row .row-body {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contact-row .row-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.contact-row .row-value {
  margin-top: 0.125rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  overflow-wrap: break-word;
}
.contact-row .row-hint {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--muted) 80%, transparent);
}

.hours {
  margin-top: 1.75rem;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--card);
}
.hours-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg);
}
.hours-title svg {
  width: 1rem;
  height: 1rem;
  color: var(--brand);
}
.hours ul {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hours li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
}
.hours li span:first-child {
  color: var(--muted);
}
.hours li span:last-child {
  font-weight: 500;
  color: var(--fg);
}
.hours li.is-closed span:last-child {
  color: color-mix(in srgb, var(--muted) 70%, transparent);
}

/* Contact form */
.contact-form-card {
  padding: 1.75rem;
  border-radius: var(--radius-xl);
  background: var(--bg);
  box-shadow: var(--shadow-sm);
}
@media (min-width: 640px) {
  .contact-form-card {
    padding: 2rem;
  }
}
.contact-form-card h3 {
  font-size: 1.125rem;
}
.contact-form-card > p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.contact-form {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.field label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg);
}
.field input,
.field textarea {
  width: 100%;
  border: 0;
  background: color-mix(in srgb, var(--muted-bg) 50%, transparent);
  border-radius: var(--radius-sm);
  padding: 0.625rem 0.75rem;
  font-size: 0.9375rem;
  color: var(--fg);
  transition: background-color 0.15s ease, box-shadow 0.15s ease;
}
.field input::placeholder,
.field textarea::placeholder {
  color: color-mix(in srgb, var(--muted) 60%, transparent);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  background: var(--muted-bg);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--brand) 30%, transparent);
}
.field textarea {
  resize: none;
  min-height: 6rem;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.consent input {
  margin-top: 0.125rem;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  accent-color: var(--brand);
}

.form-error {
  display: none;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--destructive) 10%, transparent);
  font-size: 0.875rem;
  color: var(--destructive);
}
.form-error.is-visible {
  display: block;
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  padding-block: 2rem;
  min-height: 100%;
}
.form-success.is-visible {
  display: flex;
}
.form-success .success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: var(--brand-soft);
  color: var(--brand);
}
.form-success .success-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.form-success h3 {
  font-size: 1.5rem;
}
.form-success p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--muted);
}
.form-success p a {
  font-weight: 600;
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.form-success button {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.form-success button:hover {
  color: var(--brand);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg);
  padding-block: 3.5rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 5fr 3fr 4fr;
  }
}
.footer-brand p:first-child {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.footer-brand p:last-child {
  margin-top: 0.5rem;
  max-width: 20rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
}
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.footer-col ul {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem 1rem;
}
.footer-col a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--fg);
  transition: color 0.15s ease;
}
.footer-col a:hover {
  color: var(--brand);
}
.footer-col a svg {
  width: 1rem;
  height: 1rem;
  color: var(--brand);
}
.footer-col .muted {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.footer-col .muted svg {
  width: 1rem;
  height: 1rem;
  color: var(--brand);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.footer-bottom p {
  font-size: 0.75rem;
  color: var(--muted);
}

/* Patička — jeden nenápadný řádek s identifikačními údaji společnosti. */
.footer-company-details {
  margin-top: 1.25rem;
  padding: 0.875rem 0 0;
  border-top: 1px solid #f1f5f9;
}
.footer-company-details-line {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0.55rem;
  font-size: 0.6875rem;
  line-height: 1.55;
  color: #94a3b8;
}
.footer-company-details-line span + span::before {
  content: "·";
  margin-right: 0.55rem;
  color: #cbd5e1;
}

/* ---------- Utilities ---------- */
.is-hidden {
  display: none !important;
}

/* Spinner (loading) */
.spinner {
  display: none;
  animation: spin 0.8s linear infinite;
}
.spinner.is-visible {
  display: block;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
