/* Story of Lights v45 -- design tokens and shared components.
 *
 * MOBILE-FIRST. The base rules ARE the 360px artboard
 * (`SOL Homepage Mobil.dc.html`); `min-width: 768px` and `min-width: 1280px`
 * layer the wider artboards on top of it.
 *
 * Written this way round on purpose. 93 % of the audience is on a phone, and
 * in a desktop-first sheet the phone layout exists only as a pile of
 * `max-width` exceptions -- an exception you forget to write is a bug that is
 * invisible on the machine you are building on. Here the phone is the default
 * and the desktop is the addition, so nothing can be left undefined for it.
 *
 * Namespaced under .sol-, and no rule uses !important: the v42p post-mortem
 * found the old stack unfixable precisely because four CSS generations were
 * overriding each other with !important.
 */

/* ---------------------------------------------------------------- tokens */

:root {
  /* brand */
  --sol-black: #0a0908;
  --sol-black-2: #111010;
  --sol-gold: #c4a148;
  --sol-gold-light: #e2d0a3;
  --sol-gold-route: #e3bd72;
  --sol-gold-rule: #c9ad6b;
  --sol-gold-card: #cdb681;
  --sol-gold-bar: #cbb072;
  --sol-gold-save: #b4a06a;

  /* neutrals */
  --sol-white: #ffffff;
  --sol-grey-1: #afb0b0;
  --sol-grey-2: #8d8e8e;
  --sol-grey-3: #c6c7c7;
  --sol-grey-4: #6f6a60;
  --sol-grey-5: #4a4a48;
  --sol-grey-6: #6f7070;
  --sol-ink: #1c1a16;
  --sol-hairline: #d9d9d9;
  --sol-card-line: #d9d5cd;
  --sol-rule: #e5dfd2;
  --sol-border-nav: #2a2723;
  --sol-border-menu: #23211d;
  --sol-border-lang: #4a453c;

  /* beige blocks */
  --sol-beige-pass: #f7f2e9;
  --sol-beige-info: #f7f1e6;
  --sol-beige-faq: #f2ead8;

  /* hero */
  --sol-label: #ede3c8;
  --sol-hero-text: #b8b3a8;
  --sol-hero-strong: #d8d3c8;

  /* layout -- design batch 29. 8. (SYNC 2026-08-27/2): the grid fills the
   * 1196 content width: 4 x 284 + 3 x 20 = 1196; five per row (1500) from
   * 1700 up. */
  --sol-container: 1196px;
  --sol-grid: 1196px;
  --sol-card: 284px;
  --sol-gap: 20px;

  /* mobile grid: 24 + 153 + 6 + 153 + 24 = 360, exactly the artboard */
  --sol-pad: 24px;

  /* Poppins, not New Atten. The Adobe Fonts kit for new-atten is published
   * without the Central European set: a/e/o come from the kit but c d e l n r
   * s t u z with diacritics, Hungarian o/u double-acute and Croatian c/d do
   * not, so the browser silently substituted a system font mid-word and every
   * Czech word rendered half in one face and half in another. Measured, not
   * guessed -- 17 of 20 test characters were missing. The typeface itself can
   * do Czech; the kit cannot. CTO ruling 2026-08-26: ship Poppins. Switching
   * back is one line once the kit is republished with CE support. */
  --sol-font: "Poppins", sans-serif;
}

/* ------------------------------------------------------------------ base */

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

body {
  margin: 0;
  background: var(--sol-white);
  font-family: var(--sol-font);
  color: var(--sol-grey-2);
  -webkit-font-smoothing: antialiased;
  /* Nothing may scroll sideways on a phone. If a child ever exceeds the
   * viewport this clips it instead of handing the user a broken page. */
  overflow-x: hidden;
}

a { color: var(--sol-gold); text-decoration: none; }
a:hover { color: var(--sol-gold-light); }

/* One visible focus ring everywhere. The design package had none, which is a
 * hard-fail item in the accessibility contract. */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--sol-gold);
  outline-offset: 2px;
}

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

.sol-wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--sol-pad);
}

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

/* --------------------------------------------------------------- buttons */

.sol-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 14px;
  border-radius: 1px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.03em;
  white-space: nowrap;
  position: relative;
  transition: background-color .2s ease, color .2s ease;
}

/* Keeps the visual button at the artboard's size while giving touch input the
 * 44px target the accessibility contract requires. The artboard's own buttons
 * are 17-22px tall, which is roughly half of what a thumb needs. */
.sol-btn::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 44px;
  transform: translateY(-50%);
}

.sol-btn--ghost {
  border: 0.5px solid var(--sol-gold);
  color: var(--sol-gold);
  background: transparent;
}
a.sol-btn--ghost:hover { background: var(--sol-gold); color: var(--sol-black); }

.sol-btn--solid {
  background: var(--sol-gold);
  color: var(--sol-white);
  border: 0.5px solid var(--sol-gold);
}
a.sol-btn--solid:hover { background: var(--sol-gold-light); color: var(--sol-black); }

/* Tickets are never live this season -- the ghost state is the product, not a
 * placeholder. Rendered as <span>, so it is not focusable or clickable.
 *
 * The mobile artboard draws this one solid gold, the desktop artboard and the
 * content lock both say ghost. Ghost wins: the package's own HANDOFF marks the
 * mobile file "nejmene odladene", and a disabled control that looks exactly
 * like the primary call to action is a tap people make once and resent. */
/* Grey, not gold: gold is what the site uses for things you can act on, and a
 * dead control wearing the same colour reads as a button that is simply not
 * responding. WCAG's contrast minimum does not apply to inactive controls, and
 * being visibly muted is the whole point here. */
.sol-btn--soon {
  border: 0.5px solid var(--sol-grey-2);
  color: var(--sol-grey-2);
  background: transparent;
  cursor: default;
}

.sol-btn--wide { width: 154px; }
.sol-btn--w171 { width: 171px; height: 24px; }

/* ----------------------------------------------------------- contact bar */

.sol-contact {
  background: var(--sol-black);
  border-bottom: 1px solid rgba(196, 161, 72, .28);  /* hard rule: gold hairline, never grey */
}
/* Batch 29. 8.: "Poradíme" left, phone | e-mail right, gold 1x12 divider. */
.sol-contact .sol-wrap {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 10px;
  font-weight: 300;
  padding-left: 15px;
  padding-right: 15px;
}
.sol-contact__note { color: var(--sol-grey-2); letter-spacing: .04em; white-space: nowrap; }
.sol-contact__links { display: flex; align-items: center; gap: 8px; }
.sol-contact__links a { font-size: 11px; font-weight: 400; color: var(--sol-gold-light); white-space: nowrap; }
.sol-contact__sep { width: 1px; height: 12px; background: rgba(196, 161, 72, .45); display: block; }
.sol-contact__note-full { display: none; }
.sol-contact__note-short { display: inline; }

/* ------------------------------------------------------------------- nav */

.sol-head { background: var(--sol-black); }

/* Design batch 29. 8.: ONE header row on the phone -- logo 96, then the
 * mutation box + language box, hamburger 32 with its MENU microlabel on the
 * right. The separate mutation strip is gone; flex order rearranges the DOM
 * (logo, burger, nav, right) into the artboard's order. */
.sol-head .sol-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 15px;
  padding-right: 15px;
  row-gap: 10px;
}
.sol-head__logo { order: 1; flex: none; }
.sol-head__logo img { width: 96px; height: auto; }

.sol-burger {
  order: 3;
  flex: none;
  box-sizing: border-box;
  width: 32px;
  height: 32px;
  padding: 6px 7px 4px;
  background: none;
  border: 0.25px solid #4a453c;
  border-radius: 1px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  cursor: pointer;
}
.sol-burger__bars {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: flex-end;
}
.sol-burger__bars span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--sol-gold);
}
.sol-burger__bars span:nth-child(2) { width: 72%; }
.sol-burger__label {
  display: block;
  font-size: 5px;
  font-weight: 500;
  letter-spacing: .18em;
  color: var(--sol-gold);
  text-align: center;
  line-height: 6px;
}

.sol-head__right {
  order: 2;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Five codes in one bordered box, the active one filled gold. */
.sol-langs {
  display: flex;
  align-items: stretch;
  height: 32px;
  box-sizing: border-box;
  border: 0.25px solid var(--sol-border-lang);
  border-radius: 1px;
}
.sol-langs a {
  position: relative;
  width: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 400;
  color: var(--sol-grey-1);
}
.sol-langs a::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 44px;
  transform: translateY(-50%);
}
.sol-langs a[aria-current="true"] {
  background: var(--sol-gold);
  color: var(--sol-white);
  font-weight: 500;
}

/* The visible chip is the dropdown BUTTON (v9 block below); this wrapper only
 * positions the panel. Giving it its own border drew a second frame poking out
 * left and right of the button (CTO 27. 8.: "jednoduchý rámeček"). */
.sol-langname {
  display: inline-flex;
  align-items: center;
}

/* The header CTA belongs to the 1280 artboard only. On a phone the same
 * message sits in the hero, 300px further down. */
.sol-head__right .sol-btn { display: none; }

.sol-nav {
  order: 4;
  width: 100%;
  display: none;
}
.sol-nav[data-open="true"] { display: block; }
.sol-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;          /* artboard row is 27px; a thumb needs 44 */
  font-size: 11px;
  font-weight: 400;
  color: var(--sol-white);
  letter-spacing: 0.04em;
  border-bottom: 0.25px solid var(--sol-border-menu);
}
.sol-nav a:last-child { border-bottom: 0; }
.sol-nav a:hover { color: var(--sol-gold-light); }

/* ------------------------------------------------------- media partners */

.sol-media {
  background: var(--sol-black);
  border-top: 0.25px solid var(--sol-white);
  padding: 12px var(--sol-pad) 16px;
}
.sol-media__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sol-media__label,
.sol-media__all {
  font-size: 7.5px;
  font-weight: 400;
  color: var(--sol-white);
  letter-spacing: 0.1em;
}
.sol-media__all { display: inline-flex; align-items: center; gap: 5px; }
/* The two artboards use different chevrons -- >>> on the phone, a single
 * guillemet on the desktop. Both live in the template and CSS picks one; the
 * guillemet used to sit inside the translated string, so the phone drew both. */
/* Centring the boxes is not the same as centring the marks. The chevrons draw
 * entirely above the baseline and much shorter than a capital, so with the
 * boxes aligned their ink sits 3px below the label's optical centre. Measured
 * from the font's own ink metrics, not eyeballed. */
.sol-media__chev {
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.02em;
  transform: translateY(-1.5px);
}
.sol-media__chev--d { display: none; }

/* The artboard lists the partners as plain text because it had no logo files.
 * We have the real marks, so they are used -- small, greyed, evenly spread. */
.sol-media__logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.sol-media__logos img { height: 11px; width: auto; opacity: .85; }

/* ------------------------------------------------------------- headings */

.sol-h2 {
  margin: 0;
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  color: var(--sol-gold);
}
.sol-h2--sub { font-size: 20px; line-height: 26px; }

.sol-lead {
  margin: 12px auto 0;
  max-width: 640px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 300;
  color: var(--sol-grey-2);
}
.sol-lead b,
.sol-lead strong { font-weight: 600; }

/* Full-bleed hairline between sections, the way the artboard separates them. */
/* Android Chrome font boosting inflated absolutely-positioned labels on real
 * Samsungs (the emulator never boosts) -- the standard reset switches it off. */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.sol-rule {
  width: 100%;
  max-width: none;
  height: 0.25px;
  background: var(--sol-grey-2);
  border: 0;
  margin: 26px 0;              /* CD mobile: sections breathe around the rule */
}
.sol-rule--wide { margin: 28px 0; }

/* ---------------------------------------------------------------- social */

.sol-social__lead {
  margin: 14px 0 0;
  font-size: 12px;
  font-weight: 300;
  color: var(--sol-grey-2);
}


/* No border-top: the section already follows a .sol-rule -- together they
 * drew a double line above the heading (CTO 27. 8.). */
.sol-social {
  background: var(--sol-white);
  text-align: center;
  padding: 0 var(--sol-pad) 30px;
}
.sol-social__icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-top: 14px;
}
.sol-social__icons img { width: auto; }

/* ---------------------------------------------------------- compass band */

.sol-compass {
  background: var(--sol-black);
  position: relative;
  overflow: hidden;
}
.sol-compass__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 30px var(--sol-pad);
  text-align: center;
}
.sol-compass__img { width: 150px; height: 150px; }
.sol-compass__inner .sol-btn { margin-top: 14px; }
.sol-compass__h {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 500;
  color: var(--sol-gold);
}
.sol-compass__sub {
  margin: 8px 0 0;
  font-size: 11px;
  font-weight: 300;
  color: var(--sol-grey-3);
}
.sol-compass__cities {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
  line-height: 2;
  font-weight: 400;
}
.sol-compass__cities ul { margin: 0; padding: 0; list-style: none; }
.sol-compass__cities a { display: block; color: var(--sol-white); }
.sol-compass__cities a:hover { color: var(--sol-gold-light); }

/* ---------------------------------------------------------------- footer */

.sol-foot {
  background: var(--sol-black);
  border-top: 0.5px solid var(--sol-gold);
  padding-top: 26px;
}
/* One line like the CD file. The li itself needs the link typography too:
 * its raw " · " text node otherwise takes the ul's inherited size and grows
 * the line box past the neighbouring rows (beta review 28. 8.). */
.sol-foot__pair { white-space: nowrap; font-size: 11px; line-height: 26px; }
.sol-foot__top { display: block; }
.sol-foot__brand { text-align: center; }
.sol-foot__brand img { width: 72px; height: auto; margin: 6px auto 0; }
.sol-foot__tag {
  margin: 16px 0 0;
  font-size: 10px;
  line-height: 20px;
  font-weight: 400;
  color: var(--sol-grey-2);
  text-align: center;
}
.sol-foot__tag b { font-weight: 600; color: inherit; }
.sol-foot__mail {
  margin: 14px 0 0;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
}
.sol-foot__mail a { color: var(--sol-white); }

/* Two columns: about + visitors stack on the left, the thirteen parks run down
 * the right. The parks block is first in the DOM (it is the useful one for a
 * screen reader) so it is placed explicitly and the rest flows around it. */
.sol-foot__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
  margin-top: 34px;
  padding: 0 10px;
}
.sol-foot__col--parks { grid-column: 2; grid-row: 1 / span 2; }
.sol-foot__col + .sol-foot__col { margin-top: 0; }
/* The 26px gap applies only when about+visitors stack under each other next to
 * the parks column. Park pages render the footer without the parks column, the
 * two blocks sit side by side, and the unscoped rule pushed the right heading
 * 26px lower (Martina, 28. 8.). */
.sol-foot__col--parks ~ .sol-foot__col + .sol-foot__col { margin-top: 26px; }
.sol-foot__col h3 {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--sol-gold);
  letter-spacing: 0.06em;
}
.sol-foot__col ul { margin: 0; padding: 0; list-style: none; }
.sol-foot__col a,
.sol-foot__col span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  line-height: 26px;
  color: var(--sol-grey-2);
}
.sol-foot__col a:hover { color: var(--sol-gold-light); }
.sol-foot__pair a { display: inline; }
.sol-foot__parks { display: block; }

.sol-foot__bottom {
  border-top: 0.5px solid var(--sol-gold);
  margin: 26px 10px 0;
  padding: 12px 0 20px;
  text-align: center;
  font-size: 7px;
  font-weight: 300;
  color: var(--sol-grey-2);
}
.sol-foot__bottom p { margin: 0; }
.sol-foot__bottom p + p { margin-top: 3px; }

/* Language notice on the not-yet-translated mutations. */
.sol-langnote {
  margin: 0;
  padding: 9px var(--sol-pad);
  background: var(--sol-beige-faq);
  border-bottom: .5px solid var(--sol-gold-card);
  text-align: center;
  font-size: 11px;
  font-weight: 300;
  color: var(--sol-grey-4);
}

/* ===================================================== tablet -- 768 up */

@media (min-width: 768px) {
  /* DESKTOP layer (v9): one 1280 artboard from 768 up; the page
   * wrapper zooms it below 1280 (see the zoom band in sol.css). */

  .sol-contact .sol-wrap {
    min-height: 26px;
    gap: 18px;
    font-size: 9.5px;
    font-weight: 400;
  }
  .sol-contact__note { color: var(--sol-grey-1); }
  .sol-contact a { color: var(--sol-gold-light); }
  .sol-contact__mail { display: inline; }

  .sol-head .sol-wrap { padding-top: 16px; padding-bottom: 14px; }
  .sol-head__logo img { width: 150px; }

  .sol-media { padding: 14px var(--sol-pad) 18px; }
  .sol-media__logos { justify-content: center; gap: 34px; margin-top: 14px; }
  .sol-media__logos img { height: 14px; }
  .sol-media__label, .sol-media__all { font-size: 8px; }

  .sol-h2 { font-size: 30px; line-height: 1.2; }
  .sol-h2--sub { font-size: 26px; }
  .sol-lead { font-size: 14px; line-height: 1.55; margin-top: 18px; }

  .sol-social { padding-bottom: 48px; }
  .sol-social__icons { gap: 34px; margin-top: 20px; }

  .sol-compass__inner {
    flex-direction: row;
    justify-content: center;
    gap: 44px;
    min-height: 220px;
    text-align: left;
  }
  .sol-compass__img { width: 190px; height: 190px; margin-bottom: -70px; }
  .sol-compass__inner .sol-btn { margin-top: 14px; }
.sol-compass__h { font-size: 24px; }
  .sol-compass__cities { flex-direction: row; gap: 46px; line-height: 1.85; }

  .sol-foot__cols { grid-template-columns: repeat(3, 1fr); gap: 0 34px; }
  .sol-foot__col--parks { grid-column: 3; grid-row: 1; }
  .sol-foot__col--parks ~ .sol-foot__col + .sol-foot__col { margin-top: 0; }


  /* --- former 1280 layer, now part of the single desktop layer --- */

  .sol-wrap { padding: 0 max(24px, calc(50% - 598px)); }

  .sol-contact { border-bottom-color: rgba(196, 161, 72, .28); }
  .sol-contact .sol-wrap { min-height: 28px; gap: 22px; font-size: 10px; font-weight: 300; }
  .sol-btn { font-size: 11px; letter-spacing: .04em; padding: 0 16px; }
  .sol-btn--wide { padding: 0; }
  .sol-btn--w171 { padding: 0; }

  /* Back to a single row: logo, full nav, languages, CTA. */
  .sol-head .sol-wrap {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 34px;
    height: 70px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: max(24px, calc(50% - 598px));
    padding-right: max(24px, calc(50% - 598px));
  }
  /* neutralise the phone's flex order: desktop reads in DOM order again
   * (logo, nav, right) */
  .sol-head__logo { order: 0; }
  .sol-head__logo img { width: auto; height: 46px; }
  .sol-nav { order: 0; width: auto; }
  .sol-head__right { order: 0; gap: 12px; }
  .sol-burger { display: none; }

  .sol-nav {
    display: flex;
    gap: 24px;
    align-items: center;
    flex: 1;
  }
  .sol-nav a {
    min-height: 0;
    font-size: 12px;
    border-bottom: 0;
  }

  .sol-head__right { display: flex; align-items: center; gap: 12px; }
  .sol-head__right .sol-btn { display: inline-flex; padding: 0 12px; }
  /* the frame lives on the button alone (v9 dropdown block) */

  /* component: every chip is a 24px box, active only swaps colours */
  .sol-langs { height: auto; border: 0; gap: 12px; }
  .sol-langs a {
    width: auto;
    min-width: 24px;
    height: 24px;
    padding: 0 3px;
    box-sizing: border-box;
    border-radius: 1px;
    font-size: 12px;
    font-weight: 400;
  }
  .sol-langs a[aria-current="true"] { font-weight: 400; }

  .sol-media {
    border-top: 0;
    min-height: 49px;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 38px;
  }
  .sol-media__row { display: contents; }
  .sol-media__logos { display: contents; }
  /* per-logo artboard heights via the --h custom property from the markup */
  .sol-media__logos img { height: var(--h, 16px); order: 2; }
  .sol-media__label, .sol-media__all { color: var(--sol-gold); letter-spacing: 0.14em; font-weight: 300; }
  .sol-media__label { order: 1; }
  .sol-media__all { order: 3; }
  .sol-media__chev--m { display: none; }
  .sol-media__chev--d { display: inline; font-size: inherit; transform: none; }

  .sol-h2 { font-size: 34px; }
  .sol-h2--sub { font-size: 32px; }
  .sol-lead { margin-top: 22px; font-size: 17px; line-height: 1.5; }

  .sol-rule {
    width: 560px;
    max-width: 80%;
    height: 0.5px;
    background: var(--sol-hairline);
    margin: 58px auto;
  }
  .sol-rule--wide { width: 900px; margin: 48px auto; }

  .sol-social { padding-bottom: 70px; border-top: 0; }
  .sol-social__icons { gap: 44px; margin-top: 22px; }

  .sol-compass__inner { max-width: 1280px; margin: 0 auto; gap: 44px; padding: 24px; }
  .sol-compass__inner .sol-btn { margin-top: 14px; }
.sol-compass__h { font-size: 26px; }
  .sol-compass--wide .sol-compass__inner { min-height: 330px; justify-content: flex-start; gap: 70px; }
  /* CD file: the compass bleeds -- 30px below the band's top edge, cropped
   * 120px at the bottom by the section's overflow. The negative bottom margin
   * keeps the flex row at the design's 330px, not at the image's 420px. */
  .sol-compass--wide .sol-compass__img {
    width: 420px; height: 420px; flex: none;
    align-self: flex-start;
    margin: 6px 0 -144px -60px;
  }
  .sol-compass__cities { gap: 56px; font-size: 14px; }

  .sol-foot {
    background: var(--sol-black-2);
    border-top: 0.5px solid var(--sol-gold);
    padding-top: 52px;
  }
  .sol-foot__top {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .sol-foot__brand { text-align: left; width: 463px; flex: none; }
  .sol-foot__brand img { width: 200px; margin: 0; }
  .sol-foot__tag { text-align: left; margin-top: 26px; font-size: 11.5px; line-height: 2; font-weight: 300; color: var(--sol-grey-1); }
  /* Shown on desktop too in v7 -- gold, under the tagline. */
  .sol-foot__mail { margin: 24px 0 0; text-align: left; font-size: 11.5px; }
  .sol-foot__mail a { color: var(--sol-gold); }

  .sol-foot__cols {
    display: flex;
    flex: 1;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 0;
    padding: 0;
    gap: 0;
  }
  .sol-foot__col h3 { margin-bottom: 14px; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; }
  .sol-foot__col a, .sol-foot__col span {
    font-size: 10px;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 10px;
    color: var(--sol-grey-1);
  }
  .sol-foot__pair a { display: inline; }
  .sol-foot__pair { font-size: 10px; line-height: 1.5; margin-bottom: 10px; }
  .sol-foot__col--parks { width: 280px; flex: none; }
  .sol-foot__parks { display: flex; gap: 44px; }
  .sol-foot__parks ul { width: 110px; flex: none; }
  /* Both columns start on Praha's line (beta review 28. 8.). */
  .sol-foot__parks ul:nth-child(2) { width: 116px; }
  .sol-foot__col:not(.sol-foot__col--parks) { width: 184px; flex: none; }
  .sol-foot__col:last-child { width: auto; }

  .sol-foot__bottom {
    margin: 44px 0 0;
    padding: 16px 0 20px;
    font-size: 9px;
    color: var(--sol-grey-1);
  }
  .sol-foot__bottom p + p { margin-top: 4px; color: var(--sol-grey-6); }

}


@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms; animation-iteration-count: 1; transition-duration: 0.01ms; }
}

/* ================================================================== v9 == */
/* Deltas of the final responsive package (9). Appended last on purpose --
 * the cascade lets them override the merged desktop layer above without
 * touching it, which keeps the diff reviewable. */

/* --------------------------------------------------------- zoom scaling */
/* The v9 model: one 1280 artboard from 768 up, proportionally scaled below
 * 1280 via the (now standardised) `zoom` property. Stepped fallback first;
 * browsers that understand number division in calc() get the exact ratio. */
@media (min-width: 768px) and (max-width: 1279px) {
  html { overflow-x: hidden; }
  body { width: 1280px; zoom: 0.6; }
}
@media (min-width: 832px)  and (max-width: 1279px) { body { zoom: 0.65; } }
@media (min-width: 896px)  and (max-width: 1279px) { body { zoom: 0.70; } }
@media (min-width: 960px)  and (max-width: 1279px) { body { zoom: 0.75; } }
@media (min-width: 1024px) and (max-width: 1279px) { body { zoom: 0.80; } }
@media (min-width: 1088px) and (max-width: 1279px) { body { zoom: 0.85; } }
@media (min-width: 1152px) and (max-width: 1279px) { body { zoom: 0.90; } }
@media (min-width: 1216px) and (max-width: 1279px) { body { zoom: 0.95; } }
/* CTO 26. 8.: above 1280 the artboard scales UP too -- the layout viewport
 * stays 1280 and the design fills any monitor instead of floating tiny in
 * the middle. Steps for engines without calc() zoom, exact ratio below. */
@media (min-width: 1360px) and (max-width: 1439px) { body { zoom: 1.05; } }
@media (min-width: 1440px) and (max-width: 1535px) { body { zoom: 1.12; } }
@media (min-width: 1536px) and (max-width: 1663px) { body { zoom: 1.20; } }
@media (min-width: 1664px) and (max-width: 1791px) { body { zoom: 1.30; } }
@media (min-width: 1792px) and (max-width: 1919px) { body { zoom: 1.40; } }
@media (min-width: 1920px) and (max-width: 2199px) { body { zoom: 1.50; } }
@media (min-width: 2200px) and (max-width: 2559px) { body { zoom: 1.72; } }
@media (min-width: 2560px) { body { zoom: 2; } }
@media (min-width: 1280px) {
  @supports (zoom: calc(2 / 2)) {
    body { zoom: calc(100vw / 1280px); }
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  @supports (zoom: calc(2 / 2)) {
    body { zoom: calc(100vw / 1280px); }
  }
}

/* -------------------------------------------------------- contact bar v9 */
.sol-contact { border-bottom: 1px solid rgba(196, 161, 72, .28); }

@media (min-width: 768px) {
  /* desktop keeps the full sentence, right-aligned, no divider */
  .sol-contact { border-bottom: 1px solid rgba(196, 161, 72, .28); }
  .sol-contact .sol-wrap {
    min-height: 28px;
    justify-content: flex-end;
    gap: 22px;
    font-size: 10px;
    font-weight: 300;
    padding-left: max(24px, calc(50% - 598px));
    padding-right: max(24px, calc(50% - 598px));
  }
  .sol-contact__note { color: var(--sol-grey-1); white-space: normal; letter-spacing: 0; }
  .sol-contact__links { gap: 22px; }
  .sol-contact__links a { font-size: 10px; font-weight: 300; color: var(--sol-gold-light); }
  .sol-contact__sep { display: none; }
  .sol-contact__note-full { display: inline; }
  .sol-contact__note-short { display: none; }
}

/* --------------------------------------------------------------- nav v9 */
@media (min-width: 768px) {
  .sol-nav { gap: 25px; }
  .sol-nav a { font-size: 12px; font-weight: 300; color: var(--sol-gold-light); }
  .sol-nav a:hover { color: var(--sol-gold); }
  /* header CTA (batch 29. 8.): solid gold, black text, darker gold on hover
   * -- VYBRAT PARK on the homepage, VSTUPENKY -> #cenik on Czech parks */
  .sol-head__right .sol-btn--head-parks {
    background: var(--sol-gold);
    border: 0.5px solid var(--sol-gold);
    color: var(--sol-black);
    height: 22px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .04em;
    padding: 0 14px;
    white-space: nowrap;
  }
  .sol-head__right .sol-btn--head-parks:hover {
    background: #b18f38;
    border-color: #b18f38;
    color: var(--sol-black);
  }
}
/* 768-999: the desktop layout keeps the burger; full nav from 1000 up. */
@media (min-width: 768px) and (max-width: 999px) {
  /* compact tablet burger per the Hlavicka desktop component: 38x38,
   * gold bars in a #4a453c frame, MENU microlabel 5.5px, sitting right
   * after the logo (audit 29. 8. -- it rendered at the far right) */
  .sol-head .sol-wrap { position: relative; justify-content: flex-start; }
  .sol-head__right { margin-left: auto; }
  .sol-burger {
    order: 0;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    width: 38px;
    height: 38px;
    padding: 7px 8px 5px;
    background: none;
    border: 0.25px solid #4a453c;
    border-radius: 1px;
    cursor: pointer;
  }
  .sol-burger__bars { gap: 4px; }
  .sol-burger__label { font-size: 5.5px; }
  /* panel opens 4px under the burger, aligned to it -- the burger sits at
   * logo width (~150px on the 1280 artboard) + 34px gap from the wrap edge */
  .sol-nav {
    display: none;
    position: absolute;
    left: max(24px, calc(50% - 598px));
    margin-left: 184px;
    top: 58px;
    min-width: 210px;
    background: #141310;
    border: 0.5px solid var(--sol-border-lang);
    border-radius: 2px;
    padding: 6px 0;
    z-index: 70;
    flex-direction: column;
    gap: 0;
  }
  .sol-nav[data-open="true"] { display: flex; }
  .sol-nav a { min-height: 0; padding: 7px 14px; border-bottom: 0; }
}

/* v9 back item on park pages: light-gold with a left triangle */
.sol-nav__back { display: inline-flex; align-items: center; gap: 6px; }
.sol-nav__tri {
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 5px solid var(--sol-gold-light);
}

/* ------------------------------------------------- language dropdown v9 */
.sol-langname { position: relative; display: inline-flex; }
/* Phone shows just the CODE in a 32px box (batch 29. 8.); the full language
 * name returns on the desktop button below. */
.sol-langname__btn {
  font-family: inherit;
  box-sizing: border-box;
  height: 32px;
  padding: 0 6px;
  border: 0.25px solid #4a453c;
  border-radius: 1px;
  background: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 400;
  color: var(--sol-grey-1);
  cursor: pointer;
}
.sol-langname__full { display: none; }
.sol-langname__code { display: inline; }
.sol-langname__caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--sol-grey-1);
}
.sol-langname__panel {
  position: absolute;
  right: 0;
  top: 36px;                       /* 32px button + 4px gap on the phone */
  min-width: 110px;
  background: #141310;
  border: 0.5px solid var(--sol-border-lang);
  border-radius: 2px;
  padding: 4px 0;
  z-index: 70;
}
.sol-langname__panel a {
  display: block;
  padding: 5px 9px;
  font-size: 10px;
  font-weight: 300;
  white-space: nowrap;
  color: var(--sol-grey-1);
}
.sol-langname__panel a.is-current { background: var(--sol-gold); color: var(--sol-white); }
.sol-langname__panel a:hover { color: var(--sol-gold-light); }
@media (min-width: 768px) {
  .sol-langname { display: inline-flex; }
  .sol-langname__btn {
    width: 90px;
    height: 22px;
    padding: 0;
    justify-content: center;
    gap: 6px;
    border: 0.5px solid var(--sol-grey-1);
    font-size: 10px;
    font-weight: 300;
  }
  .sol-langname__full { display: inline; }
  .sol-langname__code { display: none; }
  .sol-langname__panel { top: 26px; }        /* 22px button + 4px gap */
}

/* ------------------------------------------------------ grey ghost (v9) */
.sol-btn--soon {
  border-color: #b9baba;
  color: #a8a9a9;
}

/* solid gold sales button (batch 29. 8.: Czech parks sell, white label) */
.sol-btn--tickets {
  background: var(--sol-gold);
  border: .25px solid var(--sol-gold);
  color: var(--sol-white);
  font-weight: 500;
}
.sol-btn--tickets:hover {
  background: #b18f38;
  border-color: #b18f38;
  color: var(--sol-white);
}

/* CTO 27. 8.: media partners on ONE row on phones; safe center keeps it
 * centred and falls back to scroll from the start when it overflows */
@media (max-width: 767px) {
  .sol-media__logos {
    display: flex;
    flex-wrap: nowrap;
    justify-content: safe center;
    align-items: center;
    gap: 14px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .sol-media__logos::-webkit-scrollbar { display: none; }
  .sol-media__logos img { height: 10px; width: auto; flex: none; }
}

/* ------------------------------------------------ consent bar (29. 8.) */
#sol-consent {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: #141310;
  border-top: 1px solid rgba(196, 161, 72, .28);
  padding: 14px max(24px, calc(50% - 598px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
#sol-consent p {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  font-weight: 300;
  color: var(--sol-grey-1);
  max-width: 760px;
}
#sol-consent a { color: var(--sol-gold); }
.sol-consent__btns { display: flex; gap: 10px; flex: none; }
.sol-consent__btns button {
  font-family: inherit;
  height: 34px;
  padding: 0 18px;
  border-radius: 2px;
  font-size: 12px;
  letter-spacing: .04em;
  cursor: pointer;
}
.sol-consent__all {
  background: var(--sol-gold);
  border: .5px solid var(--sol-gold);
  color: var(--sol-black);
  font-weight: 500;
}
.sol-consent__all:hover { background: #b18f38; border-color: #b18f38; }
.sol-consent__nec {
  background: none;
  border: .5px solid var(--sol-grey-2);
  color: var(--sol-grey-1);
  font-weight: 300;
}
.sol-consent__nec:hover { color: var(--sol-gold-light); border-color: var(--sol-grey-1); }
@media (max-width: 767px) {
  #sol-consent { padding: 12px 15px; }
  #sol-consent p { font-size: 11px; }
  .sol-consent__btns { width: 100%; }
  .sol-consent__btns button { flex: 1; height: 40px; }
}
