/* ============================================================
   Rande s Měsícem — Cinematic bold (návrh 2a)
   Samostatný styl stránky. Mobile-first.
   bg #0a0a0d · text #f4f1ea · akcent #e8963c
   ============================================================ */

:root {
  --bg: #0a0a0d;
  --bg-soft: #15151d;
  --paper: #f4f1ea;
  --amber: #e8963c;
  --amber-deep: #c56f1d;
  --mut: rgba(244, 241, 234, 0.72);
  --mut-2: rgba(244, 241, 234, 0.5);
  --line: rgba(244, 241, 234, 0.14);
  --todo-bg: #ffe9a8;
  --todo-ink: #7a5b00;
  --pad: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--paper);
  font-family: "Manrope", -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

.todo {
  background: var(--todo-bg);
  color: var(--todo-ink);
  border-radius: 5px;
  padding: 0 6px;
  font-weight: 700;
  white-space: nowrap;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #101018;
  display: flex;
  flex-direction: column;
}

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

.hero .shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10,10,13,0.60) 0%, rgba(10,10,13,0.18) 40%, rgba(10,10,13,0.72) 100%);
}

.hero-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px var(--pad);
}

.wordmark {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  color: var(--paper);
  text-decoration: none;
}

.wordmark span { color: var(--amber); }

.hero-nav { display: flex; align-items: center; gap: 22px; }

.hero-nav a.navlink {
  display: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mut);
  text-decoration: none;
}

.pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--paper);
  padding: 11px 22px;
  border-radius: 999px;
  text-decoration: none;
}

.hero-main {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px var(--pad);
}

.hero-main h1 {
  font-weight: 800;
  font-size: clamp(52px, 15vw, 120px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.hero-main h1 span { color: var(--amber); }

.hero-main .sub {
  font-size: 17px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--mut);
  max-width: 440px;
  margin-top: 22px;
}

.hero-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 0 var(--pad) 26px;
  font-size: 12px;
  font-weight: 600;
  color: var(--mut-2);
}

/* ---------- marquee ---------- */

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-inner {
  display: inline-block;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(244,241,234,0.9);
  animation: marquee 28s linear infinite;
}

.marquee-inner span { color: var(--amber); padding: 0 14px; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-inner { animation: none; }
}

/* ---------- sekce ---------- */

section { padding: 70px var(--pad); }

.statement h2 {
  font-weight: 800;
  font-size: clamp(34px, 8vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  max-width: 720px;
}

.statement h2 .dot { color: var(--amber); }

.statement h2 .ghost { color: rgba(244,241,234,0.45); }

.statement-row {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}

.statement-row p {
  font-size: 17px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--mut);
  max-width: 480px;
}

.statement-row p strong { color: var(--paper); }

.arrow-link {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper);
  text-decoration: none;
  border-bottom: 2px solid var(--amber);
  padding-bottom: 6px;
  align-self: flex-start;
  white-space: nowrap;
}

/* ---------- kroky ---------- */

.steps-block { padding-top: 0; }

.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 8px 20px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.step:last-child { border-bottom: 1px solid var(--line); }

.step .num {
  font-size: 15px;
  font-weight: 800;
  color: var(--amber);
}

.step h3 {
  font-size: clamp(20px, 5.5vw, 26px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.15;
}

.step p {
  grid-column: 2;
  font-size: 14px;
  color: var(--mut-2);
  max-width: 340px;
}

/* ---------- galerie ---------- */

.gallery h2, .section-title {
  font-weight: 800;
  font-size: clamp(30px, 7vw, 38px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.gallery-grid { display: grid; gap: 14px; }

.tile {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  min-height: 220px;
  background:
    repeating-linear-gradient(-45deg, rgba(232,150,60,0.05) 0 16px, rgba(232,150,60,0.10) 16px 32px),
    var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tile .ph-note {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(232,150,60,0.85);
  text-align: center;
  padding: 0 14px;
}

.tile .cap {
  position: absolute;
  bottom: 14px;
  left: 16px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.tile .cap small {
  color: var(--mut-2);
  font-weight: 500;
  text-transform: none;
  font-size: 13px;
}

/* ---------- v ceně / piknik ---------- */

.cards { padding-top: 0; display: grid; gap: 16px; }

.card {
  border: 1px solid rgba(244,241,234,0.16);
  border-radius: 4px;
  padding: 28px 24px;
}

.card.tinted { background: rgba(232,150,60,0.06); }

.card .label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
}

.card ul { list-style: none; display: grid; gap: 12px; }

.card li {
  font-size: 15px;
  font-weight: 500;
  color: var(--mut);
}

.card li strong { color: var(--paper); }

.card li.dim { color: var(--mut-2); }

/* ---------- termíny / kalendář ---------- */

.terminy { padding-top: 0; }

.terminy p { color: var(--mut); max-width: 520px; }

.ph-calendar {
  margin-top: 22px;
  border: 2px dashed rgba(232,150,60,0.6);
  border-radius: 4px;
  background: rgba(232,150,60,0.06);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 24px;
  color: var(--amber);
  font-weight: 600;
  font-size: 0.95rem;
}

/* ---------- formulář (světlý blok) ---------- */

.form-wrap { padding: 0 var(--pad) 40px; }

.form-panel {
  border-radius: 4px;
  background: var(--paper);
  color: var(--bg);
  padding: 44px 24px;
}

.form-panel h2 {
  font-weight: 800;
  font-size: clamp(34px, 8vw, 44px);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.form-panel h2 span { color: var(--amber-deep); }

.form-panel .note {
  font-size: 15px;
  font-weight: 500;
  color: rgba(10,10,13,0.6);
  margin: 14px 0 28px;
  max-width: 460px;
}

.form-panel form { display: grid; gap: 22px; }

.f-field { display: grid; gap: 6px; }

.f-field label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(10,10,13,0.55);
}

.f-field input[type="text"],
.f-field input[type="email"],
.f-field input[type="tel"],
.f-field input[type="date"],
.f-field select {
  width: 100%;
  border: none;
  border-bottom: 2px solid var(--bg);
  background: transparent;
  padding: 10px 2px;
  font: inherit;
  font-weight: 600;
  color: var(--bg);
  border-radius: 0;
}

.f-field input:focus, .f-field select:focus {
  outline: none;
  border-bottom-color: var(--amber-deep);
}

.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }

.chip-row label {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(10,10,13,0.3);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.chip-row label:has(input:checked) {
  border-color: var(--amber-deep);
  outline: 2px solid var(--amber-deep);
}

.submit-btn {
  justify-self: start;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--bg);
  padding: 18px 40px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease;
}

.submit-btn:hover { background: #26262e; }

.hp-field { position: absolute; left: -9999px; opacity: 0; }

/* ---------- cross-link + footer ---------- */

.cross-link {
  text-align: center;
  padding: 30px var(--pad);
  font-size: 15px;
  color: var(--mut);
}

.cross-link a { color: var(--amber); }

footer {
  border-top: 1px solid var(--line);
  padding: 26px var(--pad) 100px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  color: var(--mut-2);
}

footer a { color: var(--mut-2); }

/* ---------- sticky CTA (mobil) ---------- */

.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 60;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(10,10,13,0.94);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
}

.sticky-cta .pill {
  display: block;
  text-align: center;
  background: var(--amber);
  color: #201200;
  padding: 15px 22px;
  font-size: 13px;
}

/* ---------- desktop ---------- */

@media (min-width: 760px) {
  :root { --pad: 40px; }

  .hero-nav a.navlink { display: inline; }

  section { max-width: 1100px; margin: 0 auto; }

  .statement-row { flex-direction: row; gap: 60px; justify-content: space-between; align-items: flex-start; }

  .step { grid-template-columns: 44px 1fr 300px; align-items: baseline; }
  .step p { grid-column: auto; }

  .gallery-grid {
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 220px 220px;
  }
  .tile.big { grid-row: span 2; min-height: 0; }
  .tile { min-height: 0; }

  .cards { grid-template-columns: 1fr 1fr; max-width: 1100px; margin: 0 auto; }

  .form-wrap { max-width: 1100px; margin: 0 auto; }
  .form-panel { padding: 56px 48px; }
  .form-panel .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

  footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 34px;
  }

  .sticky-cta { display: none; }
}
