/*
Theme name: tcl-hypoteky-2026
Author: The Coding Llama
Author URI: https://www.thecodingllama.cz
Description: Šablona pro Hypotéky 2026
Version: 1.4
License: GNU General Public License v2 or later

==============================================================================
HYPOTEKY 2026 – Koncept CSS 2026
Struktura: Design Tokens → Base → Layout → Sections → Utilities → Responsive
==============================================================================
*/

/* ==========================================================================
   1. DESIGN TOKENS – Proměnné a fonty
   ========================================================================== */

/* --- 1.1 Fonty --- */
@font-face {
  font-family: "Base Neue";
  src: url("assets/fonts/BaseNeue-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Base Neue";
  src: url("assets/fonts/BaseNeue-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Base Neue";
  src: url("assets/fonts/BaseNeue-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Base Neue";
  src: url("assets/fonts/BaseNeue-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Base Neue Condensed";
  src: url("assets/fonts/BaseNeue-CondensedMedium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Base Neue Expanded";
  src: url("assets/fonts/BaseNeue-ExpandedBold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Base Neue Wide";
  src: url("assets/fonts/BaseNeue-WideExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* --- 1.2 CSS Variables (Design Tokens) --- */
:root {
  /* Barvy */
  --color-mint: #dcffbb;
  --color-mint-light: #caff97;
  --color-white: #ffffff;
  --color-dark-green: #002000;
  --color-dark-green-alt: #0b1f11;
  --color-grass-green: #a4e632;

  /* Typography – font families */
  --font-base: "Base Neue", sans-serif;
  --font-condensed: "Base Neue Condensed", sans-serif;
  --font-expanded: "Base Neue Expanded", sans-serif;
  --font-wide: "Base Neue Wide", sans-serif;

  /* Typography – font weights */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 617;
  --fw-bold: 700;
  --fw-extra-bold: 800;

  /* Typography – font sizes (fluid) */
  --fs-hero-kicker: clamp(16px, 2.6vw, 30px);
  --fs-countdown: clamp(48px, 5vw, 96px);
  --fs-countdown-label: clamp(10px, 1.5vw, 18px);
  --fs-section-title: clamp(36px, 6vw, 80px);
  --fs-section-text: clamp(18px, 3.2vw, 46px);
  --fs-hero-title-mobile: clamp(22px, 6vw, 30px);
  --fs-speakers-title: clamp(36px, 6vw, 80px);
  --fs-about-title: clamp(16px, 2vw, 24px);
  --fs-about-lead: clamp(28px, 4.5vw, 54px);
  --fs-about-text: clamp(16px, 2.5vw, 24px);
  --fs-about-btn: clamp(16px, 2.2vw, 24px);

  /* Spacing */
  --gap-about-content: clamp(2rem, 5vw, 6.4rem);
  --gap-about-desc: clamp(2rem, 4vw, 10.5rem);
  --margin-about-content: clamp(60px, 20vh, 200px);
  --hero-mobile-pad-top: 200px;
  --overlap-about: 140px;
  --overlap-footer: 140px;

  /* Layout */
  --mobile-header-height: 130px;
  --header-offset: 0px; /* nastavuje JS (hlavička + admin bar) */
  --mobile-menu-slide: 500px;
  --container-max: 1300px;

  /* Z-index */
  --z-header: 99992;
  --z-mobile-toggle: 100001;
  --z-modal: 9999;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 220ms ease;
  --transition-smooth: 0.3s ease-in-out;
  --transition-hover: 0.25s var(--ease-in-out);
}

/* ==========================================================================
   2. BASE / RESET
   ========================================================================== */

* {
  box-sizing: border-box;
}

.br {
  margin-bottom: 14px !important;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

html,
body {
  overflow-x: clip;
  overscroll-behavior-x: none;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

body {
  margin: 0;
  font-family: var(--font-base);
  font-weight: var(--fw-medium);
  -webkit-tap-highlight-color: transparent;
}

img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
}

/* ==========================================================================
   3. LAYOUT PRIMITIVES
   ========================================================================== */

/* Homepage main – sekce se skládají pod sebe */
#main-content {
  display: flex;
  flex-direction: column;
  overflow-x: clip;
  width: 100%;
}
@supports not (overflow: clip) {
  #main-content {
    overflow-x: hidden;
  }
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: max(24px, env(safe-area-inset-left))
    max(24px, env(safe-area-inset-right));
}

.section {
  padding: 80px 0 100px;
}

.section__title {
  font-size: var(--fs-section-title);
  margin: 0 0 30px;
}

/* ==========================================================================
   4. TYPOGRAPHY
   ========================================================================== */

h1 {
  font-family: var(--font-expanded);
  font-weight: 700;
  font-size: 80px;
  color: var(--color-dark-green);
}

h2 {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 80px;
}

/* ==========================================================================
   5. COMPONENTS – Tlačítka
   ========================================================================== */

.btn {
  display: inline-flex;
  padding: 18px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  text-decoration: none;
  transition:
    color var(--transition-hover),
    background var(--transition-hover),
    border-color var(--transition-hover),
    box-shadow var(--transition-hover),
    transform var(--transition-hover);
}

.btn--light {
  border-block-end: 1px solid var(--color-dark-green);
  background: var(--color-mint-light);
  color: var(--color-dark-green);
}

.btn--light:hover {
  background: var(--color-mint);
  box-shadow: 0 4px 24px 0 rgb(164 230 50 / 0.35);
}

.btn--outline-mint {
  border: 1px solid var(--color-mint);
  color: var(--color-mint);
  border-radius: 50px;
  background-color: var(--color-dark-green);
  margin: 60px 0 20px;
}

.btn--outline-mint:hover {
  color: var(--color-dark-green);
  background: var(--color-mint);
}

.btn--ternary {
  border: 1px solid rgb(202 255 151 / 0.25);
  background: rgb(255 255 255 / 0.01);
  backdrop-filter: blur(1px);
  color: var(--color-mint);
}

.btn--ternary:hover {
  background: rgb(202 255 151 / 0.1);
}

.btn:active {
  transform: scale(0.98);
}

.btn--disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.btn__text {
  text-align: center;
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 488;
}

.btn:focus-visible,
.site-nav__link:focus-visible,
.buy-ticket:focus-visible {
  outline: 3px solid var(--color-mint);
  outline-offset: 3px;
}

/* ==========================================================================
   6. HEADER & NAVIGATION
   ========================================================================== */

.site-header {
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
  padding-block: 55px 10px;
  padding-inline: 65px;
  z-index: var(--z-header);
  pointer-events: auto;
  background: transparent;
  transform: translateY(0);
  transition:
    background-color var(--transition-fast),
    transform var(--transition-fast),
    backdrop-filter var(--transition-fast);
}

body.is-scrolled .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin-top: -20px;
  background-color: var(--color-dark-green);
  z-index: var(--z-header);
  will-change: transform, background-color;
  box-shadow:
    0 2px 6px rgb(0 32 0 / 0.7),
    0 12px 30px rgb(0 32 0 / 0.7);
  transform: translateY(10px);
}

body.is-mobile-nav-open .site-header,
.site-header.is-mobile-nav-open {
  transform: translateY(0) !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background-color: var(--color-mint) !important;
}

/* Desktop nav */
.site-nav__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__item {
  padding: 0 20px;
}

.site-nav__link {
  text-decoration: none;
  color: #dcffbb;
  transition:
    color var(--transition-hover),
    border-color var(--transition-hover);
}

.site-nav__link:hover {
  border-block-end: 2px solid #a4e128;
  color: var(--Light-Green, #a4e128);
}

.site-nav__social-icon {
  display: block;
  width: 40px;
  height: 40px;
  transition: transform var(--transition-hover);
}

.site-nav__social-icon:hover {
  transform: scale(1.1);
}

.site-nav__social-icon path {
  fill: var(--Mint, #dcffbb);
  transition: fill var(--transition-hover);
}

.site-nav__link:hover .site-nav__social-icon path {
  fill: var(--Light-Green, #a4e128);
}

.site-header__logo {
  transition: opacity var(--transition-hover);
}

.site-header__logo:hover {
  opacity: 0.9;
}

.site-header__logo--mobile {
  display: none;
}

.site-nav--desktop {
  display: block;
}

/* Mobile nav toggle */
.mobile-nav__toggle {
  display: none;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: var(--z-mobile-toggle);
}

.mobile-nav__icon {
  width: 68px;
  height: 53px;
  display: block;
}

.mobile-nav__icon--up {
  display: block;
}

.mobile-nav__icon--down {
  display: none;
}

.mobile-nav {
  display: none;
}

/* ==========================================================================
   7. HERO
   ========================================================================== */

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: 60px 280px;
  padding-inline: 20px;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  display: flex;
  width: 100%;
  max-width: 123.2rem;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4.8rem;
  margin: 160px 0 20px;
}

.hero-content__description {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 1230px;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 48px);
}

.hero-content__description-item {
  display: flex;
  width: 100%;
  max-width: 682px;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  flex-shrink: 0;
}

.hero-content__description-clock {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 445.8px;
  flex-shrink: 0;
}

.bg::before {
  content: "";
  position: absolute;
  inset-block-start: -38.958px;
  inset-inline-end: -95.059px;
  width: 635px;
  height: 338px;
  background: url(./assets/img/circle.svg) center / cover no-repeat;
}

@media (max-width: 1263px) {
  .bg::before {
    display: none;
  }
}

.hero-content__description-clock-text {
  color: var(--color-mint-light);
  font-family: var(--font-base);
  font-size: 18px;
  font-weight: 488;
  text-align: center;
  text-transform: lowercase;
}

.hero-content__description-clock-text p {
  margin: 0;
}

/* Countdown / hours – hero */
.hero .hours {
  width: 100%;
  display: flex;
  gap: clamp(8px, 1.5vw, 13px);
  align-items: center;
  justify-content: flex-start;
  margin: 0 !important;
  flex-wrap: nowrap;
}

.hero .hours__text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero .hours .vector {
  height: 1em;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: var(--color-mint-light);
  font-family: var(--font-base);
  font-size: var(--fs-countdown);
  font-weight: 300;
  line-height: 1;
}

.hero .hours__text-number {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-base);
  font-size: 80.593px;
  font-weight: 376;
  line-height: 1;
  text-align: center;
}

.hero .hours__text-label {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-base);
  font-size: var(--fs-countdown-label);
  font-weight: 376;
  text-align: center;
}

.hero__title {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-base);
  font-size: 4rem;
  font-weight: 488;
  text-align: start;
  text-wrap: nowrap;
}

.hero__title-span {
  font-family: var(--font-expanded);
  font-weight: var(--fw-bold);
  color: var(--color-mint);
}

.hero__subtitle {
  margin: 0;
  color: var(--color-mint);
  font-family: var(--font-base);
  font-size: 2rem;
  font-weight: 488;
}

.hero__subtitle-span {
  color: var(--color-white);
}

.hero .buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Wave divider */
.wave {
  position: absolute;
  inset-inline: 0;
  width: 100vw;
  pointer-events: none;
  z-index: 2;
}

.wave img,
.wave svg {
  width: 100%;
  display: block;
}

.hero .wave {
  inset-block-end: -1px;
}

.wave--program {
  inset-block-start: -1px;
}

/* ==========================================================================
   8. ABOUT
   ========================================================================== */

.about {
  width: 100vw;
  position: relative;
  z-index: 5;
  min-block-size: auto;
  height: auto;
  background: url(./assets/img/green.png) center / cover no-repeat;
  margin-block-start: -200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  --blob-safe-x: -58px;
  --blob-safe-x2: 15px;
  --blob-gap: 20px;
  --blob-safe-top: 25px;
  --blob-safe-bottom: 15px;
}

.about__content {
  position: relative;
  z-index: 3;
  margin: var(--margin-about-content) auto;
  width: 100%;
  max-width: 1030px;
  text-align: justify;
  color: var(--color-white);
  align-items: center;
  gap: var(--gap-about-content);
  display: flex;
  flex-direction: column;
}

.about__content-desc {
  display: flex;
  align-items: center;
  gap: var(--gap-about-desc);
  align-self: stretch;
}

.about__title {
  margin: 0 0 18px;
  font-family: var(--font-condensed);
  font-weight: var(--fw-medium);
  font-size: 24px;
  text-transform: uppercase;
  color: var(--color-white);
}

.about__lead,
.about__text {
  margin: 0 0 28px;
  font-family: var(--font-base);
  font-size: var(--fs-about-text);
  font-weight: var(--fw-light);
  color: var(--color-mint);
  text-align: left;
}

.about__text strong {
  font-weight: var(--fw-semibold);
}

/* Blob animace */
@keyframes blobDrift {
  0% {
    transform: translate3d(0, 0, 0) rotate(var(--r));
  }
  25% {
    transform: translate3d(
        calc(var(--floatX) * -0.6),
        calc(var(--floatY) * -0.4),
        0
      )
      rotate(calc(var(--r) + var(--twist)));
  }
  50% {
    transform: translate3d(var(--floatX), calc(var(--floatY) * -1), 0)
      rotate(calc(var(--r) - var(--twist)));
  }
  75% {
    transform: translate3d(calc(var(--floatX) * -0.4), var(--floatY), 0)
      rotate(calc(var(--r) + var(--twist)));
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--r));
  }
}

.about__blob {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  opacity: 0.35;
  height: auto;
  filter: drop-shadow(0 0 0 var(--color-grass-green))
    drop-shadow(0 0 0 var(--color-grass-green));
  transform-origin: 50% 50%;
  will-change: transform;
  --r: 0deg;
  --floatX: 18px;
  --floatY: 22px;
  --twist: 6deg;
  animation: blobDrift 26s ease-in-out infinite both;
}

.about__blob--1 {
  width: 175px;
  top: calc(var(--blob-safe-top) + var(--blob-gap) + var(--floatY));
  left: var(--blob-safe-x2);
  --r: -6deg;
  --floatX: 16px;
  --floatY: 14px;
  --twist: 3deg;
  animation-duration: 20s;
  animation-delay: -2s;
}

.about__blob--2 {
  width: 470px;
  top: 150px;
  right: var(--blob-safe-x);
  --blob-safe-x: -220px;
  --r: 4deg;
  --floatX: 20px;
  --floatY: 65px;
  --twist: 6deg;
  animation-duration: 28s;
  animation-delay: -9s;
}

.about__blob--3 {
  display: none;
  width: 180px;
  bottom: calc(var(--blob-safe-bottom) + var(--blob-gap) + var(--floatY));
  right: var(--blob-safe-x2);
  --r: -3deg;
  --floatX: 14px;
  --floatY: 12px;
  --twist: 3deg;
  animation-duration: 22s;
  animation-delay: -5s;
}

.about__blob--4 {
  width: 250px;
  bottom: 0;
  left: var(--blob-safe-x);
  --r: 102deg;
  --floatX: 16px;
  --floatY: 16px;
  --twist: 4deg;
  animation-duration: 30s;
  animation-delay: -12s;
}

/* ==========================================================================
   9. PROGRAM
   ========================================================================== */

/* Společné styly pro program a tickets */
:is(.section--program, .section--tickets) {
  padding: 80px 0 100px;
  background: url("assets/img/hypo26-bg-08.avif") center / cover;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 1;
  font-family: var(--font-base);
  font-weight: var(--fw-medium);
}

.section--program,
.section--speakers,
.section--sponzors,
.section--contacts {
  padding: 80px 0 100px;
}

.section--speakers .container {
  max-width: 1440px;
}

.section--program {
  padding-top: 300px;
  margin-top: -230px;
}

.section--program .section__inner {
  width: 100%;
}

.section--program .btn {
  margin: 0;
}

.section--program .section__title {
  font-size: 48px;
  margin-bottom: 48px;
}

:is(.section--program, .section--tickets) .section__text {
  margin: 0 0 80px;
  font-family: var(--font-base);
  font-weight: var(--fw-medium);
  font-size: 20px;
  color: var(--color-dark-green);
}

/* Program stats */
.program-stats {
  width: 100%;
  margin: 48px auto 46px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.program-stats__row {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.program-stat {
  position: relative;
  width: 100%;
  max-width: 241.282px;
  height: 209.537px;
  transition: transform var(--transition-hover);
}

.program-stat:hover {
  transform: scale(1.02);
}

.program-stat svg {
  width: 100%;
  height: auto;
  display: block;
}

.program-stat svg path {
  fill: rgb(202 255 151 / 0.4);
  stroke: var(--color-grass-green);
  stroke-width: 2px;
  transition: fill 0.8s ease;
}

.program-stat:hover svg path {
  fill: var(--color-mint);
}

.program-stat__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 100%;
}

.program-stat__value {
  font-family: var(--font-expanded);
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  color: var(--color-dark-green-alt);
}

.program-stat__label {
  margin-block-start: 10px;
  font-size: 16px;
  line-height: 1.25;
  color: var(--color-dark-green-alt);
}

.program-stat .program-blob2,
.program-stat .program-blob3 {
  width: 295px;
}

.program-stat .program-blob4,
.program-stat .program-blob5 {
  width: 312px;
}

.program-points {
  margin: 30px 0;
  padding-left: 0;
  list-style: none;
}

.program-benefits {
  display: flex;
  align-items: center;
  gap: 32px;
  align-self: stretch;
  width: 100%;
  justify-content: center;
}

.section--program .card-list-item {
  display: flex;
  width: 100%;
  max-width: fit-content;
  align-items: center;
  gap: 12px;
  text-align: start;
}

.section--program .card-list-item .icon-wrapper {
  width: 100%;
  max-width: 36px;
  height: 36px;
}

.section--program .card-list-item svg {
  width: 100%;
  max-width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.section--program .card-list-item span {
  color: var(--color-dark-green);
  font-family: var(--font-base);
  font-size: 18px;
  font-weight: 712;
  line-height: 1.5;
}

.section--program .card-list-item .text {
  width: 100%;
  max-width: 293px;
  color: var(--color-dark-green);
  font-family: var(--font-base);
  font-size: 18px;
  font-weight: 488;
  line-height: 1.5;
  text-wrap-style: balance;
}

.section--program .check {
  width: 45px;
  height: 27px;
  display: block;
  align-self: start;
}

/* ==========================================================================
   10. TICKETS
   ========================================================================== */

.section--tickets {
  padding-bottom: 200px;
  background-image: url("assets/img/hypo26-bg-08.avif");
  background-size: cover;
  position: relative;
  min-height: auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 1;
  font-family: var(--font-base);
  font-weight: var(--fw-medium);
}

.section--tickets .section__inner {
  inline-size: 100%;
  max-width: 1230px;
  display: inline-flex;
  align-items: flex-start;
  gap: 7.3rem;
  margin: 0 auto;
}

.section--tickets__content {
  display: flex;
  width: 480px;
  flex-direction: column;
  align-items: flex-start;
  gap: 42px;
}

.section--tickets .section__title {
  font-size: 48px;
  margin: 0;
}

.section--tickets__content-subhedline {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 12px;
}

.section--tickets__content-subhedline p {
  margin: 0;
}

.section--tickets__content-items {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  align-self: stretch;
}

.section--tickets__content-items .item {
  display: flex;
  width: 100%;
  max-width: fit-content;
  align-items: center;
  gap: 12px;
}

.section--tickets__content-items svg {
  width: 100%;
  max-width: 32px;
  height: 32px;
}

.section--tickets__content-items .item .section__text {
  color: var(--hypo26---dark-green, #002000);
  font-family: var(--font-base);
  font-size: 16px;
  font-style: normal;
  font-weight: 488;
  line-height: 150%; /* 2.7rem */
  margin: 0;
  text-align: start;
}

.section--tickets__content-items .item .section__text strong {
  font-weight: 712;
}

.section--tickets .cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1150px;
  margin: 0 auto;
}

.section--tickets .card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 30px;
  padding: 36px;
  height: auto;
  overflow: hidden;
  box-shadow:
    0 10px 10px var(--color-grass-green),
    0 40px 40px var(--color-grass-green);
  width: 100%;
  max-width: 400px;
  background-size: cover;
  gap: 16px;
  transition:
    transform var(--transition-hover),
    box-shadow var(--transition-hover);
}

.section--tickets .card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 14px 14px var(--color-grass-green),
    0 44px 44px var(--color-grass-green);
}

.section--tickets .card > * {
  position: relative;
  z-index: 1;
}

.section--tickets .green {
  background-image: url("assets/img/bg-green.avif");
  color: var(--color-mint-light);
  box-shadow: 0 15px 50px 0 rgba(202, 255, 151, 0.75);
}

.section--tickets .gold {
  background-image: url("assets/img/bg-gold.avif");
  color: var(--color-mint-light);
  box-shadow: 0 15px 50px 0 rgba(208, 175, 26, 0.75);
}

.section--tickets .gold:hover {
  box-shadow:
    0 14px 14px #ffd208,
    0 44px 44px #ffd208;
}

.section--tickets .card h2 {
  margin: 10px 0 20px;
  font-size: 28px;
  font-family: var(--font-wide);
  font-weight: var(--fw-extra-bold);
  text-align: left;
  color: var(--color-white);
}

.section--tickets .card-list {
  padding: 0;
  margin: 0 0 24px;
}

.section--tickets .card-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  text-align: left;
}

.section--tickets .card-list-item .text {
  font-family: var(--font-base);
  font-weight: 488;
  font-size: 16px;
  color: #fff;
}

.section--tickets .gold .card-list-item {
  color: var(--color-dark-green);
}

.section--tickets .green .card-list-item {
  color: var(--color-mint-light);
}

.section--tickets .icon-wrapper {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section--tickets .icon-wrapper img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: block;
}

.section--tickets .gold .icon-wrapper {
  background-color: rgb(0 32 0 / 0.1);
}

.section--tickets .green .icon-wrapper {
  background-color: rgb(202 255 151 / 0.1);
}

.section--tickets .gold .check path {
  fill: var(--color-dark-green);
}

.section--tickets .card-bottom {
  margin-top: auto;
  padding-bottom: 20px;
}

.section--tickets .price {
  margin: 0 0 12px;
  text-align: left;
}

.section--tickets .price-value {
  margin: 0;
  padding: 0;
  font-size: 44px;
  font-weight: var(--fw-bold);
  color: var(--color-white);
}

.section--tickets .price-value span {
  font-size: 20px;
  font-weight: var(--fw-medium);
}

.section--tickets .dark .price {
  color: var(--color-mint-light);
}

.section--tickets .price-available {
  margin: 0;
  padding: 0;
  font-family: var(--font-base);
  font-weight: var(--fw-medium);
  color: var(--color-white);
}

.section--tickets .card .buy-ticket {
  display: block;
  text-decoration: none;
  margin-block: 27px 0px;
  width: 100%;
  text-align: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 18px;
  cursor: pointer;
  background: var(--color-white);
  color: var(--color-dark-green);
  transition:
    background var(--transition-hover),
    color var(--transition-hover),
    transform var(--transition-hover);
}

.section--tickets .card .buy-ticket:hover {
  background-color: var(--color-mint-light);
  color: var(--color-dark-green);
}

.section--tickets .card .buy-ticket:active {
  transform: scale(0.98);
}

.section--tickets .card.green .buy-ticket {
  background: #caff97;
}

.section--tickets .card.gold .buy-ticket {
  background: #ffd208;
}

/* ==========================================================================
   11. SPEAKERS
   ========================================================================== */

.speakers {
  background: url("assets/img/hypo26-bg-hlavnitvare.avif") center / cover
    no-repeat;
  color: var(--color-white);
  padding-bottom: 50px;
}

.speakers__inner {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.speakers__title {
  color: var(--color-mint);
  margin-bottom: 69px;
  font-size: 48px;
}

.speakers__list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 100px;
  margin: 30px 0 0;
}

.speakers__label:first-child {
  margin-top: 0;
}

/* Speaker groups */
.speakers__group {
  margin-top: 70px;
  text-align: center;
}

.speakers__group:first-of-type {
  margin-top: 0;
}

.speakers__group-title {
  margin: 0 0 38px;
  font-size: 22px;
  line-height: normal;

  color: var(--Mint, #dcffbb);
  font-weight: var(--fw-bold);
  font-family: var(--font-base);
  text-align: center;
}

.speakers__grid {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  align-self: stretch;
  flex-wrap: wrap;
  justify-content: center;
}

.speakers__grid-content {
  display: flex;
  align-items: center;
  gap: 26px;
  row-gap: 26px;
  align-self: stretch;
  flex-wrap: wrap;
  justify-content: center;
}

.speakers__group--moderators .speakers__grid {
  flex-wrap: wrap;
  flex-direction: row;
}

.speakers__group--speakers .speakers__grid {
  flex-wrap: nowrap;
  gap: 60px;
}

.speakers__group--speakers .speaker-card {
  max-width: 445px;
}

.speakers__group--speakers .speaker-card__photo {
  height: auto;
  width: 100%;
  max-width: 160px;
  object-fit: contain;
  object-position: top center;
}

/* Speaker card */
.speaker-card {
  width: 100%;
  max-width: fit-content;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 19px;
}

.speaker-card > div:first-child {
  overflow: visible;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.speaker-card__photo {
  width: 100%;
  height: 152px;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}

.speaker-card__body {
  position: relative;
  z-index: 2;
  font-family: var(--font-base);
  font-weight: var(--fw-medium);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: start;
}

.speaker-card__body p {
  margin: 0;
}

.speaker-card__name {
  display: inline-flex;
  gap: 16px;
  align-items: center;

  margin: 0 0 15px 30px;
  font-size: 24px;
  font-weight: var(--fw-bold);
  line-height: 1.2;
  padding-bottom: 10px;
}

.speaker-card__role {
  margin: 0 0 4px 0;
  color: #fff;
  font-family: var(--font-base);
  font-size: 18px;
  font-style: normal;
  font-weight: 488;
  line-height: normal;
}

.speaker-card__role::first-letter {
  text-transform: uppercase;
}

.speaker-card__company {
  color: #fff;
  font-family: var(--font-base);
  font-size: 18px;
  font-style: normal;
  font-weight: 488;
  line-height: normal;
}

.speaker-card__company::first-letter {
  text-transform: uppercase;
}

.speaker-card__social {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  margin: 5px 0;
}

.speaker-card__icon {
  max-width: 30px;
  height: 30px;
  display: block;
}

.speaker-card__icon path {
  fill: var(--color-mint);
}

.speaker-card > a,
.speaker-card__name a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-hover);
}

.speaker-card > a:hover,
.speaker-card__name a:hover {
  text-decoration: none;
  color: inherit;
}

.speaker-card {
  transition: transform var(--transition-hover);
}

.speaker-card:hover {
  transform: translateY(-4px);
}

.speaker-card__link {
  color: var(--Mint, #dcffbb);
  text-align: center;
  font-family: var(--font-base);
  font-size: 14px;
  font-style: normal;
  font-weight: 488;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;

  padding-top: 16px;
  transition: var(--transition-hover);
}

.speaker-card__link:hover {
  color: var(--Light-Green, #a4e128);
}

.speaker-card > a:focus-visible,
.speaker-card__name a:focus-visible {
  outline: 3px solid var(--color-mint);
  outline-offset: 4px;
  border-radius: 8px;
}

.speakers .btn--light {
  color: var(--color-dark-green);
  margin: 70px 0;
}

.speakers .btn--light:hover {
  color: var(--color-mint);
  background: var(--color-dark-green);
}

/* ==========================================================================
   12. SPONSORS
   ========================================================================== */

.sponsors {
  position: relative;
  min-height: auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 1;
}

.sponsors__title {
  font-size: var(--fs-section-title);
  color: var(--color-dark-green);
  padding: 0 0 50px;
  font-size: 48px;
}

.sponsors__group {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 50px 0;
}

.sponsors__group-title {
  margin: 0;
  font-size: 20px;
  color: var(--color-grass-green);
}

.sponsors__logos {
  --logoW: 140px;
  --logoH: 70px;
  --gapY: 25px;
  --gapX: 100px;
  --cols: 5;
  width: min(
    100%,
    calc((var(--cols) * var(--logoW)) + ((var(--cols) - 1) * var(--gapX)))
  );
  margin-inline: auto;
  padding-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--gapY) var(--gapX);
}

.sponsors__logo {
  width: 100%;
  max-width: fit-content;
  height: var(--logoH);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  transition:
    transform var(--transition-hover),
    opacity var(--transition-hover);
}

.partners-conf svg,
.partners-conf img {
  width: 100%;
  max-width: 200px !important;
  max-height: 100px !important;
}

.sponsors__logo:hover {
  transform: scale(1.05);
}

.sponsors__logo img {
  max-width: 80px;
  max-height: 40px;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.sponsors__logo svg {
  max-width: 80px;
  max-height: 40px;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ==========================================================================
   13. CONTACTS
   ========================================================================== */

.contacts {
  background-color: var(--color-white);
  color: var(--color-dark-green);
  padding: 0;
  margin-bottom: 100px;
}

.contacts__inner {
  align-items: center;
  text-align: center;
  /* padding: 0 120px; */
  width: 100%;
  max-width: 830px;
  margin: 0 auto;
}

.contacts__title {
  color: var(--color-dark-green);
  font-size: 40px;
  margin: 0 0 80px;
}

.contacts__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px 120px;
}

.contacts__list > .contact-card {
  justify-self: center;
}

.contact-card {
  display: flex;
  flex-direction: row;
  gap: 19px;
  width: 100%;
  max-width: 344px;
  transition: transform var(--transition-hover);
}

.contact-card:hover {
  transform: translateY(-2px);
}

.contact-card__link,
.contact-card__name {
  overflow-wrap: anywhere;
  font-size: 14px;
}

.contact-card__photo {
  height: 110px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 24px;
}

.contact-card__body {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  max-width: 198px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  text-align: start;
}

.contact-card__body p {
  margin: 0;
}

.name-role {
  display: flex;
  width: 100%;
  max-width: 193px;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.contact-card__name {
  font-weight: var(--fw-bold);
  margin: 0 0 15px 20px;
  font-size: 20px;
  line-height: 1.2;
}

.links {
  display: flex;
  width: 100%;
  max-width: 193px;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.contact-card__role {
  text-decoration: none;
  font-size: 14px;
}

.contact-card__link {
  text-decoration-line: underline;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 3px;
  color: var(--color-dark-green);
  transition: color var(--transition-hover);
}

.contact-card__link:hover {
  color: var(--color-grass-green);
}

.contact-card__social {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  text-decoration: none;
  padding-top: 10px;
  gap: 10px;
}

.contact-card__social a {
  text-decoration: none;
  display: inline-flex;
}

.contact-card__icon {
  width: 40px;
  height: 40px;
  display: block;
}

.contact-card__icon path {
  fill: var(--color-dark-green);
}

/* ==========================================================================
   14. FOOTER
   ========================================================================== */

.site-footer {
  position: relative;
  overflow: hidden;
  z-index: 5;
  margin-top: 50px;
  padding: 56px 0 28px;
  flex-direction: column;
  align-items: center;
  color: var(--color-mint);
}

.site-footer__bg {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.site-footer__inner,
.site-footer__copyright {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
  padding-inline: 24px;
  margin-inline: auto;
}

.site-footer__logo img {
  display: block;
  max-width: 257.727px;
  width: 100%;
  margin: 60px auto 90px auto;
}

.site-footer__text p {
  text-align: center;
  font-size: 30px;
}

/* Countdown v patičce */
.countdown-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(12px, 2vw, 20px);
  white-space: nowrap;
  margin: 65px 0;
  font-family: var(--font-base);
  font-weight: var(--fw-regular);
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-unit__value {
  font-size: var(--fs-countdown);
  line-height: 1;
  color: var(--color-white);
  font-variant-numeric: tabular-nums;
  font-feature-settings:
    "tnum" 1,
    "lnum" 1;
  width: 3ch;
  text-align: center;
}

.countdown-unit__label {
  font-size: var(--fs-countdown-label);
  text-transform: lowercase;
  color: var(--color-white);
  margin-top: 10px;
}

.countdown-sep {
  font-size: var(--fs-countdown);
  line-height: 1;
  color: var(--color-mint);
  font-weight: var(--fw-light);
  width: 1ch;
  text-align: center;
  padding-top: 0.02em;
}

.counter__mobile {
  display: none;
}

.site-footer__links {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer__links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  max-width: fit-content;
}

.site-footer__links-list a {
  text-decoration: none;
  color: var(--color-white);
  font-size: 20px;
  cursor: pointer;
  transition:
    color var(--transition-hover),
    opacity var(--transition-hover);
}

.site-footer__links-list a:hover {
  color: var(--color-mint);
}

.site-footer__copyright {
  margin: 8px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-white);
  font-size: 14px;
  width: 100vw;
  padding: 0 100px;
  padding-top: 16px;
}

.site-footer__gdpr {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  flex: 1 0 auto;
}

.site-footer__gdpr-link {
  color: var(--color-white);
  text-decoration: none;
  cursor: pointer;
  transition: color var(--transition-hover);
}

.site-footer__gdpr-link:hover {
  color: var(--color-mint);
}

.site-footer__copyright p {
  margin: 0;
}

.site-footer__copyright a img {
  display: block;
  width: 100%;
  max-width: 134.79px;
}

.site-footer__pay-logos {
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  width: 100vw;
  padding: 0 100px;
  justify-content: center;
  margin: 0 auto;
}

.site-footer__pay-logos .pay-logo img {
  width: 100%;
  max-width: fit-content;
  height: 25px;
  position: relative;
  z-index: 10;
}

.gepard-logo {
  display: flex;
  flex: 0 0 13rem;
  align-items: flex-end;
  justify-content: flex-end;
}

.site-footer__disclaimer {
  width: 100vw;
  max-width: 738px;
  display: flex;
  justify-content: center;
  position: relative;
  margin: 0 auto;
  padding-top: 47px;
  z-index: 10;
}

.site-footer__disclaimer p,
.site-footer__disclaimer a {
  color: #868e86;
  text-align: center;
  font-family: var(--font-base);
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: all var(--transition-hover);
}

.site-footer__disclaimer a:hover {
  color: #a4e128;
}

/* ==========================================================================
   15. UTILITIES – Modal, Reveal
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(2px);
  transition:
    opacity 600ms ease,
    transform 600ms ease,
    filter 600ms ease;
  will-change: opacity, transform, filter;
}

.reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.sponsors__logos img.reveal {
  transform: translateY(10px) scale(0.98);
}

.sponsors__logos img.reveal.is-inview {
  transform: translateY(0) scale(1);
  width: 100%;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: none;
}

.modal.is-open {
  display: block;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 0.65);
}

.modal__dialog {
  position: relative;
  max-width: 980px;
  width: calc(100% - 40px);
  margin: 6vh auto;
  background: var(--color-dark-green);
  color: var(--color-white);
  padding: 28px 24px;
  box-shadow: 0 30px 80px rgb(0 0 0 / 0.35);
  max-height: 84vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

body.is-modal-open {
  overflow: hidden;
}

.modal__title {
  color: var(--color-white);
  margin: 0 0 16px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  padding: 8px;
  background: none;
  border: 0;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  color: var(--color-white);
  transition:
    color var(--transition-hover),
    opacity var(--transition-hover);
}

.modal__close:hover {
  opacity: 0.8;
}

.modal [data-SimpleShopForm] {
  margin-top: 12px;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   16. PAGE-SPECIFIC – Nabídka 2026
   ========================================================================== */

.hero-nabidka-2026 {
  padding-top: var(--header-offset, 137px);
}

body.page-nabidka-2026 .site-header {
  position: fixed;
  background-color: var(--color-dark-green);
  box-shadow: 0 2px 6px rgb(0 32 0 / 0.7);
}

.page-template-page-nabidka-2026 .site-header {
  display: none;
}

.page-template-page-nabidka-2026 .site-footer__links {
  display: none;
}

.page-template-page-nabidka-2026 .site-footer__gdpr {
  display: none;
}

.df-bg {
  background: var(--color-white) !important;
}

/* ==========================================================================
   17. RESPONSIVE – Media Queries
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  @media (max-width: 1024px) {
    .mobile-nav {
      transition: none !important;
    }
  }
}

@media (max-width: 1280px) {
  .site-header {
    padding-block: 40px 10px;
    padding-inline: 40px;
  }

  .contacts__inner {
    padding: 0 60px;
  }

  .program-stats {
    max-width: 900px;
    gap: 32px;
  }

  .program-stats__row {
    gap: 28px;
  }

  .site-footer__copyright,
  .site-footer__pay-logos {
    padding-inline: 60px;
    padding-top: 16px;
    flex-wrap: wrap;
  }
}

@media (max-width: 1024px) {
  :root {
    --mobile-header-height: 90px;
  }

  html {
    scroll-padding-top: 100px;
  }

  .site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: var(--mobile-header-height);
    padding: 0;
    margin: 0;
    background: transparent;
    transition: background var(--transition-fast);
    z-index: 1000;
  }

  .site-header.is-mobile-nav-open {
    position: fixed;
    background: var(--color-mint);
  }

  .site-header__logo--desktop {
    display: none;
  }

  .site-header__logo--mobile {
    display: inline-block;
    position: absolute;
    top: 30px;
    left: 40px;
    z-index: 1001;
  }

  .site-header__logo-svg {
    width: 148px;
    height: auto;
    display: block;
  }

  .site-header__logo-svg path {
    fill: var(--color-white);
  }

  .site-header.is-mobile-nav-open .site-header__logo-svg path {
    fill: var(--color-dark-green);
  }

  .site-nav--desktop {
    display: none;
  }

  .program-stats {
    max-width: 820px;
    gap: 28px;
  }

  .program-stats__row {
    flex-wrap: wrap;
    gap: 24px;
  }

  .mobile-nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 30px;
    right: 40px;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    z-index: 1001;
  }

  .mobile-nav__icon--up {
    display: block;
  }

  .mobile-nav__icon--down {
    display: none;
  }

  .site-header.is-mobile-nav-open .mobile-nav__icon--up {
    display: none;
  }

  .site-header.is-mobile-nav-open .mobile-nav__icon--down {
    display: block;
  }

  .mobile-nav {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    top: var(--mobile-header-height);
    height: calc(100vh - var(--mobile-header-height));
    padding: 20px 0 30px;
    transform: translateY(calc(-1.5 * var(--mobile-menu-slide)));
    transition: transform 320ms ease;
    will-change: transform;
    z-index: 900;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .site-header.is-mobile-nav-open .mobile-nav {
    transform: translateY(0);
  }

  .mobile-nav__bg {
    position: absolute;
    inset: 0;
    top: 0;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
  }

  .mobile-nav__bg-img {
    position: absolute;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    max-width: none;
    height: 500px;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  .mobile-nav__list,
  .mobile-nav__social {
    position: relative;
    z-index: 1;
  }

  .mobile-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .mobile-nav__link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding-block: 8px;
    padding-inline-start: 40px;
    text-decoration: none;
    color: var(--color-dark-green);
    font-size: 40px;
    font-weight: 200;
    letter-spacing: 0.02em;
    margin: 5px 0;
    transition: color var(--transition-hover);
  }

  .mobile-nav__link:hover {
    color: var(--color-white);
  }

  .mobile-nav__social {
    margin-top: 20px;
    display: flex;
    gap: 14px;
    align-items: center;
    padding-top: 10px;
    padding-left: 30px;
    margin: 5px 0;
  }

  .mobile-nav__social-icon {
    width: 60px;
    height: 60px;
    display: block;
    padding: 0;
    margin: 0;
  }

  .mobile-nav__social-icon path {
    fill: var(--color-dark-green);
  }

  .section {
    padding: 60px 0 80px;
  }

  .section--program {
    padding-top: 300px;
    margin-top: -230px;
  }

  .container {
    padding-inline: max(24px, env(safe-area-inset-left))
      max(24px, env(safe-area-inset-right));
  }

  .section--program .section__inner {
    padding-inline: max(24px, env(safe-area-inset-left))
      max(24px, env(safe-area-inset-right));
  }

  .section--tickets .section__inner {
    flex-direction: column;
    gap: clamp(32px, 5vw, 60px);
    padding-inline: max(24px, env(safe-area-inset-left))
      max(24px, env(safe-area-inset-right));
    align-items: center;
  }

  .section--tickets__content {
    width: 100%;
    max-width: 420px;
    align-items: center;
  }

  .section--tickets__content-items {
    align-items: center;
  }

  .section--tickets__content-items .item {
    justify-content: center;
  }

  .section--tickets .cards {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .sponsors__logos {
    --cols: 4;
  }

  .sponsors__logo {
    width: 100%;
    max-width: 140px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .sponsors__logo img {
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
  }

  .site-footer__logo {
    display: flex;
    justify-content: center;
  }

  .site-footer__logo img {
    max-width: 700px;
    width: 100%;
    margin: 40px auto 24px auto;
  }

  .speakers__group--speakers .speakers__grid {
    flex-wrap: wrap;
    gap: 36px;
  }

  .speakers__group--speakers .speaker-card {
    max-width: 445px;
  }

  .speakers__group--speakers .speaker-card__photo {
    height: auto;
    object-fit: contain;
    object-position: top center;
  }

  .speakers__group--moderators .speakers__grid {
    flex-wrap: wrap;
  }
}

@media (max-width: 900px) {
  html,
  body {
    overflow-x: hidden;
  }

  .container {
    padding-inline: max(20px, env(safe-area-inset-left))
      max(20px, env(safe-area-inset-right));
  }

  .hero {
    padding-top: var(--mobile-header-height);
    padding-inline: max(20px, env(safe-area-inset-left))
      max(20px, env(safe-area-inset-right));
  }

  .hero-content {
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .hero-content__description {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero-content__description-item {
    align-items: center;
    max-width: 100%;
  }

  .hero-content__description-clock {
    align-items: center;
    max-width: 100%;
  }

  .hero .hours {
    justify-content: center;
  }

  .hero__title {
    text-align: center;
    text-wrap: balance;
  }

  .hero .buttons {
    flex-wrap: wrap;
    justify-content: center;
  }

  .section--program {
    margin-top: -80px;
    padding-top: 220px;
  }

  .section--program .section__inner {
    padding-inline: max(20px, env(safe-area-inset-left))
      max(20px, env(safe-area-inset-right));
  }

  .section--tickets .section__inner {
    padding-inline: max(20px, env(safe-area-inset-left))
      max(20px, env(safe-area-inset-right));
  }

  .program-stats {
    max-width: 800px;
    margin: 30px auto 50px;
    gap: 22px;
    flex-wrap: wrap;
  }

  .program-stats__row {
    align-items: center;
    gap: 18px;
  }

  .speaker-card {
    max-width: 420px;
  }

  .speaker-card__photo {
    height: 200px;
  }

  .contacts__inner {
    padding: 0 24px;
    text-align: center;
  }

  .contacts__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 46px;
  }

  .contact-card {
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
    justify-content: left;
  }

  .contact-card__name {
    margin: 0 0 12px 0;
    padding-bottom: 10px;
  }

  .counter__desktop {
    display: none;
  }

  .counter__mobile {
    display: block;
  }

  .site-footer__copyright {
    width: 100%;
    padding: 0 24px;
    padding-top: 8px;
    display: flex;
    flex-direction: column-reverse;
    gap: 14px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .site-footer__gdpr {
    flex-direction: column-reverse;
    gap: 10px;
    align-items: center;
    justify-content: center;
  }

  .site-footer__links-list {
    gap: 18px 26px;
    justify-content: center;
  }

  .site-footer__logo img {
    max-width: 600px;
    width: 100%;
  }

  .counter__mobile {
    position: relative;
    z-index: 2;
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__title {
    margin: 0 0 6px;
    font-family: var(--font-condensed);
    font-size: var(--fs-hero-title-mobile);
    font-weight: 300;
    letter-spacing: 0.12em;
    color: var(--color-mint);
  }

  .footer__days {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 12px;
  }

  .footer__days-value {
    font-size: 162px;
    font-weight: 100;
    line-height: 1;
    color: var(--color-white);
    text-shadow:
      0 0 24px rgb(202 255 151 / 0.35),
      0 12px 40px rgb(202 255 151 / 0.25);
  }

  .footer__days-label {
    font-size: 18px;
    font-weight: 200;
    opacity: 1;
  }

  .footer__date {
    margin: 10px 0 22px;
    font-size: 25px;
    opacity: 1;
  }

  .program-benefits {
    flex-direction: column;
  }
}

@media (max-width: 820px) {
  .hero__title {
    font-size: 50px;
  }

  .sponsors__logos {
    max-width: 520px;
    --cols: 3;
  }

  .sponsors__logo {
    max-width: 120px;
    margin-top: 0;
  }

  .sponsors__group-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .section__title {
    font-size: 50px;
  }

  .program-stats {
    max-width: 700px;
    gap: 20px;
  }

  .program-stat__value {
    font-size: 52px;
  }
}

@media (max-width: 768px) {
  .about__content-desc {
    flex-wrap: wrap;
    justify-content: center;
  }

  .about__text {
    text-align: center;
  }
}

@media (max-width: 650px) {
  .sponsors__logos {
    --cols: 2;
    max-width: 420px;
  }

  .hero-content {
    margin: 70px 0 20px;
  }
}

@media (max-width: 640px) {
  .modal__dialog {
    margin: 6vh auto;
    padding: 22px 18px;
  }

  .modal__title {
    font-size: 22px;
  }

  .speakers__group-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .speakers__group--speakers .speaker-card,
  .speakers__group--moderators .speaker-card {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .speakers__group--speakers .speaker-card__body,
  .speakers__group--moderators .speaker-card__body {
    align-items: center;
    text-align: center;
    padding: 0 8px;
    gap: 6px;
  }

  .speakers__group--speakers .speaker-card__name,
  .speakers__group--moderators .speaker-card__name {
    margin-left: 0;
    justify-content: center;
  }

  .speakers__group--speakers .speaker-card__link,
  .speakers__group--moderators .speaker-card__link {
    align-self: center;
  }

  .speakers__group--speakers .speaker-card > div:first-child,
  .speakers__group--moderators .speaker-card > div:first-child {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
  }

  .speakers__group--speakers .speaker-card__photo,
  .speakers__group--moderators .speaker-card__photo {
    max-width: min(140px, 40vw);
    width: auto;
    min-width: 0;
    max-height: 140px;
    object-fit: contain;
    object-position: top center;
  }

  /* Co na vás čeká – menší bubliny a text */
  .section--program .program-benefits {
    gap: 12px;
  }
  .section--program .section__title {
    margin-bottom: 24px;
  }
  .section--program .card-list-item {
    gap: 10px;
  }
  .section--program .card-list-item .icon-wrapper {
    max-width: 28px;
    height: 28px;
  }
  .section--program .card-list-item svg {
    max-width: 28px;
    height: 28px;
  }
  .section--program .card-list-item .text,
  .section--program .card-list-item span {
    font-size: 15px;
  }
  .section--program .card-list-item .text {
    max-width: 260px;
  }
  .program-stats {
    gap: 12px;
    margin: 20px auto 24px;
  }
  .program-stats__row {
    gap: 10px;
  }
  .program-stat {
    min-width: 155px;
    max-width: 165px;
    height: 130px;
  }
  .program-stat__content {
    padding: 0 10px;
    gap: 4px;
  }
  .program-stat__value {
    font-size: 30px;
  }
  .program-stat__label {
    font-size: 11px;
    line-height: 1.3;
    margin-block-start: 2px;
    padding: 0 4px;
    text-align: center;
  }

  /* Úprava mezer na mobilu */
  .section--speakers,
  .section--sponzors,
  .section--contacts {
    padding: 30px 0 30px;
  }
  .section--program {
    padding-bottom: 60px;
  }
  .speakers__group {
    margin-top: 40px;
  }
  .speakers__group:first-of-type {
    margin-top: 0;
  }
  .speakers__group-title {
    margin-bottom: 24px;
  }
  .speakers__group--speakers .speakers__grid {
    gap: 28px;
  }
  .speakers .btn--light {
    margin: 40px 0;
  }
  .contacts__title {
    margin-bottom: 40px;
  }
  .contacts__list {
    gap: 36px 24px;
  }
  .section--tickets {
    padding-bottom: 80px;
  }
  .sponsors__group {
    margin-bottom: 24px;
  }
  .sponsors__group-title {
    margin-bottom: 16px;
  }
}

@media (max-height: 650px) and (min-width: 700px) {
  :root {
    --fs-countdown: clamp(48px, min(5vw, 10vh), 96px);
    --fs-hero-kicker: clamp(14px, min(2.6vw, 3.8vh), 30px);
  }

  .hero-content {
    margin: 50px 0 20px;
  }
}

@media (max-height: 560px) {
  .mobile-nav__bg-img {
    height: 500px;
  }
}

@media (max-width: 560px) and (orientation: portrait) {
  .mobile-nav__bg-img {
    object-fit: fill;
  }

  .section--program {
    margin-top: -50px;
    padding-top: 180px;
  }

  .section--program .section__inner,
  .section--tickets .section__inner {
    padding-inline: max(16px, env(safe-area-inset-left))
      max(16px, env(safe-area-inset-right));
  }

  .section--tickets {
    padding-bottom: 80px;
  }
  .contacts__list {
    gap: 32px 20px;
  }

  .hero {
    padding-inline: max(16px, env(safe-area-inset-left))
      max(16px, env(safe-area-inset-right));
  }

  .hero .hours {
    gap: 6px;
  }

  .hero__title {
    font-size: 35px;
  }

  .hero__subtitle {
    font-size: 20px;
  }

  .btn--light {
    padding: 15px 30px;
    font-size: 18px;
  }

  .section__title {
    font-size: 35px;
  }

  .contacts__title {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-inline: max(16px, env(safe-area-inset-left))
      max(16px, env(safe-area-inset-right));
  }

  .speakers__group--speakers .speaker-card__photo,
  .speakers__group--moderators .speaker-card__photo {
    max-width: min(120px, 38vw);
    max-height: 120px;
  }

  .section--program .card-list-item .icon-wrapper {
    max-width: 24px;
    height: 24px;
  }
  .section--program .card-list-item svg {
    max-width: 24px;
    height: 24px;
  }
  .section--program .card-list-item .text,
  .section--program .card-list-item span {
    font-size: 14px;
  }
  .program-stat {
    min-width: 140px;
    max-width: 155px;
    height: 115px;
  }
  .program-stat__content {
    padding: 0 8px;
  }
  .program-stat__value {
    font-size: 26px;
  }
  .program-stat__label {
    font-size: 10px;
  }

  .hero .hours__text-number,
  .hero .hours .vector {
    font-size: clamp(36px, 12vw, 72px);
  }

  .hero .hours__text-label {
    font-size: clamp(10px, 2vw, 14px);
  }

  .hero-content__description-clock-text {
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .section--program {
    margin-top: -40px;
    padding-top: 160px;
  }

  .section--program .section__inner,
  .section--tickets .section__inner {
    padding-inline: max(12px, env(safe-area-inset-left))
      max(12px, env(safe-area-inset-right));
  }

  .section--tickets__content {
    max-width: 100%;
  }

  .btn {
    font-size: 18px;
    min-height: 44px;
  }

  .section--tickets .card .buy-ticket {
    min-height: 44px;
  }

  .section {
    padding: 50px 0 60px;
  }

  .footer__days-value {
    font-size: 136px;
  }

  .speaker-card__photo {
    height: 175px;
    object-fit: contain;
    object-position: top center;
  }

  .contact-card {
    max-width: 100%;
  }

  .contact-card__body {
    font-size: 16px;
  }

  .section--tickets .card {
    max-width: 320px;
  }

  .section--tickets .card h2 {
    font-size: 26px;
    margin: 30px 0 20px;
  }

  .section--tickets .card .text {
    font-size: 16px;
  }

  .section--tickets .section__text {
    font-size: 16px;
  }

  .contact-card__name {
    font-size: 24px;
  }

  .site-footer__logo img {
    margin: 20px;
  }
}

@media (min-width: 1025px) {
  body.page-nabidka-2026.is-scrolled.is-scroll-down .site-header {
    transform: translateY(10px);
  }
}

/* ==========================================================================
   18. ANIMATIONS / JS-DEPENDENT – Hero animace
   ========================================================================== */

html:not(.js) .hero-line-inner,
html:not(.js) .hero__subtitle,
html:not(.js) .hero-cta {
  opacity: 1;
  transform: none;
}

html.js .hero-line {
  display: block;
  overflow: hidden;
}

html.js .hero-line-inner {
  display: inline-block;
  opacity: 0;
  transform: translateY(120%);
  will-change: transform, opacity;
  transition:
    transform 980ms var(--ease-out),
    opacity 720ms ease-out;
}

html.js .hero__subtitle {
  opacity: 0;
  transform: translateY(16px);
  will-change: transform, opacity;
  transition:
    transform 900ms var(--ease-out),
    opacity 700ms ease-out;
}

html.js .hero-cta {
  opacity: 0;
  transform: translateY(0);
  will-change: opacity, transform;
  transition:
    opacity 850ms ease-out,
    transform 850ms var(--ease-out);
}

html.js .hero.hero--desktop.is-hero-animated .hero-line-inner {
  opacity: 1;
  transform: translateY(0);
}

html.js .hero.hero--desktop.is-hero-animated .hero__subtitle {
  opacity: 1;
  transform: translateY(0);
}

html.js .hero.hero--desktop.is-hero-animated .hero-cta {
  opacity: 1;
  transform: translateY(0);
}

html.js .hero.hero--desktop.is-hero-animated .hero-line--1 .hero-line-inner {
  transition-delay: 0ms;
}

html.js .hero.hero--desktop.is-hero-animated .hero-line--2 .hero-line-inner {
  transition-delay: 650ms;
}

html.js .hero.hero--desktop.is-hero-animated .hero__subtitle {
  transition-delay: 1260ms;
}

html.js .hero.hero--desktop.is-hero-animated .hero-cta {
  transition-delay: 1860ms;
}

/* Program coming soon */
.is-hidden {
  display: none !important;
}

.program-page--coming-soon {
  background:
    linear-gradient(rgba(0, 32, 0, 0.5), rgba(0, 32, 0, 0.5)),
    url("assets/img/hero-bg.webp") center/cover no-repeat;
  min-height: 100vh;
}

.program-coming-soon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: clamp(80px, 12vw, 160px) 24px;
  text-align: center;
}

.program-coming-soon__text {
  margin: 0;
  font-family: var(--font-expanded);
  font-weight: var(--fw-bold);
  font-size: clamp(36px, 6vw, 72px);
  color: var(--color-mint);
  line-height: 1.1;
}
