/* ============================================
   Dopisy z Vesmíru — Cosmic Theme v3
   Deep space, Berkshire Swash + Montserrat
   ============================================ */

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

:root {
  --burgundy: #4d060f;
  --navy: #000e28;
  --navy-mid: #162e5f;
  --gold: #e8cb71;
  --gold-light: #f7d684;
  --gold-dark: #e0b73d;
  --bg: #020810;
  --bg-card: rgba(10, 22, 50, 0.6);
  --border: rgba(232, 203, 113, 0.12);
  --border-gold: rgba(232, 203, 113, 0.3);
  --text: #e8e0d4;
  --text-muted: #8a9bb5;
  --gold-gradient: linear-gradient(135deg, var(--gold-dark), var(--gold-light), var(--gold));
  --nav-h: 64px;
  --radius: 16px;
  --radius-sm: 10px;
  --font-title: 'Berkshire Swash', cursive;
  --font-heading: 'Montserrat', system-ui, sans-serif;
  --font-quote: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 90% 60% at 25% 20%, rgba(22, 46, 115, 0.3), transparent),
    radial-gradient(ellipse 70% 50% at 80% 15%, rgba(70, 20, 100, 0.15), transparent),
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(22, 46, 95, 0.2), transparent),
    radial-gradient(ellipse 60% 40% at 10% 65%, rgba(120, 15, 30, 0.1), transparent),
    radial-gradient(ellipse 70% 40% at 90% 60%, rgba(22, 46, 115, 0.18), transparent),
    radial-gradient(ellipse 80% 40% at 40% 85%, rgba(55, 15, 85, 0.12), transparent),
    var(--bg);
  pointer-events: none;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── STARS CANVAS ──────────────────────────── */
#stars-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: -1;
}

/* ── NAV — pill buttons with gold fill ────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(2, 8, 16, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s, background 0.4s, transform 0.35s ease;
}
#navbar.nav-hidden {
  transform: translateY(-100%);
}
#navbar.scrolled {
  border-color: var(--border);
  background: rgba(2, 8, 16, 0.96);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-brand {
  display: none;
  font-family: var(--font-title);
  font-size: 1rem;
  color: var(--gold);
  white-space: nowrap;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-pill {
  padding: 8px 18px;
  background: var(--gold-gradient);
  color: var(--navy);
  border: none;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-heading);
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.3s;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(232, 203, 113, 0.15);
}
.nav-pill:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(232, 203, 113, 0.3);
}
.nav-pill--glow {
  box-shadow: 0 0 15px rgba(232, 203, 113, 0.3), 0 2px 12px rgba(232, 203, 113, 0.2);
  animation: navGlow 2s ease-in-out infinite;
}
@keyframes navGlow {
  0%, 100% { box-shadow: 0 0 15px rgba(232, 203, 113, 0.3), 0 2px 12px rgba(232, 203, 113, 0.2); }
  50% { box-shadow: 0 0 25px rgba(232, 203, 113, 0.5), 0 4px 20px rgba(232, 203, 113, 0.35); }
}

/* ── BUTTONS ───────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  color: var(--navy);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-heading);
  border: none;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 4px 24px rgba(232, 203, 113, 0.25);
  letter-spacing: 0.02em;
}
.btn-primary:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(232, 203, 113, 0.4);
}

.btn-outline-sm {
  display: inline-block;
  border: 1px solid var(--border-gold);
  color: var(--gold);
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.2s;
  margin-top: 16px;
}
.btn-outline-sm:hover { background: rgba(232, 203, 113, 0.08); }

.btn-card {
  display: block;
  text-align: center;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 14px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--gold);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  margin-top: auto;
}
.btn-card:hover {
  background: rgba(232, 203, 113, 0.1);
  border-color: var(--gold);
  transform: translateY(-1px);
}
.btn-card.gold {
  background: var(--gold-gradient);
  color: var(--navy);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(232, 203, 113, 0.2);
}
.btn-card.gold:hover { opacity: 0.9; }

/* ── SECTION COMMON ────────────────────────── */
section {
  position: relative;
  z-index: 1;
  padding: 90px 0;
}
#vyklady { padding-top: 40px; }

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-ornament-img {
  width: 72px;
  height: auto;
  margin: 0 auto 18px;
  display: block;
  filter: invert(1) opacity(0.55);
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.heading-alt { font-weight: 600; }

.heading-script {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--gold);
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.section-quote {
  font-family: var(--font-quote);
  font-weight: 200;
  font-size: 1rem;
  font-style: italic;
  color: var(--text);
  margin: 16px auto 0;
  max-width: 560px;
  line-height: 1.7;
}
.section-quote cite {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── SECTION DIVIDERS ──────────────────────── */
.section-divider {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding: 10px 0;
}
.divider-ornament { width: 200px; height: 40px; }

/* ── HERO ──────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: calc(var(--nav-h) + 40px) 24px 30px;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(22, 46, 115, 0.35), transparent),
              radial-gradient(ellipse 50% 45% at 15% 55%, rgba(120, 15, 30, 0.15), transparent),
              radial-gradient(ellipse 45% 40% at 85% 25%, rgba(70, 20, 100, 0.12), transparent),
              radial-gradient(ellipse 60% 30% at 60% 70%, rgba(10, 50, 80, 0.1), transparent);
}

.hero-glow {
  position: absolute;
  top: 15%; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(232, 203, 113, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  max-width: 700px;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Logo with sparkle ring */
.hero-logo-wrap {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 24px;
}

.hero-logo-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: conic-gradient(from 0deg, rgba(232, 203, 113, 0.6), rgba(232, 203, 113, 0.05), rgba(232, 203, 113, 0.6), rgba(232, 203, 113, 0.05), rgba(232, 203, 113, 0.6)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: ringRotate 8s linear infinite;
  box-shadow: 0 0 30px rgba(232, 203, 113, 0.15);
}
@keyframes ringRotate {
  to { transform: rotate(360deg); }
}

.hero-logo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: none;
  box-shadow: 0 0 60px rgba(232, 203, 113, 0.12);
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.6rem, 7vw, 4rem);
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 12px;
  line-height: 1.15;
  text-shadow: 0 0 60px rgba(232, 203, 113, 0.2);
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 24px;
}

.hero-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 20px;
  opacity: 0.5;
}

.hero-jung-img {
  width: 56px;
  margin-bottom: 12px;
}

/* Hero fade-in animations */
.hero-content .hero-logo-wrap { animation: heroFadeUp 0.8s ease both; }
.hero-content .hero-title { animation: heroFadeUp 0.8s 0.2s ease both; }
.hero-content .hero-tagline { animation: heroFadeUp 0.8s 0.35s ease both; }
.hero-content .hero-line { animation: heroFadeUp 0.8s 0.5s ease both; }
.hero-content .hero-jung-img { animation: heroFadeUp 0.8s 0.6s ease both; }
.hero-content .hero-quote { animation: heroFadeUp 0.8s 0.7s ease both; }
.hero-content .hero-scroll-hint { animation: heroFadeUp 0.8s 0.9s ease both; }

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

/* Scroll indicator */
.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-heading);
  opacity: 0.5;
  transition: opacity 0.3s;
  cursor: pointer;
}
.hero-scroll-hint:hover { opacity: 0.8; }
.hero-scroll-hint svg {
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

.hero-quote {
  font-family: var(--font-quote);
  font-size: 1.1rem;
  font-weight: 200;
  font-style: italic;
  color: var(--text);
  line-height: 1.9;
  max-width: 520px;
  margin: 0 auto;
  padding: 20px 28px;
  position: relative;
}
.hero-quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}
.hero-quote cite {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 12px;
  font-weight: 600;
  font-style: normal;
}
.hero-quote cite em { font-style: italic; }

/* ── VÝKLADY KARET ────────────────────────── */
.readings-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1060px;
  margin: 0 auto;
}
.reading-card {
  width: calc(33.333% - 16px);
  min-width: 280px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  backdrop-filter: blur(10px);
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
  position: relative;
}
.reading-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(232, 203, 113, 0.08);
}

/* Premium card styling */
.reading-card--premium {
  background: linear-gradient(180deg, rgba(77, 6, 15, 0.25), var(--bg-card));
  border-color: rgba(232, 203, 113, 0.25);
}
.reading-badge-premium {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--gold-gradient);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 2;
}

.reading-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

/* Expandable description button */
.reading-expand-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(232, 203, 113, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.3s;
  animation: expandGlow 2.5s ease-in-out infinite;
}
.reading-expand-btn:hover {
  background: rgba(232, 203, 113, 0.2);
}
@keyframes expandGlow {
  0%, 100% { box-shadow: 0 0 8px rgba(232, 203, 113, 0.15); }
  50% { box-shadow: 0 0 18px rgba(232, 203, 113, 0.35); }
}
.expand-arrow {
  font-size: 0.65rem;
  transition: transform 0.3s;
}
.reading-expand-btn[aria-expanded="true"] .expand-arrow {
  transform: rotate(180deg);
}
.reading-expand-content {
  display: none;
  padding: 10px 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-left: 2px solid rgba(232, 203, 113, 0.2);
  margin-left: 4px;
}
.reading-expand-content.open { display: block; }
/* ── RICH EXPAND (Esence) ────────────────── */
.reading-expand--rich {
  border-left: none;
  margin-left: 0;
  padding: 16px 12px;
  max-height: 420px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(232, 203, 113, 0.3) transparent;
}
.reading-expand--rich::-webkit-scrollbar { width: 4px; }
.reading-expand--rich::-webkit-scrollbar-thumb { background: rgba(232, 203, 113, 0.3); border-radius: 4px; }
.reading-expand--rich::-webkit-scrollbar-track { background: transparent; }

.rex-intro {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(232, 203, 113, 0.1);
}
.rex-step {
  margin-bottom: 14px;
  padding: 10px 12px;
  background: rgba(232, 203, 113, 0.03);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(232, 203, 113, 0.06);
}
.rex-step-title {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.rex-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(232, 203, 113, 0.15);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}
.rex-tags {
  font-size: 0.68rem;
  color: var(--gold);
  opacity: 0.6;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.rex-step p {
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.rex-goal {
  font-size: 0.75rem !important;
  color: var(--gold-light) !important;
  opacity: 0.8;
  margin-top: 4px;
}
.rex-faq {
  margin: 16px 0 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(232, 203, 113, 0.1);
}
.rex-faq-title {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
}
.rex-faq-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.rex-faq-list li {
  font-size: 0.7rem;
  color: var(--text-muted);
  background: rgba(232, 203, 113, 0.04);
  border: 1px solid rgba(232, 203, 113, 0.08);
  border-radius: 20px;
  padding: 5px 12px;
  line-height: 1.4;
}
.rex-fact {
  margin-top: 14px;
  padding: 10px 12px;
  background: rgba(232, 203, 113, 0.04);
  border-left: 2px solid rgba(232, 203, 113, 0.2);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.rex-fact p {
  font-size: 0.72rem;
  line-height: 1.65;
  color: var(--text-muted);
  font-style: italic;
}
.rex-fact strong {
  color: var(--gold);
  font-style: normal;
}

.reading-expand-footnote {
  font-style: italic;
  opacity: 0.7;
  font-size: 0.75rem;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(232, 203, 113, 0.1);
}

.reading-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: white;
  font-weight: 600;
}

.reading-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 300;
}

.reading-prices {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price-option {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.78rem;
  cursor: pointer;
  line-height: 1.4;
}
.price-option input[type="checkbox"] {
  accent-color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.price-amount {
  color: var(--gold);
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.price-detail {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.price-option.bonus {
  color: var(--gold);
  font-size: 0.75rem;
  gap: 6px;
}

.reading-gift-note {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 4px;
}

/* Coming soon tooltip */
.price-option--coming-soon {
  opacity: 0.6;
  position: relative;
  flex-wrap: wrap;
}
.coming-soon-tooltip {
  display: none;
  width: 100%;
  margin-top: 4px;
  padding: 8px 10px;
  background: rgba(232, 203, 113, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  color: var(--gold);
  line-height: 1.5;
}
.price-option--coming-soon:hover .coming-soon-tooltip { display: block; }
.coming-soon-tooltip a { color: var(--gold-light); text-decoration: underline; }

.reading-card .btn-order {
  display: block;
  text-align: center;
  background: var(--gold-gradient);
  color: var(--navy);
  padding: 10px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  font-family: var(--font-heading);
  margin-top: auto;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(232, 203, 113, 0.15);
}
.reading-card .btn-order:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(232, 203, 113, 0.3);
}

.readings-footer {
  text-align: center;
  margin-top: 36px;
}

/* ── VIP / MEMBERSHIP ──────────────────────── */
.community-quote {
  font-family: var(--font-quote);
  font-size: 1.15rem;
  font-weight: 200;
  font-style: italic;
  color: var(--gold);
  margin: 16px 0;
  line-height: 1.7;
  opacity: 0.9;
}
.community-quote cite {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: normal;
  margin-top: 6px;
  font-weight: 600;
}

.community-text {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
  padding: 44px 36px;
  background: linear-gradient(180deg, rgba(232, 203, 113, 0.025) 0%, transparent 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(232, 203, 113, 0.06);
}
.community-intro {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}
.community-text h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.4;
}
.community-text p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 18px;
}
.community-text p:last-of-type { margin-bottom: 0; }
.community-text p strong { color: white; }

.community-highlight {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem !important;
  color: var(--gold) !important;
  line-height: 1.8 !important;
}

.community-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
  text-align: left;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 24px;
  background: rgba(232, 203, 113, 0.025);
  border-radius: var(--radius-sm);
  border-left: 2px solid rgba(232, 203, 113, 0.2);
}
.community-list li {
  font-size: 0.88rem;
  color: var(--text);
  padding-left: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.7;
}
.community-list li::before { content: none; }
.cl-icon { font-size: 1.1rem; flex-shrink: 0; }

.community-cta-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem !important;
  color: white !important;
  margin-top: 8px !important;
}
.community-final {
  font-family: var(--font-heading);
  font-weight: 300;
  color: var(--gold) !important;
  font-style: italic;
  margin-top: 12px !important;
}

.membership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}

.membership-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
  position: relative;
}
.membership-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}
.membership-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(232, 203, 113, 0.08), rgba(232, 203, 113, 0.01), var(--bg-card));
  box-shadow: 0 0 60px rgba(232, 203, 113, 0.06);
}

.membership-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(232, 203, 113, 0.15), rgba(255, 100, 50, 0.1));
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 4px;
}

.membership-subtitle {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.5;
}

.membership-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: white;
  font-weight: 600;
  line-height: 1.3;
}

.membership-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.membership-list li {
  font-size: 0.8rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.check {
  flex-shrink: 0;
  font-size: 0.9rem;
}
.check.gold { color: var(--gold-light); }

.membership-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.price-big {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-heading);
}
.price-period {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.membership-note-center {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 20px;
}

.membership-list li.section-label {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.82rem;
  margin-top: 8px;
  border-top: 1px solid var(--border);
  padding-top: 8px;
}

/* ── TESTIMONIALS ──────────────────────────── */
/* Masonry grid for testimonials */
.testimonials-grid {
  columns: 3;
  column-gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  break-inside: avoid;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s;
  overflow: hidden;
  margin-bottom: 16px;
  display: inline-block;
  width: 100%;
}
.testimonial-card:hover {
  border-color: rgba(232, 203, 113, 0.25);
}

.testimonial-img-card {
  padding: 0;
  background: transparent;
  position: relative;
}
.testimonial-img-card img {
  width: 100%;
  height: auto;
  display: block;
}
/* Hover hint */
.testimonial-img-card::after {
  content: 'Klikni pro zvětšení';
  position: absolute;
  bottom: 4px;
  left: 4px;
  right: 4px;
  height: 50px;
  background: linear-gradient(to top, rgba(10, 22, 50, 0.95), transparent);
  border-radius: 0 0 calc(var(--radius) - 3px) calc(var(--radius) - 3px);
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 10px;
  font-size: 0.7rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.3s;
  letter-spacing: 0.05em;
  font-family: var(--font-heading);
}
.testimonial-img-card:hover::after {
  opacity: 1;
}

/* ── LIGHTBOX ─────────────────────────────── */
.testimonial-img-card { cursor: pointer; }
.testimonial-img-card:hover { transform: translateY(-2px); transition: transform 0.2s; }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(2, 8, 16, 0.92);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.active {
  display: flex;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 60px rgba(0, 0, 0, 0.6);
  animation: lightboxIn 0.3s ease;
}
@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 28px;
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  z-index: 10;
  line-height: 1;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(232, 203, 113, 0.15);
  border: 1px solid rgba(232, 203, 113, 0.3);
  color: var(--gold);
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
}
.lightbox-nav:hover { background: rgba(232, 203, 113, 0.3); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ── NEWSLETTER ────────────────────────────── */
#newsletter { padding: 60px 0; }

.newsletter-card {
  max-width: 520px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(232, 203, 113, 0.05), var(--bg-card));
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 44px 40px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 40px rgba(232, 203, 113, 0.08), 0 0 80px rgba(232, 203, 113, 0.04);
  position: relative;
}

.newsletter-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  border: 2px solid var(--gold);
  box-shadow: 0 0 20px rgba(232, 203, 113, 0.2);
}

.newsletter-ornament-img {
  width: 120px;
  height: auto;
  margin: 0 auto 16px;
  display: block;
  filter: invert(1) opacity(0.55);
}

.newsletter-card h3 {
  font-family: var(--font-title);
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 8px;
}

.newsletter-card > p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(2, 8, 16, 0.8);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input[type="email"]:focus { border-color: var(--gold); }
.newsletter-form input[type="email"]::placeholder { color: var(--text-muted); }

.newsletter-consent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
  cursor: pointer;
}
.newsletter-consent input[type="checkbox"] { accent-color: var(--gold); }

/* ── PODPORA PROJEKTU ─────────────────────── */
.support-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px 32px;
  text-align: center;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.support-card-glow {
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232, 203, 113, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.support-card-intro {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 28px;
  position: relative;
}

/* Amount display */
.support-amount-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
  position: relative;
}
.support-amount-value {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  transition: color 0.3s;
}
.support-amount-currency {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.7;
}

/* Custom range slider */
.support-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, var(--gold-dark), var(--gold-light));
  border-radius: 6px;
  outline: none;
  cursor: pointer;
  position: relative;
  margin-bottom: 8px;
}
.support-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-gradient);
  border: 3px solid var(--navy);
  box-shadow: 0 0 16px rgba(232, 203, 113, 0.5), 0 2px 8px rgba(0,0,0,0.3);
  cursor: grab;
  transition: box-shadow 0.2s, transform 0.2s;
}
.support-slider::-webkit-slider-thumb:hover {
  box-shadow: 0 0 24px rgba(232, 203, 113, 0.7), 0 2px 12px rgba(0,0,0,0.4);
  transform: scale(1.1);
}
.support-slider::-webkit-slider-thumb:active {
  cursor: grabbing;
  transform: scale(1.15);
}
.support-slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-gradient);
  border: 3px solid var(--navy);
  box-shadow: 0 0 16px rgba(232, 203, 113, 0.5);
  cursor: grab;
}
.support-slider::-moz-range-track {
  height: 6px;
  background: linear-gradient(to right, var(--gold-dark), var(--gold-light));
  border-radius: 6px;
  border: none;
}

/* Milestones */
.support-milestones {
  position: relative;
  display: flex;
  margin-bottom: 24px;
  height: 24px;
}
.milestone {
  position: absolute;
  transform: translateX(-50%);
  font-size: 0.72rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.milestone:hover {
  color: var(--gold);
  background: rgba(232, 203, 113, 0.08);
}
.milestone:nth-child(1) { left: 25%; }
.milestone:nth-child(2) { left: 50%; }
.milestone:nth-child(3) { left: 75%; }
.milestone:nth-child(4) { left: 100%; transform: translateX(-100%); }
.milestone.active {
  color: var(--gold);
}

/* Rewards list */
.support-rewards {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  text-align: left;
}
.reward-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: all 0.4s ease;
  opacity: 0.45;
}
.reward-item.reward-unlocked {
  opacity: 1;
  background: rgba(232, 203, 113, 0.06);
  border-color: rgba(232, 203, 113, 0.15);
  color: var(--text);
}
.reward-item.reward-unlocked .reward-check {
  color: var(--gold);
}
.reward-item strong {
  color: var(--gold-light);
}
.reward-check {
  font-size: 1rem;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  transition: transform 0.3s;
}
.reward-item.reward-unlocked .reward-check {
  transform: scale(1.15);
}

/* Support CTA button */
.btn-support {
  display: block;
  width: 100%;
  padding: 14px 24px;
  background: var(--gold-gradient);
  color: var(--navy);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: opacity 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 4px 24px rgba(232, 203, 113, 0.25);
  text-align: center;
  letter-spacing: 0.02em;
}
.btn-support:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(232, 203, 113, 0.4);
}

.support-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 16px;
  font-style: italic;
}

/* ── SOCIAL / VIDEOS ───────────────────────── */
#obsah { padding-top: 40px; }

.social-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--gold);
  text-align: center;
  margin-bottom: 32px;
}

.social-videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.video-embed-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color 0.3s;
}
.video-embed-card:hover { border-color: var(--border-gold); }

.video-label {
  font-size: 0.78rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--gold);
  text-align: center;
  padding: 10px 12px 6px;
  letter-spacing: 0.03em;
}

.video-ratio {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  overflow: hidden;
}
.video-ratio--reel {
  padding-bottom: 125%; /* ~9:16 tall for IG reel */
  max-height: 480px;
}

/* ── REEL LINK CARD ─────────────────────── */
.reel-link-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.reel-preview {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px 20px;
  background: linear-gradient(135deg, #1a0533 0%, #0d1b3e 50%, #1a0533 100%);
  position: relative;
}
.reel-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(232, 203, 113, 0.15);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.3s;
}
.reel-play-btn svg { fill: var(--gold); margin-left: 4px; }
.reel-link-card:hover .reel-play-btn {
  transform: scale(1.1);
  background: rgba(232, 203, 113, 0.25);
}
.reel-account {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 500;
  font-family: var(--font-body);
}
.reel-caption {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
  font-style: italic;
}
.video-ratio iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}
.social-link--filled {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-gradient);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(232, 203, 113, 0.2);
}
.social-link--filled:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(232, 203, 113, 0.35);
}
.social-link--filled svg { width: 22px; height: 22px; color: var(--navy); }

/* ── ARTICLES SECTION ─────────────────────── */
#clanky { padding-bottom: 40px; }
.articles-board {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background: var(--bg-card);
  border: 1px dashed var(--border-gold);
  border-radius: var(--radius);
  text-align: center;
}
.articles-placeholder {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ── FOOTER ────────────────────────────────── */
footer {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
  border-top: 1px solid var(--border);
  padding: 40px 0 24px;
  position: relative;
  z-index: 1;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.footer-col { display: flex; flex-direction: column; gap: 6px; }
.footer-brand {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 4px;
}
.footer-bio {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-link {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color 0.2s;
  line-height: 1.6;
}
.footer-link:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy { font-size: 0.75rem; color: var(--text-muted); }
.footer-credit { font-size: 0.73rem; color: var(--text-muted); }
.footer-credit a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }

/* ── COOKIE CONSENT BAR ───────────────────── */
body.has-cookie-bar footer { padding-bottom: 72px; }
@media (max-width: 640px) {
  body.has-cookie-bar footer { padding-bottom: 140px; }
}

.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(2, 8, 16, 0.95);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(16px);
  padding: 16px 24px;
  transform: translateY(0);
  transition: transform 0.4s ease;
}
.cookie-bar.hidden { transform: translateY(100%); pointer-events: none; }
.cookie-bar-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
.cookie-text {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.cookie-text a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.cookie-buttons { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn {
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.2s;
}
.cookie-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.cookie-btn--accept {
  background: var(--gold-gradient);
  color: var(--navy);
}
.cookie-btn--reject {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

/* ── SCROLL TO TOP ─────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--navy);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 90;
  box-shadow: 0 4px 16px rgba(232, 203, 113, 0.3);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }

/* ── SCROLL REVEAL ─────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.reveal--fade {
  transform: none;
  transition: opacity 1s ease;
}
.reveal.reveal--fade.visible {
  opacity: 1;
}

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 1060px) {
  .reading-card { width: calc(50% - 12px); }
}
@media (max-width: 900px) {
  /* Mobile nav — hamburger menu */
  .nav-inner {
    justify-content: space-between;
  }
  .nav-brand {
    display: block;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav-pills {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    z-index: 100;
    background: rgba(2, 8, 16, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
    border-bottom: 1px solid var(--border);
  }
  .nav-pills.open {
    display: flex;
    animation: navSlideDown 0.3s ease;
  }
  @keyframes navSlideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .nav-pill {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.85rem;
  }

  .membership-grid { grid-template-columns: 1fr; max-width: 440px; }
  .testimonials-grid { columns: 2; }
  .social-videos-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 40px; }
}

@media (max-width: 640px) {

  section { padding: 56px 0; }
  #hero { padding-top: calc(var(--nav-h) + 12px); min-height: 100vh; min-height: 100dvh; padding-bottom: 20px; }
  .hero-title { font-size: 1.85rem; white-space: nowrap; }
  .hero-logo-wrap { width: 130px; height: 130px; }
  .hero-logo { width: 130px; height: 130px; }
  .hero-tagline { font-size: 0.82rem; margin-bottom: 16px; }
  .hero-quote { font-size: 0.95rem; padding: 14px 16px; }
  .hero-jung-img { width: 44px; }
  .hero-scroll-hint { margin-top: 16px; }

  .reading-card { width: 100%; }
  .support-card { padding: 28px 20px 24px; }

  .testimonials-grid { columns: 1; }
  .testimonial-img-card::after { display: none; }

  .community-text { padding: 28px 20px; }
  .community-list { padding: 16px 18px; }

  .newsletter-card { padding: 32px 24px; }

  .footer-top { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .footer-col { align-items: center; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 6px; }

  .cookie-bar-inner { flex-direction: column; text-align: center; gap: 12px; }
  .cookie-text { font-size: 0.75rem; }
  .cookie-buttons { width: 100%; }
  .cookie-btn { flex: 1; }
}
