/* ── Page hero (matches about.html) ── */
.page-hero {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 32px 60px;
  text-align: center;
}
.page-eyebrow {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 20px;
}
.page-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--forest);
  margin-bottom: 28px;
}
.page-title em { font-style: italic; font-weight: 300; }
.page-lead {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto;
}

/* ── Content frame ── */
.content {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 32px 100px;
}

.section { padding: 56px 0; border-top: 1px solid var(--cream-dark); }
.section:first-child { border-top: none; }

.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 20px;
}
.section-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 400;
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 28px;
}

/* ── Section 1: task list ──
   Custom bullet (sage dot) + comfortable line-height. */
.task-list {
  list-style: none;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.task-list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-mid);
}
.task-list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
}

/* ── Section 2: criteria card grid ──
   Card per criterion with a sage check badge. Mirrors the .cat-card
   pattern from about.html so the page feels of-a-piece. */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
  margin-top: 8px;
}
.criteria-card {
  background: var(--white);
  border-radius: 8px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.criteria-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1;
}
.criteria-text {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
}

/* Czech-fluency card: highlighted only in EN, since EN visitors might
   miss the language requirement otherwise. CS visitors see a normal
   card — the page is already in their language so no extra emphasis
   is needed. The flag and the non-negotiable note are present in the
   markup but hidden via CSS until html[lang="en"]. */
.criteria-card-czech .criteria-flag,
.criteria-card-czech .criteria-note { display: none; }
html[lang="en"] .criteria-card-czech {
  background: #fbf3da;
  border: 1px solid #e8d68a;
}
html[lang="en"] .criteria-card-czech .criteria-flag {
  display: inline-block;
  margin-left: 6px;
  vertical-align: -2px;
}
html[lang="en"] .criteria-card-czech .criteria-note {
  display: block;
  margin: 6px 0 0;
  font-size: 0.78rem;
  font-style: italic;
  color: var(--text-mid);
}

/* ── Section 3: CTA ──
   Lighter card style than about.html's dark-green CTA, so the green
   primary button reads as the focal point on cream. */
.cta-final {
  background: var(--cream-warm);
  border-radius: 12px;
  padding: 52px 48px;
  text-align: center;
  margin-top: 56px;
}
.cta-final h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 14px;
}
.cta-final p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 480px;
  margin: 0 auto 28px;
}

/* Share-in-network note — populated in EN only; :empty hides the
   paragraph in CS where applySharedLang sets textContent to ''. */
.cta-share {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: -12px auto 24px;
  max-width: 480px;
}
.cta-share:empty { display: none; }

.primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  background: var(--forest-bg);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s;
}
.primary-btn:hover,
.primary-btn:focus-visible {
  background: #4a7d48;
  transform: translateY(-2px);
}

/* ── Desktop bumps (matches about.html) ── */
@media (min-width: 769px) {
  .content    { max-width: 940px; }
  .task-list li { font-size: 1.05rem; line-height: 1.75; }
  .page-lead  { font-size: clamp(1.25rem, 2.2vw, 1.5rem); }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .page-hero { padding: 52px 20px 40px; }
  .content { padding: 0 20px 72px; }
  .criteria-grid { grid-template-columns: 1fr; }
  .cta-final { padding: 36px 24px; }
  .primary-btn { width: 100%; max-width: 320px; justify-content: center; }
}
@media (max-width: 480px) {
  .section { padding: 40px 0; }
}
