:root {
  --bg: #f6f2eb;
  --surface: #ffffff;
  --surface-soft: #f1ebe2;
  --text: #18201b;
  --muted: #4a5a50;
  --accent: #1f6a4f;
  --accent-strong: #0d4e39;
  --line: #d7d0c4;
  --shadow: 0 20px 40px rgba(27, 36, 32, 0.1);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: min(1120px, 92vw);
  --space-section: clamp(4.75rem, 11vw, 6.4rem);
  --space-section-desktop: clamp(5.4rem, 8vw, 7.2rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% -5%, rgba(176, 214, 196, 0.34), transparent 35%),
    radial-gradient(circle at 90% 0, rgba(255, 196, 133, 0.24), transparent 28%),
    var(--bg);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -6rem;
  background: var(--accent-strong);
  color: #fff;
  padding: 0.65rem 0.8rem;
  border-radius: 0.5rem;
  z-index: 1000;
}

.skip-link:focus-visible {
  top: 0.75rem;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: var(--space-section) 0;
}

#pravidla.section {
  padding-top: clamp(3rem, 8vw, 4.2rem);
}

.section-surface {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.98));
  border-top: 1px solid rgba(215, 208, 196, 0.65);
  border-bottom: 1px solid rgba(215, 208, 196, 0.65);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 242, 235, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(215, 208, 196, 0.65);
}

.header-inner {
  min-height: 4.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: "Forum", serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  text-decoration: none;
}

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

.menu-toggle {
  position: relative;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(9, 32, 24, 0.18);
  background: #163126;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.menu-toggle-icon {
  display: grid;
  gap: 0.24rem;
}

.menu-toggle-icon span {
  display: block;
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.site-nav {
  position: absolute;
  top: calc(100% + 0.25rem);
  right: 4vw;
  left: 4vw;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0.6rem;
}

.site-nav a {
  display: block;
  text-decoration: none;
  padding: 0.6rem 0.7rem;
  border-radius: 0.7rem;
  font-weight: 400;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--surface-soft);
}

.site-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(33rem, 92vh, 52rem);
  padding: clamp(5.25rem, 10vh, 8rem) 0 clamp(3rem, 8vh, 5rem);
  background-color: #0f231a;
  background-size: cover;
  background-position: center;
}

.hero-layout {
  display: flex;
  align-items: center;
  min-height: clamp(24rem, 72vh, 44rem);
  padding-block: 1.1rem;
}

.hero-copy {
  background: linear-gradient(160deg, rgba(14, 54, 39, 0.9), rgba(23, 100, 73, 0.84));
  color: #f5f7f3;
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.55rem;
  box-shadow: var(--shadow);
  max-width: 44rem;
}

.hero-kicker {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  margin: 0 0 0.55rem;
  color: #c6e5d8;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
}

h1,
h2 {
  font-family: "Forum", serif;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2rem, 6.2vw, 4rem);
}

.hero-subtitle {
  margin: 0.95rem 0 0;
  max-width: 50ch;
}

.hero-highlights {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
}

.hero-highlights li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #d3eadf;
}

.hero-highlight-mark {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: #9bd5bc;
  box-shadow: 0 0 0 4px rgba(155, 213, 188, 0.24);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.btn {
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: #ecf6f1;
  color: #113729;
}

.section-header {
  margin-bottom: clamp(1.75rem, 4.2vw, 2.6rem);
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
  margin: 0 0 0.45rem;
  color: var(--accent);
}

.section-header h2 {
  font-size: clamp(1.55rem, 5vw, 2.45rem);
  max-width: 22ch;
}

.about-layout,
.features-layout,
.contact-layout {
  display: grid;
  gap: 1.2rem;
}

.about-copy p {
  margin: 0;
  color: var(--muted);
}

.about-copy p + p {
  margin-top: 0.85rem;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.1rem;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid #b8c7bf;
  background: #eef5f1;
  color: #164934;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.62rem 1rem;
}

.about-lead-media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: clip;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

.about-lead-media img {
  height: 100%;
  object-fit: cover;
}

.about-gallery-wrap {
  margin-top: 0;
}

.about-layout + .about-gallery-wrap {
  margin-top: 2.45rem;
}

.about-gallery-wrap + .about-gallery-wrap {
  margin-top: 3.15rem;
}

.about-subtitle {
  font-family: "Forum", serif;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.about-gallery {
  display: grid;
  gap: 0.9rem;
}

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

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

.about-gallery-item {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: clip;
  border: 1px solid rgba(215, 208, 196, 0.7);
}

.about-gallery-button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.about-gallery-exterior .about-gallery-item {
  aspect-ratio: 4 / 3;
}

.about-gallery-interior .about-gallery-item {
  aspect-ratio: 1 / 1;
}

.about-gallery-item img {
  height: 100%;
  object-fit: cover;
}

.feature-grid {
  display: grid;
  gap: 0.8rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.feature-card h3 {
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.feature-image {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: clip;
  min-height: 20rem;
  box-shadow: var(--shadow);
}

.feature-image img {
  height: 100%;
  object-fit: cover;
}

.technical-specs {
  margin-top: 1.75rem;
  background: #ecebec;
  border: 1px solid #ddd7d8;
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

.technical-specs-title {
  font-family: "Forum", serif;
  font-size: 1.25rem;
  margin: 0 0 0.9rem;
  color: #3c3842;
}

.spec-grid {
  display: grid;
  gap: 0.95rem;
}

.spec-card {
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  gap: 0.7rem;
  align-items: center;
}

.spec-icon {
  width: 2.6rem;
  height: 2.6rem;
  color: #988b8e;
}

.spec-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.spec-copy {
  min-width: 0;
}

.spec-label,
.spec-value {
  margin: 0;
  line-height: 1.2;
}

.spec-label {
  color: #8f8588;
  font-size: 0.95rem;
}

.spec-value {
  margin-top: 0.2rem;
  color: #202444;
  font-weight: 800;
  font-size: 1.08rem;
}

.van-equipment {
  margin-top: 1.35rem;
  background: #ecebec;
  border: 1px solid #ddd7d8;
  border-radius: var(--radius-lg);
  padding: 1.2rem;
}

.van-equipment-title {
  font-family: "Forum", serif;
  font-size: 1.3rem;
  margin: 0;
  color: #2e334f;
}

.van-equipment-intro {
  margin: 0.6rem 0 0;
  color: #68626e;
  max-width: 65ch;
}

.equipment-groups {
  display: grid;
  gap: 0.9rem;
  margin-top: 0.95rem;
}

.equipment-group {
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid #d5ced0;
  border-radius: var(--radius-md);
  padding: 0.85rem;
}

.equipment-group-title {
  margin: 0 0 0.7rem;
  color: #5e5865;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

.equipment-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.equipment-item {
  display: grid;
  grid-template-columns: 1.7rem 1fr auto;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0.55rem 0.6rem;
  border-radius: 0.7rem;
  border: 1px solid #ddd6d8;
  background: #fff;
}

.equipment-icon,
.equipment-check {
  width: 1.6rem;
  height: 1.6rem;
  color: #2c3150;
}

.equipment-icon svg,
.equipment-check svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.equipment-label {
  color: #222744;
  font-weight: 700;
  line-height: 1.25;
}

.equipment-check {
  color: #159d8a;
}

.equipment-toggle {
  margin-top: 0.95rem;
  border: 1px solid #b9b1b4;
  background: #fff;
  color: #232a49;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.equipment-toggle[aria-expanded="true"] {
  background: #f4f7f5;
}

.rules-panel {
  background: #ecebec;
  border: 1px solid #ddd7d8;
  border-radius: var(--radius-lg);
  padding: 1rem;
}

.rules-panel h2 {
  font-size: clamp(1.9rem, 6vw, 3.2rem);
  color: #202450;
}

.rules-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.1rem;
}

.rule-card {
  display: grid;
  grid-template-columns: 2.8rem 1fr;
  gap: 0.75rem;
  align-items: center;
  min-height: 5rem;
}

.rule-icon {
  width: 2.8rem;
  height: 2.8rem;
  color: #968b8e;
}

.rule-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rule-copy {
  min-width: 0;
}

.rule-label,
.rule-value {
  margin: 0;
  line-height: 1.14;
}

.rule-label {
  color: #91888c;
  font-size: 0.92rem;
}

.rule-value {
  color: #202450;
  font-size: clamp(1.08rem, 2.2vw, 1.22rem);
  font-weight: 800;
  margin-top: 0.25rem;
}

.rental-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.rental-step {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
}

.rental-step p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.rental-note,
.rental-future {
  margin: 1.25rem 0 0;
  padding-left: 0.85rem;
  border-left: 3px solid #bac8c0;
}

.rental-future {
  border-left-color: #92b3a3;
}

.fit-layout {
  display: grid;
  gap: 1rem;
}

.fit-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  padding: 1rem;
}

.fit-card h3 {
  font-size: 1.1rem;
}

.fit-card ul {
  margin: 0.65rem 0 0;
  padding-left: 1.1rem;
}

.fit-card li + li {
  margin-top: 0.5rem;
}

.fit-card-positive {
  border-top: 6px solid #2b7e5f;
}

.fit-card-negative {
  border-top: 6px solid #a86d4a;
}

.contact-copy p {
  margin: 0;
  color: var(--muted);
}

.contact-email {
  margin-top: 0.9rem;
  font-weight: 700;
}

.contact-email a {
  color: var(--accent-strong);
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
}

.field {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0.95rem;
}

.field label {
  font-weight: 700;
  font-size: 0.9rem;
}

.field input,
.field textarea {
  font: inherit;
  border: 1px solid #c6c0b5;
  border-radius: 0.7rem;
  padding: 0.7rem 0.75rem;
  background: #fff;
  color: var(--text);
}

.travel-intro {
  margin: 0 0 1.45rem;
  max-width: 66ch;
  color: var(--muted);
}

.travel-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.travel-gallery-item {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: clip;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow);
}

.travel-gallery-item img {
  height: 100%;
  object-fit: cover;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  padding: 1rem;
  background: rgba(7, 15, 12, 0.84);
  display: grid;
  place-items: center;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-shell {
  position: relative;
  width: min(92vw, 70rem);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.6rem;
}

.lightbox-figure {
  margin: 0;
  background: #0e1612;
  border: 1px solid rgba(228, 236, 232, 0.24);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.lightbox-figure img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #0e1612;
}

.lightbox-caption {
  padding: 0.65rem 0.85rem;
  color: #e9f3ef;
  font-size: 0.88rem;
  background: rgba(12, 24, 19, 0.92);
}

.lightbox-close,
.lightbox-nav {
  border: 0;
  color: #f3f8f5;
  background: rgba(12, 29, 22, 0.78);
  backdrop-filter: blur(8px);
}

.lightbox-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.lightbox-nav {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  font-size: 1.45rem;
  cursor: pointer;
}

.field input:focus-visible,
.field textarea:focus-visible,
.btn:focus-visible,
.menu-toggle:focus-visible,
.site-nav a:focus-visible,
.footer-link:focus-visible,
.about-gallery-button:focus-visible,
.about-cta:focus-visible,
.equipment-toggle:focus-visible,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  outline: 3px solid #8bbba6;
  outline-offset: 2px;
}

.contact-form .btn {
  border: 0;
  background: var(--accent);
  color: #fff;
}

.form-status {
  min-height: 1.2rem;
  margin: 0.7rem 0 0;
  color: var(--accent-strong);
  font-weight: 700;
}

.site-footer {
  padding: 3rem 0;
  border-top: 1px solid var(--line);
  background: #f0e8dd;
}

.footer-layout {
  display: grid;
  gap: 1.4rem;
}

.footer-brand {
  margin: 0;
  font-weight: 800;
}

.footer-copy {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.footer-legal {
  margin: 0.2rem 0 0;
  color: var(--muted);
}

.footer-link {
  align-self: start;
  font-weight: 700;
  color: var(--accent-strong);
}

@media (min-width: 48rem) {
  .section {
    padding: var(--space-section-desktop) 0;
  }

  #pravidla.section {
    padding-top: clamp(3.4rem, 5vw, 4.6rem);
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .site-nav ul {
    display: flex;
    gap: 0.2rem;
    padding: 0;
  }

  .hero {
    min-height: clamp(38rem, 94vh, 56rem);
  }

  .hero-layout {
    align-items: end;
    padding-block: 0;
  }

  .hero-copy {
    padding: 2rem;
  }

  .section-header h2 {
    max-width: none;
    width: 100%;
  }

  .about-layout,
  .features-layout,
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 2rem;
  }

  .about-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  .about-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    padding: 0.2rem 0.4rem 0.2rem 0;
  }

  .about-lead-media {
    aspect-ratio: 16 / 10;
    min-height: 22rem;
  }

  .about-layout + .about-gallery-wrap {
    margin-top: 3.1rem;
  }

  .about-gallery-wrap + .about-gallery-wrap {
    margin-top: 3.9rem;
  }

  .about-gallery-interior {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .technical-specs {
    margin-top: 2.2rem;
    padding: 1.6rem;
  }

  .van-equipment {
    margin-top: 1.6rem;
    padding: 1.6rem;
  }

  .rules-panel {
    padding: 1.6rem;
  }

  .rules-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.55rem 1.25rem;
    margin-top: 1.7rem;
  }

  .equipment-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem 0.8rem;
  }

  .spec-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 1.5rem;
    row-gap: 2rem;
  }

  .rental-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
  }

  .fit-layout,
  .footer-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.8rem;
  }

  .travel-gallery {
    display: block;
    column-count: 4;
    column-gap: 1.15rem;
  }

  .travel-gallery-item {
    display: inline-block;
    width: 100%;
    margin: 0 0 1.15rem;
    break-inside: avoid;
    aspect-ratio: auto;
  }

  .travel-gallery-item img {
    height: auto;
  }

  .lightbox {
    padding: 2rem;
  }

  .lightbox-shell {
    gap: 1rem;
  }

  .lightbox-nav {
    width: 2.8rem;
    height: 2.8rem;
  }
}

/* ─── Booking ────────────────────────────────────────────────────────────── */

.booking-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 48rem) {
  .booking-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* Kalendář */
.booking-calendar-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-calendar {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.booking-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.booking-cal-title {
  font-weight: 600;
  color: var(--text);
}

.booking-cal-nav {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--muted);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  line-height: 1;
}

.booking-cal-nav:hover {
  background: var(--surface-soft);
}

.booking-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
  gap: 2px;
}

.booking-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.booking-cal-pad {
  display: block;
}

.booking-cal-day {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border-radius: 6px;
  font-size: 0.82rem;
  color: var(--text);
}

.booking-cal-past {
  color: var(--line);
}

.booking-cal-approved {
  background: #c7372f;
  color: #fff;
}

.booking-cal-pending {
  background: #e07b20;
  color: #fff;
}

/* Legenda */
.booking-legend {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.booking-legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.booking-legend-item::before {
  content: "";
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 3px;
}

.booking-legend-approved::before { background: #c7372f; }
.booking-legend-pending::before  { background: #e07b20; }

/* Formulář */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-form-heading {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.25rem;
}

.booking-dates-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.booking-submit {
  width: 100%;
  margin-top: 0.5rem;
}

.booking-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.booking-status {
  font-size: 0.88rem;
  min-height: 1.2em;
}

.booking-status-success { color: var(--accent); }
.booking-status-error   { color: #c7372f; }
.booking-status-loading { color: var(--muted); }

.field-optional {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.85em;
}
