/* ─────────────────────────────────────────────────────────
   Diary of the Day — Landing Page Stylesheet (v2)
   Clean white design. Photo placeholders ready for swap.
   Typography centralized in :root for easy font swap.
   ───────────────────────────────────────────────────────── */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;1,400;1,500&display=swap");

:root {
  /* Typography — swappable */
  --font-serif: "Playfair Display", "Tiempos Headline", Georgia, serif;
  --font-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;

  /* Palette — clean white-first */
  --bg:         #ffffff;
  --bg-soft:    #fafaf9;
  --bg-dark:    #111111;
  --ink:        #111111;
  --ink-soft:   #4a4a4a;
  --ink-mute:   #8a8a8a;
  --line:       #ececec;
  --line-soft:  #f4f4f4;
  --accent:     #c9a961;
  --accent-deep:#8a7242;

  /* Sizing */
  --max-w: 1200px;
  --gutter: clamp(20px, 4vw, 56px);
}

/* ─── Reset / Base ─── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  font-weight: 400;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

[data-en]:not([data-cs]) { display: none; }
html[lang="en"] [data-cs]:not([data-en]) { display: none; }
html[lang="en"] [data-en]:not([data-cs]) { display: inline; }

/* ─── Top navigation ─── */
.land-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
}
.land-nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 36px var(--gutter) 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.land-brand {
  display: inline-block;
  color: var(--ink);
  line-height: 0;
  text-decoration: none;
}
.land-brand:hover { color: #000; }
.land-brand svg { display: block; width: 240px; height: auto; }
@media (max-width: 640px) {
  .land-brand svg { width: 180px; }
  .land-nav-inner { padding: 26px var(--gutter) 16px; }
}
.land-nav-links {
  display: flex; align-items: center; gap: 32px;
  font-size: 14px;
  color: var(--ink-soft);
}
.land-nav-links a { transition: color .15s; }
.land-nav-links a:hover { color: var(--ink); }
.land-cta {
  background: var(--ink);
  color: #fff;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  transition: background .15s;
}
.land-cta:hover { background: #333; }
.land-lang {
  font-size: 11px; color: var(--ink-mute); letter-spacing: .15em;
  text-transform: uppercase;
}
.land-lang b { color: var(--ink); font-weight: 600; }

/* ─── HERO — split: text left, image right ─── */
.hero {
  padding: clamp(60px, 10vw, 120px) var(--gutter) clamp(80px, 10vw, 120px);
  max-width: var(--max-w); margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero-text { text-align: left; }
.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 28px;
  padding: 6px 16px;
  border: 1px solid var(--line);
  border-radius: 100px;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.025em;
  color: var(--ink);
  margin-bottom: clamp(8px, 1.2vw, 16px);
}
.hero h1 i { font-style: normal; color: var(--ink); }
.hero-italic-line {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -.4px;
  color: var(--ink);
  margin: 0 0 clamp(20px, 2.6vw, 32px);
}
.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-soft);
  margin: 0 0 16px;
  line-height: 1.55;
  font-weight: 300;
  max-width: 540px;
}
.hero-summary {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--ink);
  letter-spacing: -.1px;
  margin: 0 0 clamp(28px, 4vw, 40px);
  font-weight: 600;
  max-width: 540px;
}
.hero-actions {
  display: flex; justify-content: flex-start; gap: 14px; flex-wrap: wrap;
}
.hero-tagline {
  margin: 22px 0 0;
  font-family: var(--font-serif, Playfair Display, Georgia, serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-secondary, rgba(0, 0, 0, 0.6));
  line-height: 1.5;
  letter-spacing: 0.1px;
}
.hero-image-side {
  position: relative;
  /* Clean white frame, soft shadow only */
  background: #fff;
  padding: 14px 14px 18px;
  border: 0;
  box-shadow: 0 16px 48px -12px rgba(0, 0, 0, .14);
}
/* Logo + year stacked above photo — centered in white area */
.hero-stack-year {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 2px 0 10px;
  color: var(--ink, #1a1a1a);
}
.hero-stack-logo {
  display: block;
  width: 105px;
  height: auto;
  margin: 0 auto;
}
.hero-stack-year-num {
  font-family: Didot, 'Bodoni 72', 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.6px;
  color: var(--ink, #1a1a1a);
  margin-top: -3px;
  text-align: center;
}

/* Stacked images — opacity fade transition */
.hero-stack {
  display: grid;
  position: relative;
  width: 100%;
  /* Tall enough to fit the new 2025 mosaic with month labels (~1:1.124 / 3000×3372) */
  aspect-ratio: 1 / 1.124;
  background: #fff;
  overflow: hidden;
}
.hero-stack img {
  width: 100%;
  height: 100%;
  /* contain — show whole mosaic including month names, no cropping */
  object-fit: contain;
  display: block;
  /* Ochrana osobních fotek — zakázat drag/long-press save, zoom, kontextové menu */
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.hero-stack-fig {
  grid-area: 1 / 1;
  margin: 0;
  position: relative;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero-stack-fig.active { opacity: 1; }

/* Year dots — compact for many years (14+) */
.hero-stack-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 14px;
  max-width: 100%;
}
.hero-stack-dots button {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 0;
  background: #d8d4cc;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s, width .25s;
  flex: 0 0 auto;
}
.hero-stack-dots button:hover { background: #888; transform: scale(1.4); }
.hero-stack-dots button.active {
  background: var(--ink);
  width: 22px;
  border-radius: 100px;
  transform: none;
}
.btn-primary, .btn-secondary {
  padding: 15px 34px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .01em;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .2s;
  cursor: pointer;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover { background: #333; transform: translateY(-1px); box-shadow: 0 12px 32px rgba(0,0,0,.12); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-secondary:hover { border-color: var(--ink); }

/* (hero-image-wrap removed — image now lives inside .hero as side-by-side) */

/* ─── Diary section — second hero block, mirrors .hero layout ─── */
.diary-section {
  padding: clamp(60px, 8vw, 120px) var(--gutter) clamp(80px, 10vw, 140px);
  background: var(--bg);
}
.diary-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.diary-text { text-align: left; }
.diary-h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.025em;
  color: var(--ink);
  margin: 24px 0 clamp(8px, 1.2vw, 16px);
}
.diary-italic-line {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -.4px;
  color: var(--ink);
  margin: 0 0 clamp(20px, 2.6vw, 32px);
}
.diary-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-soft);
  margin: 0 0 16px;
  line-height: 1.55;
  font-weight: 300;
  max-width: 540px;
}
.diary-summary {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--ink);
  letter-spacing: -.1px;
  margin: 0;
  font-weight: 600;
  max-width: 540px;
}
.diary-image-side {
  position: relative;
  background: #fff;
  padding: 14px 14px 60px;
  border-radius: 4px;
  box-shadow: 0 24px 70px rgba(0,0,0,.10), 0 0 0 1px rgba(0,0,0,.04);
  /* slight tilt for editorial feel */
  transform: rotate(-1deg);
}
.diary-image-side img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 2px;
}
.diary-image-caption {
  position: absolute;
  left: 0; right: 0; bottom: 16px;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
@media (max-width: 900px) {
  .diary-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .diary-text { text-align: center; }
  .diary-sub, .diary-summary { margin-inline: auto; }
  .diary-image-side { max-width: 480px; margin: 0 auto; transform: none; }
}

/* ─── (removed) Data showcase — cycling stats preview ─── */
.data-showcase {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  background: linear-gradient(180deg, var(--bg) 0%, #f6f4ee 100%);
}
.ds-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.ds-text { text-align: left; }
.ds-title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -.025em;
  margin: 24px 0 16px;
  color: var(--ink);
}
.ds-title i { font-style: italic; color: var(--ink); }
.ds-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-soft);
  line-height: 1.55;
  font-weight: 300;
  max-width: 520px;
}

/* Right side — stack of cycling slides */
.ds-image-side {
  position: relative;
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0,0,0,.08), 0 0 0 1px rgba(0,0,0,.04);
}
.ds-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 10px;
  overflow: hidden;
  background: #faf9f5;
}
.ds-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 3vw, 36px);
}
.ds-slide.active { opacity: 1; }
.ds-slide-title {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 500;
  letter-spacing: -.2px;
  margin-bottom: 18px;
  color: var(--ink);
}

/* Slide 1 — Year overview (dark, gold accent) */
.ds-slide-overview {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2520 100%);
  color: #fff;
  flex-direction: column;
  text-align: center;
}
.ds-overview-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 6px;
}
.ds-overview-year {
  font-family: var(--font-serif);
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 400;
  letter-spacing: -2px;
  color: #c9a961;
  line-height: 1;
  margin-bottom: clamp(22px, 3vw, 36px);
}
.ds-overview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 24px) clamp(8px, 1.5vw, 16px);
  width: 100%;
  max-width: 360px;
}
.ds-overview-stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1;
}
.ds-overview-stat span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,.55);
}

/* Slide 2 — Heatmap (12 rows × 31 cells) */
.ds-slide-heatmap {
  background: #faf9f5;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding-top: clamp(28px, 4vw, 40px);
}
.ds-heatmap {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}
.ds-hm-row {
  display: grid;
  grid-template-columns: 24px repeat(31, 1fr);
  gap: 2px;
  align-items: center;
}
.ds-hm-month {
  font-size: 9px;
  font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  text-align: right;
  padding-right: 4px;
}
.ds-hm-cell {
  aspect-ratio: 1;
  background: #f0ebe0;
  border-radius: 1.5px;
  min-width: 4px;
}
.ds-hm-cell.l1 { background: #e8d8b0; }
.ds-hm-cell.l2 { background: #d4b975; }
.ds-hm-cell.l3 { background: #b8902f; }
.ds-hm-cell.l4 { background: #8a6a23; }

/* Slide 3 — Top lidé (horizontal bars) */
.ds-slide-people {
  background: #faf9f5;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding-top: clamp(28px, 4vw, 40px);
}
.ds-people-list { list-style: none; padding: 0; margin: 0; flex: 1; display: flex; flex-direction: column; justify-content: center; gap: clamp(10px, 1.5vw, 16px); }
.ds-people-item {
  display: grid;
  grid-template-columns: 80px 1fr 36px;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ink);
}
.ds-people-name { font-weight: 500; }
.ds-people-bar {
  height: 8px;
  background: linear-gradient(90deg, #b8902f 0%, #d4b975 100%);
  border-radius: 4px;
}
.ds-people-count {
  text-align: right;
  font-weight: 600;
  color: var(--ink-soft);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

/* Slide 4 — Top podle typu (emoji list) */
.ds-slide-types {
  background: #faf9f5;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding-top: clamp(28px, 4vw, 40px);
}
.ds-types-list { list-style: none; padding: 0; margin: 0; flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 0; }
.ds-types-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(10px, 1.5vw, 14px) 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
  font-size: 14px;
  color: var(--ink);
}
.ds-types-item:last-child { border-bottom: 0; }
.ds-types-label { display: flex; align-items: center; gap: 12px; }
.ds-types-emoji { font-size: 18px; }
.ds-types-count {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--ink-soft);
}

/* Slide 5 — Mapa cest (simple SVG with pins) */
.ds-slide-map {
  background: linear-gradient(135deg, #f4f1ea 0%, #e8e3d5 100%);
  flex-direction: column;
  justify-content: center;
}
.ds-map-svg {
  width: 100%;
  max-width: 360px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.06));
}
.ds-map-summary {
  margin-top: 18px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: .04em;
}
.ds-map-summary strong {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  margin: 0 4px;
}

/* Stack dots (cycle navigation) */
.ds-stack-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.ds-stack-dots button {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(0,0,0,.15);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.ds-stack-dots button:hover { background: rgba(0,0,0,.35); }
.ds-stack-dots button.active { background: var(--ink); transform: scale(1.2); }

/* Mobile */
@media (max-width: 900px) {
  .ds-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .ds-text { text-align: center; }
  .ds-sub { margin-inline: auto; }
  .ds-image-side { max-width: 480px; margin: 0 auto; }
}
@media (max-width: 480px) {
  .ds-overview-stats { grid-template-columns: repeat(2, 1fr); }
  .ds-people-item { grid-template-columns: 70px 1fr 30px; font-size: 13px; }
  .ds-hm-row { grid-template-columns: 18px repeat(31, 1fr); }
  .ds-hm-month { font-size: 8px; }
}

/* ─── Features ─── */
.features {
  padding: clamp(100px, 12vw, 160px) 0;
  background: var(--bg);
}
.features-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 20px;
  padding: 0;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.025em;
  margin: 0 0 28px;
  padding: 0;
  /* Visually aligned with hero text column (~50% of max-w) */
  max-width: 600px;
}
.section-title.center {
  margin-inline: auto;
  text-align: center;
  max-width: none;
}
.section-title i { font-style: normal; color: var(--ink); }
.section-lead {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 580px;
  margin-bottom: clamp(56px, 7vw, 88px);
  line-height: 1.6;
  font-weight: 300;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature {
  padding: 24px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  min-height: 180px;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.04);
  border-color: var(--ink-mute);
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--line);
}
.feature-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}
.feature h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -.01em;
  line-height: 1.25;
  color: var(--ink);
}
.feature p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
  flex: 1;
  font-weight: 400;
}

/* ─── Quote / Editorial section ─── */
.quote-section {
  padding: clamp(120px, 16vw, 200px) var(--gutter);
  text-align: center;
  background: var(--bg);
}
.quote-section blockquote {
  font-family: var(--font-serif);
  font-style: normal;
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.3;
  font-weight: 400;
  color: var(--ink);
  max-width: 920px;
  margin: 0 auto;
  letter-spacing: -.015em;
}
.quote-section blockquote::before {
  content: "“";
  font-size: 1.8em;
  color: var(--ink);
  display: block;
  line-height: .6;
  margin-bottom: 20px;
}
.quote-section cite {
  display: block;
  margin-top: 36px;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}

/* (How-it-works section removed) */

/* ─── Pricing ─── */
.pricing {
  padding: clamp(100px, 12vw, 160px) var(--gutter);
  background: var(--bg-soft);
  text-align: center;
}
.pricing-inner { max-width: var(--max-w); margin: 0 auto; }
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 64px;
  max-width: 760px;
  margin-inline: auto;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 44px 36px;
  text-align: left;
  position: relative;
  display: flex; flex-direction: column;
}
.price-card.featured {
  border-color: var(--ink);
  box-shadow: 0 24px 48px rgba(0, 0, 0, .08);
}
/* No badge — single plan, doesn't need "recommended" label */
.price-card.featured::before { content: none; }
/* Single-plan layout — center the card */
.pricing-cards.single {
  display: flex;
  justify-content: center;
}
.pricing-cards.single .price-card {
  max-width: 480px;
  width: 100%;
}
.price-card h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: -.01em;
}
.price-tagline {
  color: var(--ink-mute);
  font-size: 13px;
}
.price-amount {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 400;
  color: var(--ink);
  margin: 8px 0 8px;
  line-height: 1;
  letter-spacing: -.02em;
  text-align: center;
}
.price-amount small {
  font-size: 16px;
  color: var(--ink-mute);
  font-weight: 400;
  margin-left: 6px;
  font-family: var(--font-sans);
  letter-spacing: 0;
}
.price-sub {
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-mute);
  margin: 4px 0 0;
  letter-spacing: 0.15px;
}
/* Backlog unlock — secondary offer placed below the main CTA button */
.price-backlog {
  margin: 22px 0 0;
  padding: 18px 20px;
  background: #fafaf7;
  border: 1px dashed rgba(0, 0, 0, 0.14);
  border-radius: 12px;
  text-align: center;
}
.price-backlog-amount {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -.01em;
  line-height: 1.1;
}
.price-backlog-amount small {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--ink-mute);
  font-weight: 400;
  margin-left: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.price-backlog-desc {
  margin: 8px 0 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.5;
}
.price-features {
  list-style: none;
  margin: 28px 0;
  flex: 1;
}
.price-features li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--ink-soft);
  display: flex; align-items: flex-start; gap: 12px;
  border-bottom: 1px solid var(--line-soft);
}
.price-features li:last-child { border-bottom: 0; }
.price-features li.price-feature-first { font-weight: 700; }
.price-features li::before {
  content: "✓";
  color: var(--ink);
  font-weight: 600;
  flex-shrink: 0;
  font-size: 16px;
}
.price-card .btn-primary, .price-card .btn-secondary {
  width: 100%;
  justify-content: center;
}

/* ─── Final CTA ─── */
.cta-final {
  padding: clamp(120px, 16vw, 200px) var(--gutter);
  background: var(--bg-dark);
  color: #fff;
  text-align: center;
}
.cta-final-inner { max-width: 800px; margin: 0 auto; }
.cta-final h2 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.025em;
  margin-bottom: 28px;
}
.cta-final h2 i { font-style: normal; color: #fff; }
.cta-final p {
  font-size: 18px;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 44px;
  line-height: 1.6;
  font-weight: 300;
}
.cta-final .btn-primary {
  background: #fff;
  color: var(--ink);
  font-size: 16px;
  padding: 18px 40px;
}
.cta-final .btn-primary:hover { background: var(--ink); color: #fff; box-shadow: 0 0 0 1px #fff; }

/* ─── Footer ─── */
.land-foot {
  padding: 56px var(--gutter) 36px;
  background: var(--bg);
  font-size: 13px;
  color: var(--ink-mute);
}
.land-foot-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.land-foot a { color: var(--ink-soft); margin-left: 28px; }
.land-foot a:hover { color: var(--ink); }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: clamp(40px, 8vw, 80px);
  }
  .hero-text { text-align: center; }
  .hero-sub { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-image-side { order: -1; max-width: 600px; margin: 0 auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-cards { grid-template-columns: 1fr; max-width: 480px; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .land-nav-links { gap: 16px; }
  .land-nav-links a:not(.land-cta) { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .feature { min-height: auto; padding: 32px 24px; }
}
@media (max-width: 500px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { justify-content: center; }
  .photo-grid { grid-template-columns: 1fr; }
}

/* ─── Stats showcase carousel ─── */
.stats-showcase {
  padding: clamp(60px, 8vw, 110px) var(--gutter);
  background: #fafaf7;
}
.stats-showcase-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.stats-showcase .section-title { margin-top: 8px; }
/* Export cards uvnitř stats-showcase — margin od karuselu */
.stats-showcase .features-export {
  margin-top: 56px;
}
.stats-showcase .section-lead {
  margin: 16px auto 56px;
  max-width: 640px;
}

.stats-carousel-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.stats-carousel {
  position: relative;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
}
.stats-carousel-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1600 / 927;
  background: #fff;
  overflow: hidden;
}
.stats-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  opacity: 0;
  transition: opacity .8s ease;
}
.stats-slide.is-active { opacity: 1; }
.stats-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
  padding: 6px 12px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  border-radius: 100px;
}
.stats-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,0.25);
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.stats-dot:hover { background: rgba(0,0,0,0.45); }
.stats-dot.is-active {
  background: var(--ink, #1a1a1a);
  transform: scale(1.25);
}

/* Export trio (PDF + Foto roku + Diary book) — text-only, no boxes
   Inside features-with-card: spans column 2 (under boxes, aligned right) */
.features-export {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 760px;
  margin: 24px auto 0;
}
.features-with-card .features-export {
  grid-column: 2 / 3;
  margin: 24px 0 0;
  max-width: 100%;
}
.export-card {
  text-align: center;
  background: transparent;
  border: 0;
  padding: 0;
}
.export-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-bottom: 8px;
  color: var(--ink);
}
.export-icon svg {
  width: 22px;
  height: 22px;
}
.export-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 6px;
  color: var(--ink);
}
.export-card p {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-soft, #4a4a4a);
  margin: 0;
}
@media (max-width: 900px) {
  .features-with-card .features-export {
    grid-column: 1 / -1;
  }
}
@media (max-width: 1100px) {
  .features-export {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .features-export {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Day card next to features grid — bigger card, smaller boxes */
.features-with-card {
  display: grid;
  grid-template-columns: minmax(380px, 480px) 1fr;
  /* Row 1 výška = výška day-card fotky (nastaveno JS-em jako --day-card-h).
     Boxy napravo i levý sloupec mají PŘESNĚ tuto výšku → žádný whitespace, žádná „čára". */
  grid-template-rows: var(--day-card-h, auto) auto;
  grid-template-areas:
    "card  features"
    "pwa   .";
  gap: clamp(28px, 3vw, 48px);
  row-gap: 18px;
  align-items: stretch;
  margin-top: 40px;
}
.features-day-card {
  grid-area: card;
  display: flex;
  align-items: stretch;
  justify-content: center;
  align-self: stretch;
}
.features-with-card .features-grid {
  grid-area: features;
  /* Stretch na celou výšku řádku (= výška fotky), boxy se rozprostřou 1fr */
  align-self: stretch;
  grid-auto-rows: 1fr;
  height: 100%;
}
.features-with-card .pwa-install-card {
  grid-area: pwa;
  margin-top: 0;
}
.features-day-card img {
  width: 100%;
  height: 100%;
  /* Fotka vyplňuje celou container area (= row 1 height, řízenou JS-em podle natural aspect ratio).
     Použijeme contain — celá fotka viditelná. Container výška je sladěna přes --day-card-h. */
  object-fit: contain;
  display: block;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.16);
}

/* PWA install card — kompaktní, přímo pod day-card obrázkem (uvnitř features-day-card) */
.pwa-install-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--paper, #fff);
  border: 0.5px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
@media (max-width: 700px) {
  .pwa-install-card {
    padding: 14px 16px;
    gap: 12px;
  }
}
/* Více specificity než .features-day-card img (které má width:100%) — jinak by se ikona roztáhla */
.features-day-card .pwa-install-card .pwa-install-icon {
  width: 56px !important;
  height: 56px !important;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  object-fit: cover;
}
.pwa-install-body {
  flex: 1;
  min-width: 0;
}
.pwa-install-body h4 {
  font-family: var(--font-sans, Inter, sans-serif);
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--ink, #1a1a1a);
  letter-spacing: 0.01em;
}
.pwa-install-body p {
  font-family: var(--font-serif, Georgia, serif);
  font-style: italic;
  font-size: 12.5px;
  color: var(--ink-secondary, #555);
  margin: 0 0 10px;
  line-height: 1.45;
}
.pwa-install-steps {
  margin: 0;
  font-size: 12px;
}
.pwa-install-steps summary {
  cursor: pointer;
  font-family: var(--font-sans, Inter, sans-serif);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-secondary, #1a1a1a);
  padding: 4px 0;
  list-style: none;
  border-bottom: 0.5px dashed rgba(0,0,0,0.15);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 0.5px;
}
.pwa-install-steps summary::-webkit-details-marker { display: none; }
.pwa-install-steps[open] summary {
  margin-bottom: 12px;
}
.pwa-install-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 28px;
  margin-top: 4px;
}
@media (max-width: 760px) {
  .pwa-install-steps-grid { grid-template-columns: 1fr; gap: 18px; }
}
.pwa-install-os {
  margin: 0;
}
.pwa-install-os strong {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans, Inter, sans-serif);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink, #1a1a1a);
  margin-bottom: 6px;
}
.pwa-os-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--ink, #1a1a1a);
}
.pwa-install-os ol {
  margin: 0;
  padding-left: 18px;
  font-family: var(--font-sans, Inter, sans-serif);
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink-secondary, #555);
}
.pwa-install-os ol li { margin: 2px 0; }
.pwa-install-os ol li em {
  font-style: italic;
  color: var(--accent-gold, #c9a961);
}
@media (max-width: 700px) {
  .pwa-install-card {
    padding: 14px 16px;
    gap: 12px;
  }
  .pwa-install-icon {
    width: 48px;
    height: 48px;
  }
}
.features-with-card .features-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 0;
  gap: 14px;
  /* Rozprostřít přesně k spodní hraně day-card obrázku (PWA expand neovlivňuje) */
  align-self: start;
}
.features-with-card .feature {
  padding: 14px 14px;
  min-height: auto;
  /* Smaller box content — všechno se vejde do výšky fotky */
  overflow: hidden;
}
.features-with-card .feature-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 6px;
}
.features-with-card .feature-icon svg {
  width: 15px;
  height: 15px;
}
/* Trio icon — 3 SVGs each in its own circular pill (consistent with other feature icons) */
.features-with-card .feature-icon.feature-icon-trio {
  width: auto;
  height: auto;
  background: transparent;
  border: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-self: flex-start;
  gap: 6px;
  padding: 0;
  margin-bottom: 10px;
}
.features-with-card .feature-icon.feature-icon-trio svg {
  display: inline-flex;
  width: 36px;
  height: 36px;
  padding: 8px;
  border-radius: 12px;
  background: var(--bg, #f5f5f0);
  border: 1px solid var(--line, rgba(0,0,0,0.08));
  color: var(--ink, #1a1a1a);
  box-sizing: border-box;
}
.features-with-card .feature h3 {
  font-size: 13px;
  margin: 0 0 4px;
}
.features-with-card .feature p {
  font-size: 11.5px;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .features-with-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .features-day-card {
    align-self: center;
    max-width: 360px;
    margin: 0 auto;
  }
  .features-day-card img {
    height: auto;
    object-fit: contain;
  }
  .features-with-card .feature {
    padding: 24px 20px;
  }
  .features-with-card .feature h3 { font-size: 15px; }
  .features-with-card .feature p { font-size: 13px; }
}
@media (max-width: 700px) {
  .features-with-card .features-grid { grid-template-columns: 1fr; }
}

/* ─── Contact form section ─────────────────────────── */
.contact-section {
  background: var(--paper-canvas, #fafaf7);
  padding: 80px 24px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.contact-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.contact-inner .section-title {
  margin: 12px 0 14px;
}
.contact-inner .section-lead {
  margin-bottom: 32px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}
.contact-row {
  display: flex;
  gap: 14px;
}
.contact-row > input {
  flex: 1;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-sans, 'Inter', system-ui, sans-serif);
  font-size: 14px;
  color: var(--ink, #1a1a1a);
  background: #fff;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  box-sizing: border-box;
  transition: border-color .15s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #6E91B4;
}
.contact-form textarea {
  resize: vertical;
  min-height: 100px;
  font-family: var(--font-sans, 'Inter', system-ui, sans-serif);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(0,0,0,0.4);
  font-style: italic;
}
.contact-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
}
.contact-status {
  font-size: 13px;
  color: #888;
  min-height: 18px;
  flex: 1;
}
@media (max-width: 540px) {
  .contact-section { padding: 60px 18px; }
  .contact-row { flex-direction: column; gap: 14px; }
  .contact-actions { flex-direction: column; align-items: stretch; }
  .contact-actions .btn-primary { width: 100%; text-align: center; }
}
