/* ════════════════════════════════════════════════════════════
   SHIN-KYO v4 — Světlá elegance + Horizontální UX
   Typografie: Cormorant Garamond (display) + Jost (body)
   Paleta: bílá #FAFAF8, papírová #F3F1ED, antracit #1A1A1C,
           šedá střední #6B6B6B, akcent olivová zlatá #B8965A
   ════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

/* ── Design Tokens ──────────────────────────────────────── */
:root {
  --white:      #FAFAF8;
  --paper:      #F3F1ED;
  --paper-2:    #EAE7E0;
  --ink:        #1A1A1C;
  --ink-light:  #2E2E30;
  --muted:      #6B6B6B;
  --muted-2:    #9A9A9A;
  --border:     #DEDAD3;
  --border-2:   #E8E5DF;

  /* Akcent: olivová zlatá — japonský lacquer */
  --gold:       #B8965A;
  --gold-dark:  #8E7040;
  --gold-faint: rgba(184,150,90,0.08);
  --gold-light: rgba(184,150,90,0.18);

  --shadow-xs:  0 1px 3px rgba(26,26,28,0.06);
  --shadow-sm:  0 2px 8px rgba(26,26,28,0.07);
  --shadow-md:  0 6px 24px rgba(26,26,28,0.09);
  --shadow-lg:  0 16px 48px rgba(26,26,28,0.10);

  --radius:     3px;
  --radius-md:  8px;
  --radius-lg:  14px;

  --nav-h:      68px;
  --max-w:      1140px;
  --side-pad:   clamp(20px, 5vw, 48px);

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Jost', system-ui, sans-serif;

  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.15, 1);
}

/* ── Base ───────────────────────────────────────────────── */
body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

::selection { background: var(--gold); color: #fff; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ── Container ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--side-pad);
}

/* ── Typography helpers ─────────────────────────────────── */
.section-label {
  display: block;
  font-family: var(--ff-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 16px;
}

.section-sub {
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.75;
}

/* ── Section layout ─────────────────────────────────────── */
.section { padding-block: 88px; }
.section--alt { background: var(--paper); }

.section-header {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--side-pad);
  margin-bottom: 48px;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--ink-light);
  box-shadow: 0 6px 20px rgba(26,26,28,0.2);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--ink);
}


/* ════════════════════════════════════════════════════════════
   NAVIGACE
   ════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(250,250,248,0.90);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-2);
  transition: box-shadow 0.25s;
}
.nav.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--side-pad);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo-kanji {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.nav-logo-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-main {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: var(--ink);
}
.nav-logo-sub {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--muted);
  position: relative;
  transition: color 0.15s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.2s var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { margin-left: 8px; }

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 23px; height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(340px, 90vw);
  height: 100dvh;
  background: var(--white);
  border-left: 1px solid var(--border);
  z-index: 300;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out);
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26,26,28,0.35);
  z-index: 299;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.drawer-backdrop.visible { opacity: 1; pointer-events: all; }

.drawer-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
  padding: 4px;
  transition: color 0.15s;
}
.drawer-close:hover { color: var(--ink); }

.drawer-logo {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.drawer-nav a {
  font-size: 15px;
  font-weight: 400;
  color: var(--muted);
  padding-block: 4px;
  border-bottom: 1px solid var(--border-2);
  transition: color 0.15s;
}
.drawer-nav a:hover { color: var(--gold); }

.drawer-cta { margin-top: auto; width: 100%; justify-content: center; }


/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero {
  padding-top: calc(var(--nav-h) + 72px);
  padding-bottom: 0;
  min-height: 100dvh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
}

/* Tenká mřížka — japonská estetika washi papíru */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border-2) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-2) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.4;
}

.hero-kanji-bg {
  position: absolute;
  font-family: var(--ff-display);
  font-weight: 300;
  color: rgba(184,150,90,0.05);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.hero-kanji-bg:nth-child(2) {
  font-size: clamp(200px, 35vw, 480px);
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
}
.hero-kanji-bg--2 {
  font-size: clamp(100px, 18vw, 240px);
  left: -30px;
  bottom: 100px;
  color: rgba(26,26,28,0.03);
}

/* Hero Layout */
.hero-layout {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: center;
  gap: 48px;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--side-pad);
  width: 100%;
  padding-bottom: 56px;
}

.hero-media-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

.hero-photo {
  position: relative;
  min-height: 360px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--paper);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,28,0.56), transparent 50%);
}
.hero-photo figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  color: rgba(255,255,255,0.9);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Hero text */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.eyebrow-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(4rem, 9vw, 7.5rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.hero-slogan {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.5;
  padding-left: 18px;
  border-left: 2px solid var(--gold);
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero: disciplíny na pravé straně */
.hero-disciplines {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  width: 100%;
}

.hero-disc-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 12px;
  width: 100%;
  text-align: center;
  transition: background 0.2s;
}
.hero-disc-item:hover { background: var(--paper-2); }

.hero-disc-kanji {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.hero-disc-name {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-disc-divider {
  width: 1px;
  height: 56px;
  background: var(--border);
  display: none;
}

/* Hero stats bar */
.hero-stats {
  background: var(--ink);
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 28px 40px;
  text-align: center;
}
.hero-stat-num {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.4);
}

.hero-stat-sep {
  width: 1px;
  background: rgba(255,255,255,0.07);
  align-self: stretch;
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 100px;
  left: var(--side-pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.8; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.7); }
}


/* ════════════════════════════════════════════════════════════
   HORIZONTAL SLIDER — sdílené styly
   ════════════════════════════════════════════════════════════ */
.hslider-wrap {
  position: relative;
}

.hslider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-inline: var(--side-pad);
  padding-bottom: 4px;
  max-width: var(--max-w);
  margin-inline: auto;
}
.hslider::-webkit-scrollbar { display: none; }

.hslider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  padding-bottom: 4px;
}

.hslider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.hslider-btn:hover {
  border-color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.hslider-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.section--alt .hslider-btn { background: var(--paper); }

.hslider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.hslider-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.hslider-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ── Karta: disciplína / kondice ───────────────────────── */
.hcard {
  flex: 0 0 clamp(280px, 36vw, 420px);
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.section--alt .hcard { background: var(--white); }
.hcard:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.hcard--wide {
  flex: 0 0 clamp(320px, 48vw, 560px);
}

.hcard-visual {
  height: 220px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hcard-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.3s;
}
.hcard-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,28,0.48), rgba(26,26,28,0.05));
  pointer-events: none;
}
.hcard:hover .hcard-visual img { transform: scale(1.045); }

/* Disciplína pozadí — světlé, japonsky inspirované */
.aikido-visual {
  background:
    radial-gradient(circle at 30% 50%, rgba(184,150,90,0.14) 0%, transparent 60%),
    linear-gradient(140deg, #EAE7E0 0%, #F0EDE7 100%);
}
.karate-visual {
  background:
    radial-gradient(circle at 70% 40%, rgba(26,26,28,0.07) 0%, transparent 60%),
    linear-gradient(140deg, #E8E5DE 0%, #ECEAE3 100%);
}
.taichi-visual {
  background:
    radial-gradient(circle at 50% 70%, rgba(184,150,90,0.10) 0%, transparent 60%),
    linear-gradient(140deg, #EBE8E1 0%, #F2EFE9 100%);
}
.kondice-visual {
  background:
    linear-gradient(140deg, #F0EDE7 0%, #E8E5DE 100%);
  color: var(--gold);
}
.sebeobrana-visual {
  background:
    linear-gradient(140deg, #EDEAE3 0%, #E4E1DA 100%);
  color: var(--muted);
}
.box-visual {
  background:
    linear-gradient(140deg, #E8E5DE 0%, #DDD8CE 100%);
  color: var(--gold);
}

.hcard-glyph {
  position: relative;
  z-index: 1;
  font-family: var(--ff-display);
  font-size: 100px;
  font-weight: 300;
  color: rgba(255,255,255,0.52);
  line-height: 1;
  user-select: none;
  transition: transform 0.5s var(--ease-out), color 0.3s;
}
.hcard:hover .hcard-glyph {
  transform: scale(1.08) rotate(-2deg);
  color: rgba(255,255,255,0.72);
}

.hcard-icon {
  position: relative;
  z-index: 1;
  color: #fff;
  opacity: 0.78;
  transition: opacity 0.3s, transform 0.4s var(--ease-out);
}
.hcard:hover .hcard-icon { opacity: 0.9; transform: scale(1.05); }

.hcard-tag {
  position: absolute;
  z-index: 2;
  top: 14px; left: 14px;
  font-family: var(--ff-body);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--gold);
  color: #fff;
  padding: 4px 10px;
  border-radius: 2px;
}

.hcard-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.hcard-title {
  font-family: var(--ff-display);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--ink);
}
.hcard-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 16px;
}
.hcard-bullets {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.hcard-bullets li {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.hcard-bullets li::before {
  content: '—';
  color: var(--gold);
  font-weight: 300;
  flex-shrink: 0;
}
.hcard-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.03em;
  margin-top: auto;
  transition: gap 0.2s;
}
.hcard-link:hover { gap: 10px; }


/* ── Karta: novinka ─────────────────────────────────────── */
.hslider--news .news-card {
  flex: 0 0 clamp(260px, 32vw, 380px);
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.25s var(--ease-out), transform 0.25s;
}
.news-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.news-date-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
.news-day {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.news-month {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 2px;
}

.news-body { display: flex; flex-direction: column; gap: 8px; flex: 1; }

.news-tag {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 2px;
  border: 1px solid var(--border);
  color: var(--muted);
  background: var(--paper);
}

.news-title {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
}
.news-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Karta: galerie ─────────────────────────────────────── */
.hslider--gallery .gallery-slide {
  flex: 0 0 clamp(240px, 28vw, 340px);
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.gallery-ph {
  width: 100%;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s var(--ease-out);
  overflow: hidden;
  background: var(--paper-2);
}
.gallery-slide:hover .gallery-ph { transform: scale(1.03); }
.gallery-ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gph-1 { background: linear-gradient(145deg, #DDD8CE, #C8C3B8); }
.gph-2 { background: linear-gradient(145deg, #D4CEBF, #C2BCB0); }
.gph-3 { background: linear-gradient(145deg, #CAC5BC, #B8B4AA); }
.gph-4 { background: linear-gradient(145deg, #C8C4B8, #B5B2A8); }
.gph-5 { background: linear-gradient(145deg, #D0CBBD, #BDB8AC); }
.gph-6 { background: linear-gradient(145deg, #D8D3C8, #C5C0B5); }

.gallery-glyph {
  font-family: var(--ff-display);
  font-size: 72px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  user-select: none;
}

.gallery-caption {
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}


/* ════════════════════════════════════════════════════════════
   NÁBOR
   ════════════════════════════════════════════════════════════ */
.nabor-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 72px;
  align-items: start;
}

/* Ceny */
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
}

.price-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.price-card:hover { border-color: var(--gold); }

.price-card--featured {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-sm);
}

.price-featured-badge {
  position: absolute;
  top: -1px; right: 12px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold);
  color: #fff;
  padding: 3px 8px;
  border-radius: 0 0 4px 4px;
}

.price-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.price-amount { display: flex; align-items: baseline; gap: 4px; }
.price-num {
  font-family: var(--ff-display);
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.price-unit {
  font-size: 11px;
  color: var(--muted-2);
}

/* Rozvrh */
.rozvrh { margin-bottom: 36px; }
.rozvrh-table { border-top: 1px solid var(--border-2); }
.rozvrh-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-block: 10px;
  border-bottom: 1px solid var(--border-2);
  gap: 12px;
  font-size: 13.5px;
}
.rozvrh-day { color: var(--muted); font-weight: 400; flex-shrink: 0; width: 80px; }
.rozvrh-time { font-weight: 500; text-align: right; }
.rozvrh-time--closed { color: var(--muted-2); font-weight: 400; }

/* FAQ */
.faq { border-top: 1px solid var(--border-2); }
.faq-item { border-bottom: 1px solid var(--border-2); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 17px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--ff-body);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: color 0.15s;
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  font-size: 20px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s var(--ease-out), padding 0.25s;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 16px;
}

/* Formulář */
.form-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-xs);
}

.form-title {
  font-family: var(--ff-display);
  font-size: 1.9rem;
  font-weight: 400;
  margin-bottom: 4px;
}
.form-subtitle {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group--full { grid-column: 1 / -1; }
.form-group label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--ff-body);
  font-size: 14.5px;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,90,0.12);
}
.form-group textarea { resize: vertical; min-height: 88px; }

.form-gdpr {
  font-size: 11.5px;
  color: var(--muted-2);
  line-height: 1.5;
  margin-block: 12px 18px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 14px;
  padding: 14px;
}


/* ════════════════════════════════════════════════════════════
   LETNÍ TÁBOR
   ════════════════════════════════════════════════════════════ */
.tabor-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: center;
}

.tabor-visual {
  background:
    radial-gradient(ellipse at 40% 30%, rgba(184,150,90,0.14) 0%, transparent 65%),
    linear-gradient(135deg, var(--paper-2) 0%, var(--paper) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.tabor-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
}
.tabor-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,28,0.52), rgba(26,26,28,0.08));
}

.tabor-kanji {
  position: relative;
  z-index: 1;
  font-family: var(--ff-display);
  font-size: 140px;
  font-weight: 300;
  color: rgba(255,255,255,0.34);
  line-height: 1;
  user-select: none;
}

.tabor-badge {
  position: absolute;
  z-index: 2;
  top: 20px; left: 20px;
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--gold);
  color: #fff;
  padding: 5px 12px;
  border-radius: var(--radius);
}

.tabor-age-badge {
  position: absolute;
  z-index: 2;
  bottom: 20px; right: 20px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: var(--radius);
}

.tabor-title {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 16px;
}

.tabor-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 28px;
}

.tabor-facts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.tabor-fact {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.tabor-fact-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.tabor-fact--highlight {
  background: var(--gold-faint);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  padding: 10px 14px;
  color: var(--ink);
}
.tabor-fact--highlight .tabor-fact-icon { color: var(--gold); }


/* ════════════════════════════════════════════════════════════
   KONTAKT
   ════════════════════════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  background: var(--gold-faint);
  border: 1px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 4px;
}
.contact-value {
  font-size: 15px;
  line-height: 1.55;
}
.contact-value a { color: var(--gold); }
.contact-value a:hover { text-decoration: underline; }
.contact-note {
  font-size: 12px;
  color: var(--muted-2);
}

/* Mapa placeholder */
.contact-map {}
.map-placeholder {
  border-radius: var(--radius-lg);
  height: 360px;
  background:
    linear-gradient(145deg, #DDD8CE 0%, #CAC5BB 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-decor {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-decor svg { width: 200px; height: 200px; }

.map-pin-icon {
  color: var(--gold);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 8px rgba(184,150,90,0.4));
}

.map-text {
  text-align: center;
  position: relative;
  z-index: 1;
}
.map-name {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
}
.map-city {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.map-link {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius);
  z-index: 2;
  transition: background 0.2s, box-shadow 0.2s;
}
.map-link:hover {
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}


/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
footer {
  background: var(--ink);
  color: rgba(250,250,248,0.55);
  padding: 64px 0 28px;
}

.footer-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--side-pad);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.07em;
  color: rgba(250,250,248,0.9);
  margin-bottom: 6px;
}
.footer-tagline {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 13px;
  color: rgba(250,250,248,0.38);
  line-height: 1.7;
  max-width: 240px;
}

.footer-col-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.3);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 13.5px;
  color: rgba(250,250,248,0.5);
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--side-pad);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(250,250,248,0.25);
  flex-wrap: wrap;
  gap: 8px;
}

/* Back to top */
.back-top {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 150;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.back-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-top:hover { background: var(--gold); }


/* ════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ════════════════════════════════════════════════════════════ */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet 1000px
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1000px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .hero-layout {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .hero-content,
  .hero-media-stack { min-width: 0; }
  .hero-media-stack {
    max-width: 620px;
    width: 100%;
  }
  .hero-photo,
  .hero-photo img {
    min-height: 300px;
  }

  .hero-stats {
    flex-wrap: wrap;
  }
  .hero-stat { padding: 22px 28px; }

  .nabor-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .tabor-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .tabor-visual { min-height: 220px; }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand { grid-column: 1 / -1; }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile 640px
   ════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  :root {
    --side-pad: 18px;
    --nav-h: 60px;
  }

  .section { padding-block: 64px; }

  .hero {
    padding-top: calc(var(--nav-h) + 44px);
  }
  .hero-layout {
    display: block;
    overflow: hidden;
  }
  .hero-content {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .hero-media-stack {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-top: 48px;
  }

  .hero-title {
    font-size: clamp(2.75rem, 12.6vw, 3.75rem);
    letter-spacing: 0;
  }
  .hero-desc { max-width: 100%; }
  .hero-photo,
  .hero-photo img { min-height: 240px; }
  .hero-disciplines {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
  }
  .hero-disc-item { min-width: 0; }
  .hero-disc-kanji { font-size: 2.1rem; }
  .hero-disc-name {
    font-size: 9px;
    letter-spacing: 0.08em;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn {
    width: 100%;
    max-width: calc(100vw - (2 * var(--side-pad)));
    justify-content: center;
  }
  .hero-scroll { display: none; }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
  }
  .hero-stat-sep { display: none; }
  .hero-stat {
    min-width: 0;
    padding: 20px 12px;
  }
  .hero-stat-label {
    letter-spacing: 0.08em;
    overflow-wrap: anywhere;
  }
  .hero-stat:nth-child(2) { border-right: 1px solid rgba(255,255,255,0.07); }
  .hero-stat:nth-child(1),
  .hero-stat:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.07); }
  .hero-stat:nth-child(1),
  .hero-stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.07); }

  .hcard {
    flex: 0 0 clamp(260px, 82vw, 340px);
  }
  .hcard--wide {
    flex: 0 0 clamp(280px, 85vw, 360px);
  }
  .hslider--news .news-card {
    flex: 0 0 clamp(240px, 80vw, 320px);
  }
  .hslider--gallery .gallery-slide {
    flex: 0 0 clamp(200px, 70vw, 280px);
  }

  .price-grid { grid-template-columns: 1fr; }

  .form-card { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: 1; }
  .footer-desc { max-width: none; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .section-header { margin-bottom: 32px; }
}

/* ── Print ─────────────────────────────────────────────── */
@media print {
  .nav, .mobile-drawer, .drawer-backdrop, .back-top,
  .hslider-controls, .hero-scroll { display: none !important; }
  body { background: #fff; color: #000; }
  .hero { min-height: auto; padding-top: 20px; }
}
