/* ============================================================
   MEDITOVNA — styles.css
   Paleta: teplá bílá + černá. Barvy pouze z fotografií.
   ============================================================ */


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

:root {
  --bg:    #f8f5f0;
  --black: #0d0d0d;
  --mid:   #888;
  --font-serif: 'Outfit', system-ui, sans-serif;
  --font-sans:  'Outfit', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip; /* clip nevytváří scroll container → nerozbíjí position:fixed na iOS */
  scroll-padding-top: 84px; /* ≈ výška fixní navigace; sekce dosedne těsně pod lištu */
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── LAYOUT ── */
.container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 6vw, 5rem);
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: max(1.8rem, calc(1.8rem + env(safe-area-inset-top))) clamp(1.5rem, 6vw, 5rem) 1.8rem;
  transition: background 0.4s, border-color 0.4s;
}
.nav.solid {
  background: rgba(248, 245, 240, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.nav-logo {
  display: flex;
  align-items: center;
  margin-right: auto; /* logo vlevo, zbytek (odkazy + IG) seskupený vpravo */
}
.nav-logo-img {
  height: 22px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1) sepia(0.12) saturate(0.9); /* teplá bílá #f8f5f0 */
  transition: filter 0.4s;
}
.nav.solid .nav-logo-img {
  filter: brightness(0); /* černé logo na světlém pozadí */
}

/* pravá strana navigace: Instagram + hamburger */
.nav-right {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 2.5vw, 1rem);
  margin-left: clamp(1.6rem, 3vw, 2.6rem); /* odstup od odkazů */
}
.nav:not(.solid) .nav-ig { filter: drop-shadow(0 1px 8px rgba(0,0,0,0.3)); }
.nav-ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  margin: -8px;
  color: #fff;
  transition: color 0.4s, opacity 0.2s;
}
.nav-ig svg { width: 21px; height: 21px; display: block; }
.nav.solid .nav-ig { color: var(--black); }
.nav-ig:hover { opacity: 0.55; }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0,0,0,0.35); /* čitelnost nad fotkou */
  position: relative;
  transition: color 0.4s;
  padding-block: 0.5rem; /* zvětšení tap target */
}
.nav.solid .nav-links a { color: #3a3a3a; text-shadow: none; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav.solid .nav-links a:hover { color: var(--black); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px; /* min 44px tap target */
  margin: -10px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 1px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s, background 0.4s;
}
.nav.solid .nav-toggle span { background: var(--black); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(2rem, 8vw, 6rem);
  gap: 0.3rem;
  /* skryto, dokud se neotevře — přes opacity, ať jde animovat */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s ease, visibility 0.45s;
}
.nav-mobile.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-mobile a {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 9vw, 4.5rem);
  font-weight: 300;
  color: var(--black);
  line-height: 1.2;
  /* výchozí stav pro nabíhání zdola */
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.nav-mobile a:hover { opacity: 0.35; }

/* postupné nabíhání odkazů po otevření (stagger) */
.nav-mobile.open a { opacity: 1; transform: none; }
.nav-mobile.open a:nth-child(1) { transition-delay: 0.10s; }
.nav-mobile.open a:nth-child(2) { transition-delay: 0.17s; }
.nav-mobile.open a:nth-child(3) { transition-delay: 0.24s; }
.nav-mobile.open a:nth-child(4) { transition-delay: 0.31s; }
.nav-mobile.open a:nth-child(5) { transition-delay: 0.38s; }
.nav-mobile.open a:nth-child(6) { transition-delay: 0.45s; }

/* ── PLACEHOLDER ── */
.placeholder {
  background: #e8e4de;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b0a898;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-sans);
}

/* ── 1. HERO ── */
.hero {
  height: 100svh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  will-change: transform;
}
.hero-media img,
.hero-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-media .placeholder { width: 100%; height: 100%; background: #ccc; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.08) 0%,
    rgba(0,0,0,0.42) 100%
  );
}

.hero-text {
  position: absolute;
  bottom: clamp(2.5rem, 7vw, 5rem);
  left: clamp(1.5rem, 6vw, 5rem);
  color: #fff;
}
.hero-title {
  margin-bottom: 1.2rem;
}
.hero-logo-img {
  width: clamp(260px, 55vw, 720px);
  height: auto;
  display: block;
  filter: brightness(0) invert(1) sepia(0.12) saturate(0.9); /* teplá bílá #f8f5f0 */
}
.hero-sub {
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  opacity: 0.7;
  text-transform: lowercase;
}

.hero-cta {
  position: absolute;
  bottom: clamp(2.8rem, 7.5vw, 5.5rem);
  right: clamp(1.5rem, 6vw, 5rem);
}
.hero-cta a {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.hero-cta a:hover { color: #fff; border-color: #fff; }

/* ── STORIES DOTS ── */
.stories-dots {
  position: absolute;
  bottom: clamp(1.8rem, 5vw, 3rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
  align-items: center;
}
.stories-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: background 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}
.stories-dot--active {
  background: #fff;
  transform: scale(1.25);
}

/* ── STORY SLIDES ── */
.story-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.story-slide--active {
  opacity: 1;
  pointer-events: auto;
}

.story-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-caption {
  position: absolute;
  bottom: clamp(2.5rem, 7vw, 5rem);
  left: clamp(1.5rem, 6vw, 5rem);
}
.story-caption-label {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ── STORY MUTE BUTTON ── */
.story-mute-btn {
  position: absolute;
  bottom: clamp(1.8rem, 5vw, 3rem);
  right: clamp(1.5rem, 4vw, 3rem);
  z-index: 15;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background 0.2s;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.story-mute-btn:hover { background: rgba(255,255,255,0.28); }
.story-mute-btn svg { width: 18px; height: 18px; display: block; }
.story-mute-btn .icon-unmuted { display: none; }
.story-mute-btn.unmuted .icon-muted { display: none; }
.story-mute-btn.unmuted .icon-unmuted { display: block; }

/* ── STORY TAP ZÓNY ── */
.story-tap {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  z-index: 5;
  cursor: pointer;
}
.story-tap--prev { left: 0; }
.story-tap--next { right: 0; }

/* ── TYPO UTILITIES ── */
section { padding-top: clamp(3.5rem, 9vw, 7rem); padding-bottom: clamp(3.5rem, 9vw, 7rem); }

.label {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 2rem;
}

.h-display {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 2rem;
  color: var(--black);
}

.heading-logo-img {
  height: clamp(2rem, 5vw, 3.5rem);
  width: auto;
  display: block;
  filter: brightness(0);
  margin: 0 auto 2rem;
}

.body-text {
  font-size: clamp(1rem, 1.5vw, 1.05rem);
  font-weight: 300;
  line-height: 1.95;
  color: #4a4a4a;
  max-width: 500px;
}
.body-text p + p { margin-top: 1.1rem; }
.body-text strong { color: var(--black); font-weight: 400; }
.body-text a {
  text-decoration: underline;
  text-decoration-color: rgba(0,0,0,0.25);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}
.body-text a:hover {
  text-decoration-color: rgba(0,0,0,0.7);
}

.link-line {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.link-line:hover { opacity: 0.35; }

/* ── KRUHOVÝ PÁS ── */
.circle-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 3rem);
  padding: clamp(4rem, 10vw, 8rem) clamp(1.5rem, 6vw, 5rem);
}

.circle-item {
  width: clamp(160px, 22vw, 340px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.55s ease;
}

.circle-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* hover: aktivní kruh se zvětší, ostatní ztlumí */
.circle-strip:hover .circle-item {
  opacity: 0.35;
}
.circle-strip:hover .circle-item:hover {
  opacity: 1;
  transform: scale(1.1);
}
.circle-strip:hover .circle-item:hover img {
  transform: scale(1.05);
}

/* touch: stejný efekt přes :focus nebo třídu z JS */
.circle-item.active {
  opacity: 1 !important;
  transform: scale(1.1);
}
.circle-item.active img {
  transform: scale(1.05);
}
.circle-strip.touched .circle-item:not(.active) {
  opacity: 0.35;
}

@media (max-width: 680px) {
  .circle-strip {
    gap: 0.8rem;
    padding-inline: 1rem;
  }
  .circle-item {
    width: clamp(130px, 40vw, 200px);
  }
}

/* ── FULL-WIDTH FOTO STRIP ── */
.media-strip { width: 100%; overflow: hidden; }
.media-strip img,
.media-strip video {
  width: 100%;
  height: clamp(340px, 55vw, 720px);
  object-fit: cover;
  object-position: center 40%; /* drží skupinu (tváře jsou v horní půli) */
}
.media-strip .placeholder { width: 100%; height: clamp(340px, 55vw, 720px); }

/* ── 2. HÁČEK ── */
.hook { padding: 0; }

.hook-fullquote {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(4rem, 12vw, 10rem) clamp(1.5rem, 8vw, 10rem);
}

.hook-big-quote {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--black);
  text-align: center;
  max-width: 18ch;
}

.hook-video-full {
  width: 100%;
  position: relative;
}
.hook-video-full video {
  width: 100%;
  height: clamp(300px, 56vw, 760px); /* mírnější crop než dřív (vch. zůstane vidět) */
  object-fit: cover;
  display: block;
}
.hook-mute-btn {
  position: absolute;
  bottom: clamp(1.2rem, 4vw, 2.2rem);
  right: clamp(1.2rem, 4vw, 2.2rem);
  z-index: 15;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem 0.45rem 0.65rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  transition: background 0.25s;
}
.hook-mute-btn:hover { background: rgba(255,255,255,0.28); }
.hook-mute-btn svg { width: 15px; height: 15px; display: block; flex-shrink: 0; }
.hook-mute-btn .icon-unmuted { display: none; }
.hook-mute-btn.unmuted .icon-muted { display: none; }
.hook-mute-btn.unmuted .icon-unmuted { display: block; }
/* po zapnutí zvuku jen ikona — sbalí se na kolečko */
.hook-mute-btn.unmuted { padding: 0.5rem; gap: 0; }
.hook-mute-btn.unmuted .hook-mute-label { display: none; }
.hook-mute-label {
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.hook-video-full .placeholder {
  width: 100%;
  height: clamp(400px, 60vw, 860px);
}

/* ── 3. CO JE ── */
.what-text-only {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}
.what-text-only .body-text {
  max-width: 100%;
  margin-inline: auto;
}

/* ── 4. PŘÍBĚH ── */
.story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin-top: 4rem;
}
.story-item { overflow: hidden; }
.story-item:first-child { grid-column: 1 / -1; }
.story-item video, .story-item img {
  width: 100%;
  height: clamp(240px, 32vw, 460px);
  object-fit: cover;
  transition: transform 0.7s ease;
}
.story-item:first-child video, .story-item:first-child img { height: clamp(320px, 45vw, 600px); }
.story-item:hover video, .story-item:hover img { transform: scale(1.03); }
.story-item .placeholder { width: 100%; height: clamp(240px, 32vw, 460px); }
.story-item:first-child .placeholder { height: clamp(320px, 45vw, 600px); }

/* ── 4. PŘÍBĚH — koláž ── */
.pribeh-visual {
  width: 100%;
  max-width: 680px;          /* na desktopu necentrovaná čtvercová koláž nepřeroste obrazovku */
  margin-inline: auto;
  margin-block: clamp(2.5rem, 5vw, 4rem);
}

/* ── PRUH KOLÁŽÍ (vodorovně posuvný) ── */
.strip-gallery {
  position: relative;
  width: 100%;
  margin-block: clamp(2.5rem, 5vw, 4rem);
}
.strip-scroll {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: ew-resize;     /* jemný náznak vodorovného pohybu (desktop) */
}
.strip-scroll::-webkit-scrollbar { display: none; }
.strip-img {
  height: clamp(280px, 40vw, 460px);
  width: auto;
  max-width: none;
  flex: 0 0 auto;        /* řada dílů těsně vedle sebe, bez zmenšování */
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

/* ── ČASOVÁ OSA na pruhu (měsíc+rok jako korálek na přerušené niti) ── */
.strip-timeline {
  position: absolute;
  left: clamp(16px, 5vw, 30px);
  right: clamp(16px, 5vw, 30px);
  bottom: 16px;
  height: 14px;
  pointer-events: none;
  z-index: 2;
}
.tl-line {
  position: absolute;
  top: 50%;
  height: 1px;
  background: rgba(255,255,255,0.75);
  transform: translateY(-50%);
}
#tlLineLeft { left: 0; }
#tlLineRight { right: 0; }
.tl-label {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.65);
}
.pribeh-visual img {
  width: 100%;
  height: auto;
  display: block;
}
.pribeh-visual .placeholder {
  width: 100%;
  height: clamp(320px, 48vw, 600px);
}

/* ── 5. MEZILES ── */
.meziles-visual {
  width: 100%;
  margin-block: clamp(3rem, 6vw, 5rem);
}
.meziles-visual video {
  width: 100%;
  height: clamp(360px, 55vw, 720px);
  object-fit: cover;
  display: block;
}
.meziles-visual img {
  width: 100%;
  max-width: 1000px;   /* storyboard celý, vycentrovaný, nepřeroste */
  height: auto;
  margin-inline: auto;
  display: block;
}
.meziles-visual .placeholder {
  width: 100%;
  height: clamp(360px, 55vw, 720px);
}

/* ── 6. PŘÍSTUP ── */
.access-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.access-image { aspect-ratio: 3/4; overflow: hidden; }
.access-image img { width: 100%; height: 100%; object-fit: cover; }
.access-image .placeholder { width: 100%; height: 100%; min-height: 400px; }

/* ── 7. PŘÍSPĚVEK ── */
.support-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.support-image { aspect-ratio: 3/4; overflow: hidden; order: 2; }
.support-image img { width: 100%; height: 100%; object-fit: cover; }
.support-image .placeholder { width: 100%; height: 100%; min-height: 400px; }

.support-box {
  margin-top: 3rem;
  padding: 2.5rem;
  border: 1px solid #ddd8d0;
  max-width: 420px;
  margin-inline: auto;
  text-align: center;
}
.support-box-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.support-box-qr img {
  width: 130px;
  height: 130px;
  display: block;
}
.support-box-qr-label {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #777;
}
.support-box-pay-btn {
  display: none; /* skryto na desktopu */
}

.support-sponsor {
  margin-top: 2rem;
  max-width: 420px;
  margin-inline: auto;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.7;
  color: #888;
}
.support-sponsor a {
  color: var(--black);
  text-decoration: underline;
  text-decoration-color: rgba(0,0,0,0.25);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}
.support-sponsor a:hover { text-decoration-color: rgba(0,0,0,0.7); }

/* ── FEEDBACK ODKAZ (pod příspěvkovým boxem) ── */
.support-feedback {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.support-feedback-note {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 300;
  color: #555;
  margin-bottom: 1.2rem;
}
.support-feedback-thanks {
  margin-top: 2.6rem;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem); /* shodné s běžným textem */
  font-weight: 300;
  color: var(--black);
}

@media (max-width: 680px) {
  .support-box-qr { display: none; }
  .support-box-pay-btn {
    display: inline-block;
    margin-top: 1.5rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-bottom: 1px solid #ccc;
    padding-bottom: 2px;
    color: #bbb;
    cursor: not-allowed;
    pointer-events: none;
  }
}
.support-box-label { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mid); margin-bottom: 0.6rem; }
.support-box-amount {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1;
  color: var(--black);
  margin-bottom: 1rem;
  white-space: nowrap;
}
.support-box-note {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  color: #888;
}

/* ── 8. VIZE — velká typografická sekce ── */
.vision-section {
  text-align: center;
  padding-top: clamp(7rem, 16vw, 15rem);
  padding-bottom: clamp(7rem, 16vw, 15rem);
  border-top: 1px solid #e8e3db;
  border-bottom: 1px solid #e8e3db;
}
.vision-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8.5vw, 8rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.025em;
  max-width: 960px;
  margin: 0 auto 3rem;
  color: var(--black);
}
.vision-body {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 300;
  line-height: 1.95;
  color: #777;
  max-width: 460px;
  margin: 0 auto 3.5rem;
}
.vision-body p + p { margin-top: 1rem; }
.vision-mantra {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #bbb;
}

/* ── 9. PARTNEŘI ── */
.partners-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.partners-image { aspect-ratio: 4/5; overflow: hidden; }
.partners-image img { width: 100%; height: 100%; object-fit: cover; }
.partners-image .placeholder { width: 100%; height: 100%; min-height: 400px; }

/* ── 10. KONTAKT ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.contact-intro {
  font-size: clamp(1rem, 1.5vw, 1.05rem);
  font-weight: 300;
  line-height: 1.95;
  color: #4a4a4a; /* sjednoceno s běžným textem (čitelnost, ne vyšisované) */
  max-width: 420px;
  margin: 0.5rem auto 3rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 420px;
  margin-inline: auto;
  text-align: left;
}
.contact-item {
  display: flex;
  gap: 2rem;
  align-items: baseline;
  padding: 1.4rem 0;
  border-bottom: 1px solid #e8e3db;
}
.contact-item:first-child { border-top: 1px solid #e8e3db; }
.contact-item-key {
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #bbb;
  min-width: 80px;
  flex-shrink: 0;
}
.contact-item-val {
  font-size: 1rem;
  font-weight: 300;
  color: var(--black);
}
.contact-item-val a { transition: opacity 0.2s; }
.contact-item-val a:hover { opacity: 0.4; }

.contact-btns { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 3rem; justify-content: center; }
.btn-contact {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.btn-contact:hover { opacity: 0.35; }

.contact-image { aspect-ratio: 3/4; overflow: hidden; }
.contact-image img { width: 100%; height: 100%; object-fit: cover; }
.contact-image .placeholder { width: 100%; height: 100%; min-height: 400px; }

/* ── FOOTER ── */
footer {
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.5rem, 6vw, 5rem);
  padding-bottom: max(clamp(3.5rem, 8vw, 6rem), env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  border-top: 1px solid #e8e3db;
}
.footer-logo {
  height: clamp(0.95rem, 2vw, 1.25rem);
  width: auto;
  display: block;
  filter: brightness(0);
  opacity: 0.25;
}
.footer-note {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #bbb;
}
.footer-note a {
  color: #999;
  text-decoration: underline;
  text-decoration-color: rgba(0,0,0,0.18);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}
.footer-note a:hover { text-decoration-color: rgba(0,0,0,0.55); }
.footer-mantra {
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #cbcbcb;
}
.footer-ig {
  display: inline-flex;
  margin-top: 0.4rem;
  color: #aaa;
  transition: color 0.2s;
}
.footer-ig svg { width: 22px; height: 22px; display: block; }
.footer-ig:hover { color: var(--black); }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hook-layout, .what-layout, .meziles-layout,
  .access-layout, .support-layout, .partners-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hook-video { aspect-ratio: 16/10; }
  .meziles-image, .access-image, .support-image, .partners-image { aspect-ratio: 4/3; }
  .support-image { order: 0; }
  .contact-image { display: none; }
  .what-img-secondary { width: 55%; }
  .story-grid { grid-template-columns: 1fr; }
  .story-item:first-child { grid-column: 1; }
  footer { flex-direction: column; gap: 0.4rem; }
  .footer-note { text-align: left; }
}

@media (max-width: 520px) {
  .support-box { padding: 1.8rem; }
  .hero-title { letter-spacing: -0.03em; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .story-item:hover video,
  .story-item:hover img { transform: none; }
  .nav-mobile, .nav-mobile a { transition: none; }
  .nav-mobile a { transform: none; }
}

/* ============================================================
   FEEDBACK STRÁNKA
   ============================================================ */
.feedback-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(4rem, 12vw, 8rem) clamp(1.5rem, 6vw, 5rem);
  padding-top: max(4rem, calc(4rem + env(safe-area-inset-top)));
  padding-bottom: max(4rem, env(safe-area-inset-bottom));
}
.feedback-wrap {
  width: 100%;
  max-width: 540px;
  text-align: center;
}
.feedback-back {
  display: inline-block;
  margin-bottom: 3rem;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.2s;
}
.feedback-back:hover { color: var(--black); }
.feedback-logo {
  height: clamp(1.4rem, 4vw, 2rem);
  width: auto;
  margin: 0 auto 2.5rem;
  filter: brightness(0);
}
.feedback-intro {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: #888;
  max-width: 420px;
  margin: 0.5rem auto 3.5rem;
}

/* Formulář */
.feedback-form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.feedback-field { display: flex; flex-direction: column; }
.feedback-field label {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.9rem;
}
.feedback-field input,
.feedback-field textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--black);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.18);
  padding: 0.5rem 0;
  transition: border-color 0.25s;
  resize: vertical;
}
.feedback-field textarea { min-height: 5.5rem; line-height: 1.6; }
.feedback-field input::placeholder,
.feedback-field textarea::placeholder {
  color: #bbb;
  font-weight: 300;
}
.feedback-field input:focus,
.feedback-field textarea:focus {
  outline: none;
  border-bottom-color: var(--black);
}

.feedback-submit {
  align-self: center;
  margin-top: 1rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--black);
  padding: 0 0 4px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.feedback-submit:hover { opacity: 0.35; }

.feedback-thanks {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--black);
}
