/* SmartCluster — VARIANT 9: Horizontal snap deck (Apple Vision Pro / Linear style) */

/* ========== RESET & TOKENS ========== */
*,*::before,*::after{box-sizing:border-box}
html{
  -webkit-text-size-adjust:100%;
  background:#0a0a0a;
  overflow:hidden;
  height:100%;
}
body.hd-body{
  margin:0;
  font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  background:#0a0a0a;
  color:#fff;
  line-height:1.5;
  overflow:hidden;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  height:100vh;
  height:100svh;
  width:100vw;
  position:fixed;
  inset:0;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;border:0;background:none;color:inherit}
ul{margin:0;padding:0;list-style:none}
:root{
  --bg:#0a0a0a;
  --bg-2:#111;
  --cream:#faf5ee;
  --text:#fff;
  --muted:#a1a1aa;
  --muted-2:#6b6b73;
  --gold:#d4a574;
  --gold-bright:#e8b885;
  --blue:#3b82f6;
  --line:rgba(255,255,255,.12);
  --line-strong:rgba(255,255,255,.22);
  --glass:rgba(10,10,10,.55);
  --header-h:64px;
  --slide-count:10;
}

/* ========== FIXED HEADER (glass) ========== */
.hd-head{
  position:fixed;top:0;left:0;right:0;z-index:60;
  height:var(--header-h);
  background:linear-gradient(180deg,rgba(10,10,10,.78) 0%,rgba(10,10,10,.38) 70%,transparent 100%);
  backdrop-filter:blur(14px) saturate(140%);
  -webkit-backdrop-filter:blur(14px) saturate(140%);
}
.hd-head-inner{
  max-width:1500px;margin:0 auto;height:100%;
  padding:0 32px;display:flex;align-items:center;gap:32px;
}
.hd-logo{display:flex;flex-direction:column;line-height:1;gap:3px}
.hd-mark{font-size:18px;font-weight:800;letter-spacing:.1em;color:#fff}
.hd-logo-sub{font-size:10px;color:var(--muted);letter-spacing:.14em;text-transform:uppercase}
.hd-nav{display:flex;gap:28px;margin-left:auto}
.hd-nav a{
  font-size:13px;font-weight:500;color:rgba(255,255,255,.78);
  letter-spacing:.02em;transition:color .2s;
}
.hd-nav a:hover{color:#fff}
.hd-right{display:flex;align-items:center;gap:12px}

/* Slide progress bar — thin, under header */
.hd-progress{
  position:absolute;left:0;right:0;bottom:-2px;
  height:2px;background:rgba(255,255,255,.08);
  pointer-events:none;
}
.hd-progress-fill{
  display:block;height:100%;width:0%;
  background:linear-gradient(90deg,var(--gold),var(--gold-bright));
  transition:width .35s cubic-bezier(.16,1,.3,1);
}

/* ========== HORIZONTAL DECK ========== */
.hd-deck{
  position:absolute;inset:0;
  display:flex;
  flex-direction:row;
  width:calc(100vw * var(--slide-count));
  height:100%;
  will-change:transform;
  transform:translate3d(0,0,0);
  transition:transform .9s cubic-bezier(.22,1,.36,1);
  /* Native horizontal snap as a fallback when JS hijack disabled (mobile/reduce-motion) */
  scroll-snap-type:x mandatory;
}

.hd-slide{
  position:relative;
  flex:0 0 100vw;
  width:100vw;
  height:100vh;
  height:100svh;
  scroll-snap-align:start;
  scroll-snap-stop:always;
  overflow:hidden;
  display:flex;align-items:center;
  isolation:isolate;
}

/* ========== BACKGROUND PHOTO LAYER ========== */
.hd-bg{position:absolute;inset:0;z-index:-2;overflow:hidden}
.hd-bg img{
  width:100%;height:100%;object-fit:cover;object-position:center;
  filter:saturate(.88);
  transform:scale(1.04);
  transition:transform 1.4s cubic-bezier(.22,1,.36,1);
}
.is-active .hd-bg img{transform:scale(1)}
.hd-bg--dim img{filter:saturate(.6) brightness(.55)}
.hd-bg--dark img{filter:saturate(.4) brightness(.35)}
.hd-bg--blur img{filter:blur(8px) saturate(.5) brightness(.4);transform:scale(1.08)}

.hd-bg-grad{position:absolute;inset:0;z-index:-1;pointer-events:none}
.hd-bg-grad--hero{
  background:linear-gradient(90deg,rgba(10,10,10,.7) 0%,rgba(10,10,10,.3) 55%,rgba(10,10,10,.85) 100%),
             linear-gradient(180deg,rgba(10,10,10,.3) 0%,transparent 40%,rgba(10,10,10,.5) 100%);
}
.hd-bg-grad--full{background:linear-gradient(180deg,rgba(10,10,10,.65) 0%,rgba(10,10,10,.5) 50%,rgba(10,10,10,.85) 100%)}
.hd-bg-grad--solid{background:linear-gradient(180deg,rgba(10,10,10,.82) 0%,rgba(10,10,10,.72) 100%)}
.hd-bg-grad--right{background:linear-gradient(90deg,rgba(10,10,10,.85) 0%,rgba(10,10,10,.5) 60%,rgba(10,10,10,.2) 100%)}

/* ========== SLIDE INNER ========== */
.hd-slide-inner{
  position:relative;z-index:2;
  width:100%;max-width:1400px;margin:0 auto;
  padding:110px 64px 90px;
  max-height:100vh;
  max-height:100svh;
  overflow-y:auto;
  overflow-x:hidden;
  scrollbar-width:thin;
  scrollbar-color:rgba(255,255,255,.18) transparent;
}
.hd-slide-inner::-webkit-scrollbar{width:6px}
.hd-slide-inner::-webkit-scrollbar-thumb{background:rgba(255,255,255,.18);border-radius:3px}
.hd-slide-inner::-webkit-scrollbar-track{background:transparent}

/* ========== TYPOGRAPHY UTILITIES ========== */
.hd-kicker{
  display:inline-block;
  font-size:11px;font-weight:600;
  letter-spacing:.22em;text-transform:uppercase;
  color:var(--gold);
  padding:6px 14px;border:1px solid rgba(212,165,116,.4);
  border-radius:999px;
  margin-bottom:32px;
}
.hd-h1{
  font-family:'Inter',sans-serif;
  font-size:clamp(56px,9vw,120px);
  font-weight:800;
  line-height:.95;
  letter-spacing:-.035em;
  margin:0 0 28px;
  color:#fff;
}
.hd-h1--small{font-size:clamp(48px,7.5vw,96px)}
.hd-h1-line{display:block}
.hd-h2{
  font-family:'Inter',sans-serif;
  font-size:clamp(40px,5.5vw,72px);
  font-weight:700;
  line-height:1;
  letter-spacing:-.025em;
  margin:0 0 24px;
  color:#fff;
}
.hd-h2--lead{
  font-weight:500;
  font-size:clamp(28px,3.5vw,48px);
  line-height:1.25;
  letter-spacing:-.015em;
  max-width:1000px;
}
.hd-sub{
  font-size:clamp(16px,1.4vw,20px);
  color:var(--muted);
  line-height:1.55;
  max-width:560px;
  margin:0 0 36px;
  font-weight:400;
}
.hd-italic{font-family:'Playfair Display',serif;font-style:italic;font-weight:700}
.hd-hl{color:var(--gold)}

/* ========== CTA BUTTONS ========== */
.hd-cta-row{display:flex;gap:14px;flex-wrap:wrap}
.hd-btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:14px 28px;
  font-size:14px;font-weight:600;letter-spacing:.02em;
  border-radius:999px;
  transition:all .25s cubic-bezier(.16,1,.3,1);
  border:1px solid transparent;
}
.hd-btn--primary{background:#fff;color:#0a0a0a}
.hd-btn--primary:hover{background:var(--gold);color:#fff;transform:translateY(-2px)}
.hd-btn--ghost{background:transparent;color:#fff;border-color:rgba(255,255,255,.35)}
.hd-btn--ghost:hover{background:rgba(255,255,255,.08);border-color:#fff;transform:translateY(-2px)}

/* ========== SCROLL CUE (hero — points RIGHT) ========== */
.hd-scroll-cue{
  position:absolute;right:32px;bottom:64px;z-index:3;
  display:flex;align-items:center;gap:10px;
  color:var(--muted);font-size:11px;letter-spacing:.22em;text-transform:uppercase;
  animation:hdNudge 2.4s ease-in-out infinite;
}
.hd-scroll-cue svg{stroke:var(--gold)}
@keyframes hdNudge{
  0%,100%{transform:translateX(0)}
  50%{transform:translateX(8px)}
}
.hd-cap{
  position:absolute;left:32px;bottom:32px;z-index:3;
  font-size:11px;color:var(--muted-2);letter-spacing:.08em;
  font-family:'Inter',sans-serif;font-weight:500;
  border-left:2px solid var(--gold);padding-left:10px;
}

/* ========== SLIDE 02 · INTRO ========== */
.hd-intro-inner{max-width:1100px}
.hd-intro-meta{
  display:flex;gap:14px;flex-wrap:wrap;
  font-size:13px;color:var(--muted);letter-spacing:.04em;
  margin-top:36px;font-weight:500;
}
.hd-dot-sep{color:var(--gold);opacity:.7}

/* ========== SLIDE 03 · STATS ========== */
.hd-stats-inner{display:flex;flex-direction:column;justify-content:center}
.hd-stats-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:48px 32px;margin-top:24px;
}
.hd-stat{
  display:flex;flex-direction:column;gap:14px;
  border-left:2px solid var(--gold);padding-left:20px;
}
.hd-stat-num{
  font-family:'Playfair Display',serif;font-style:italic;font-weight:700;
  font-size:clamp(72px,11vw,180px);
  line-height:.85;letter-spacing:-.04em;color:var(--cream);
}
.hd-stat-num sup{font-size:.45em;vertical-align:super;line-height:1;font-style:italic;color:var(--gold)}
.hd-stat-lbl{
  font-size:13px;font-weight:500;color:var(--muted);
  letter-spacing:.04em;text-transform:uppercase;line-height:1.4;
}

/* ========== SLIDE 04 · WORKING GROUPS ========== */
.hd-section-head{margin-bottom:40px}
.hd-groups-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:12px 64px;
}
.hd-grp{
  display:flex;align-items:baseline;gap:18px;
  padding:16px 0;border-bottom:1px solid var(--line);
  transition:all .3s cubic-bezier(.16,1,.3,1);position:relative;
}
.hd-grp::after{
  content:"";position:absolute;left:0;bottom:-1px;height:2px;width:0;
  background:var(--gold);transition:width .35s cubic-bezier(.16,1,.3,1);
}
.hd-grp:hover{transform:translateX(8px)}
.hd-grp:hover::after{width:100%}
.hd-grp-num{
  font-size:13px;font-weight:600;color:var(--gold);
  letter-spacing:.1em;min-width:32px;font-variant-numeric:tabular-nums;
}
.hd-grp-name{
  font-size:clamp(20px,2.2vw,30px);
  font-weight:600;color:#fff;letter-spacing:-.015em;font-family:'Inter',sans-serif;
}

/* ========== SLIDE 05 · KONFERENCIE ========== */
.hd-conf-inner{max-width:1100px}
.hd-conf-meta{
  display:flex;gap:14px;flex-wrap:wrap;align-items:center;
  font-size:13px;color:var(--muted);letter-spacing:.05em;
  margin:0 0 32px;font-weight:500;
}
.hd-conf-range{
  font-family:'Playfair Display',serif;font-style:italic;
  font-size:24px;color:var(--gold);font-weight:700;letter-spacing:.02em;
}
.hd-conf-dot{color:var(--gold);opacity:.6}
.hd-conf-list{display:flex;flex-wrap:wrap;gap:8px 14px;margin:0 0 36px}
.hd-conf-list span{
  font-size:13px;font-weight:500;color:#fff;
  padding:7px 14px;border:1px solid var(--line-strong);
  border-radius:999px;background:rgba(255,255,255,.04);
  backdrop-filter:blur(8px);
}

/* ========== SLIDES 06 & 08 · PULL QUOTES ========== */
.hd-quote-inner{max-width:1100px;display:flex;flex-direction:column;align-items:flex-start}
.hd-quote-mark{
  font-family:'Playfair Display',serif;
  font-size:clamp(120px,18vw,240px);
  line-height:.6;color:var(--gold);opacity:.7;
  margin:0 0 -20px;font-weight:900;
}
.hd-quote-text{
  font-family:'Playfair Display',serif;font-style:italic;font-weight:700;
  font-size:clamp(32px,4.5vw,60px);
  line-height:1.15;letter-spacing:-.02em;
  color:#fff;margin:0 0 36px;max-width:1100px;
}
.hd-quote-cite{display:flex;flex-direction:column;gap:4px;font-style:normal}
.hd-quote-name{
  font-size:16px;font-weight:700;color:var(--gold);letter-spacing:.04em;text-transform:uppercase;
}
.hd-quote-role{font-size:13px;color:var(--muted);letter-spacing:.04em}

/* ========== SLIDE 07 · PROJEKTY ========== */
.hd-proj-inner{display:flex;flex-direction:column;justify-content:center}
.hd-proj-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.hd-proj-card{
  padding:32px 28px;
  background:rgba(255,255,255,.04);
  backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  border:1px solid var(--line);border-radius:14px;
  display:flex;flex-direction:column;gap:14px;
  transition:all .35s cubic-bezier(.16,1,.3,1);
  min-height:260px;
}
.hd-proj-card:hover{
  background:rgba(255,255,255,.07);
  border-color:rgba(212,165,116,.4);
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(0,0,0,.5);
}
.hd-proj-tag{
  font-size:10px;font-weight:600;color:var(--gold);
  letter-spacing:.18em;text-transform:uppercase;
}
.hd-proj-title{
  font-size:32px;font-weight:700;color:#fff;
  letter-spacing:-.02em;line-height:1;margin:0;
}
.hd-proj-desc{font-size:14px;color:var(--muted);line-height:1.55;margin:0;flex:1}
.hd-proj-link{
  font-size:13px;font-weight:600;color:var(--gold);
  letter-spacing:.04em;margin-top:auto;
  transition:gap .25s;display:inline-flex;align-items:center;gap:4px;
}
.hd-proj-link:hover{gap:10px}
.hd-proj-link--muted{color:var(--muted);font-style:italic;font-weight:500}

/* ========== SLIDE 09 · ČLENOVIA + mini-news ========== */
.hd-members-inner{display:flex;flex-direction:column;justify-content:flex-start}
.hd-mem-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.hd-mem-col{
  display:flex;flex-direction:column;gap:12px;
  padding:18px 20px;
  background:rgba(255,255,255,.03);
  backdrop-filter:blur(10px);
  border:1px solid var(--line);
  border-radius:10px;
}
.hd-mem-head{
  display:flex;align-items:baseline;justify-content:space-between;
  padding-bottom:10px;border-bottom:1px solid var(--line);
}
.hd-mem-h{
  font-size:14px;font-weight:700;color:#fff;
  letter-spacing:.04em;text-transform:uppercase;
}
.hd-mem-num{
  font-family:'Playfair Display',serif;font-style:italic;
  font-size:22px;color:var(--gold);font-weight:700;
}
.hd-mem-col ul li{
  font-size:13px;color:var(--muted);
  padding:4px 0;border-bottom:1px dashed rgba(255,255,255,.06);
  transition:color .2s;
}
.hd-mem-col ul li:hover{color:#fff}
.hd-mem-col ul li:last-child{border-bottom:0}

.hd-news-mini{
  margin-top:36px;padding-top:28px;
  border-top:1px solid var(--line);
}
.hd-news-mini-h{
  display:block;
  font-size:11px;font-weight:700;color:var(--gold);
  letter-spacing:.22em;text-transform:uppercase;margin-bottom:14px;
}
.hd-news-mini ul{display:flex;flex-direction:column;gap:8px}
.hd-news-mini li{
  font-size:14px;color:var(--muted);line-height:1.5;
}
.hd-news-mini li b{color:var(--gold);font-weight:600;margin-right:8px}

/* ========== SLIDE 10 · CTA + FOOTER ========== */
.hd-cta-inner{max-width:1200px;display:flex;flex-direction:column}
.hd-foot{
  margin-top:48px;padding-top:32px;
  border-top:1px solid var(--line);width:100%;
}
.hd-foot-grid{
  display:grid;grid-template-columns:1.4fr 1fr 1fr;
  gap:40px;padding-bottom:24px;
}
.hd-foot-col{display:flex;flex-direction:column;gap:6px}
.hd-foot-col h4{
  margin:0 0 6px;font-size:11px;font-weight:700;color:var(--gold);
  letter-spacing:.18em;text-transform:uppercase;
}
.hd-foot-col a,.hd-foot-col span{
  font-size:13px;color:var(--muted);line-height:1.5;transition:color .2s;
}
.hd-foot-col a:hover{color:#fff}
.hd-foot-col p{font-size:13px;color:var(--muted);line-height:1.55;margin:6px 0 0}
.hd-foot-mark{font-size:22px;font-weight:800;letter-spacing:.1em;color:#fff}
.hd-foot-tag{
  font-family:'Playfair Display',serif;font-style:italic;
  font-size:14px;color:var(--gold);font-weight:700;
}
.hd-foot-base{
  padding-top:20px;border-top:1px solid var(--line);
  display:flex;justify-content:space-between;flex-wrap:wrap;gap:12px;
  font-size:11px;color:var(--muted-2);letter-spacing:.04em;
}

/* ========== HORIZONTAL DOTS — bottom center ========== */
.hd-dots{
  position:fixed;left:50%;bottom:22px;transform:translateX(-50%);z-index:55;
  display:flex;flex-direction:row;gap:18px;
  padding:10px 18px;border-radius:999px;
  background:rgba(10,10,10,.45);backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border:1px solid var(--line);
}
.hd-dot{
  position:relative;width:10px;height:10px;border-radius:50%;
  background:rgba(255,255,255,.28);
  transition:all .35s cubic-bezier(.16,1,.3,1);padding:0;
}
.hd-dot:hover{background:rgba(255,255,255,.6);transform:scale(1.4)}
.hd-dot.is-active{
  background:var(--gold);transform:scale(2);
  box-shadow:0 0 12px rgba(212,165,116,.5);
}
.hd-dot-tip{
  position:absolute;left:50%;bottom:calc(100% + 14px);transform:translateX(-50%);
  background:rgba(10,10,10,.92);color:#fff;
  padding:6px 12px;border-radius:6px;
  font-size:11px;font-weight:500;letter-spacing:.04em;text-transform:uppercase;
  white-space:nowrap;opacity:0;pointer-events:none;
  transition:opacity .2s;border:1px solid var(--line);
}
.hd-dot:hover .hd-dot-tip{opacity:1}

/* ========== COUNTER (top right under header) ========== */
.hd-counter{
  position:fixed;right:28px;top:calc(var(--header-h) + 18px);z-index:50;
  display:flex;align-items:baseline;gap:4px;
  font-family:'Playfair Display',serif;font-style:italic;
  font-weight:700;color:var(--gold);
  font-size:18px;line-height:1;
  background:rgba(10,10,10,.4);
  padding:8px 14px;border-radius:999px;
  border:1px solid var(--line);
  backdrop-filter:blur(8px);
  font-variant-numeric:tabular-nums;
}
.hd-counter-curr{color:var(--cream);font-size:22px}
.hd-counter-sep{color:var(--gold);opacity:.6;font-size:14px;margin:0 2px}
.hd-counter-tot{color:var(--muted);font-size:14px}

/* ========== REVEAL ANIMATIONS — slide entry from RIGHT ========== */
[data-reveal]{
  opacity:0;
  transform:translateX(40px);
  transition:opacity .85s cubic-bezier(.22,1,.36,1),transform .85s cubic-bezier(.22,1,.36,1);
}
.is-active [data-reveal]{
  opacity:1;transform:translateX(0);
}
/* Exit (when leaving active state) — slide out LEFT */
.is-leaving [data-reveal]{
  opacity:0;transform:translateX(-32px);
  transition:opacity .35s ease-out,transform .35s ease-out;
}
/* Stagger inside active slide */
.is-active [data-reveal]:nth-child(1){transition-delay:.18s}
.is-active [data-reveal]:nth-child(2){transition-delay:.32s}
.is-active [data-reveal]:nth-child(3){transition-delay:.46s}
.is-active [data-reveal]:nth-child(4){transition-delay:.58s}
.is-active [data-reveal]:nth-child(5){transition-delay:.70s}
.is-active [data-reveal]:nth-child(6){transition-delay:.82s}

/* Stagger stats */
.is-active .hd-stat:nth-child(1){transition-delay:.18s}
.is-active .hd-stat:nth-child(2){transition-delay:.30s}
.is-active .hd-stat:nth-child(3){transition-delay:.42s}
.is-active .hd-stat:nth-child(4){transition-delay:.54s}

/* Stagger groups */
.is-active .hd-grp:nth-child(1){transition-delay:.18s}
.is-active .hd-grp:nth-child(2){transition-delay:.24s}
.is-active .hd-grp:nth-child(3){transition-delay:.30s}
.is-active .hd-grp:nth-child(4){transition-delay:.36s}
.is-active .hd-grp:nth-child(5){transition-delay:.42s}
.is-active .hd-grp:nth-child(6){transition-delay:.48s}
.is-active .hd-grp:nth-child(7){transition-delay:.54s}
.is-active .hd-grp:nth-child(8){transition-delay:.60s}
.is-active .hd-grp:nth-child(9){transition-delay:.66s}
.is-active .hd-grp:nth-child(10){transition-delay:.72s}

/* Stagger cards / columns */
.is-active .hd-proj-card:nth-child(1){transition-delay:.22s}
.is-active .hd-proj-card:nth-child(2){transition-delay:.36s}
.is-active .hd-proj-card:nth-child(3){transition-delay:.50s}
.is-active .hd-mem-col:nth-child(1){transition-delay:.18s}
.is-active .hd-mem-col:nth-child(2){transition-delay:.28s}
.is-active .hd-mem-col:nth-child(3){transition-delay:.38s}
.is-active .hd-mem-col:nth-child(4){transition-delay:.48s}

/* ========== REDUCED MOTION — native vertical scroll fallback ========== */
@media (prefers-reduced-motion:reduce){
  html,body.hd-body{overflow:auto;position:static;height:auto}
  .hd-deck{
    position:static;display:flex;flex-direction:column;
    width:100%;height:auto;transform:none;transition:none;
    scroll-snap-type:none;
  }
  .hd-slide{flex:none;width:100%;height:auto;min-height:100vh}
  .hd-bg img{transition:none;transform:scale(1)}
  [data-reveal]{opacity:1;transform:none;transition:none}
  .hd-scroll-cue{animation:none;display:none}
  .hd-counter{display:none}
  .hd-dots{position:sticky}
}

/* ========== TABLET (1024px) ========== */
@media (max-width:1024px){
  .hd-slide-inner{padding:100px 40px 80px}
  .hd-nav{gap:18px}
  .hd-nav a{font-size:12px}
  .hd-groups-grid{gap:10px 40px}
  .hd-stats-grid{gap:32px 24px}
  .hd-mem-grid{grid-template-columns:repeat(2,1fr);gap:18px}
  .hd-foot-grid{grid-template-columns:1fr 1fr;gap:32px}
}

/* ========== MOBILE (768px) — native horizontal scroll + snap ========== */
@media (max-width:768px){
  :root{--header-h:56px}
  /* Disable scroll-lock body; use native horizontal scroll on deck */
  html,body.hd-body{
    overflow:hidden;position:fixed;inset:0;
    height:100vh;height:100svh;width:100vw;
  }
  .hd-deck{
    /* Keep flex row, but native horizontal scroll + snap on container */
    position:absolute;inset:0;
    width:auto;height:100%;
    overflow-x:auto;overflow-y:hidden;
    -webkit-overflow-scrolling:touch;
    scroll-snap-type:x mandatory;
    transform:none !important;
    transition:none !important;
    scrollbar-width:none;
  }
  .hd-deck::-webkit-scrollbar{display:none}
  .hd-slide{
    flex:0 0 100vw;width:100vw;height:100vh;height:100svh;
    scroll-snap-align:start;scroll-snap-stop:always;
  }
  .hd-slide-inner{padding:80px 22px 88px}

  .hd-head-inner{padding:0 16px;gap:12px}
  .hd-nav{display:none}
  .hd-logo-sub{display:none}
  .hd-mark{font-size:16px}

  .hd-counter{display:none}

  .hd-h1{font-size:clamp(44px,11vw,72px)}
  .hd-h1--small{font-size:clamp(36px,10vw,60px)}
  .hd-h2{font-size:clamp(32px,7vw,48px)}
  .hd-h2--lead{font-size:clamp(22px,5vw,32px)}
  .hd-kicker{font-size:10px;margin-bottom:20px;padding:5px 11px}
  .hd-sub{font-size:15px}
  .hd-btn{padding:12px 22px;font-size:13px}

  /* Stats 2x2 */
  .hd-stats-grid{grid-template-columns:repeat(2,1fr);gap:32px 18px}
  .hd-stat-num{font-size:clamp(56px,18vw,96px)}
  .hd-stat-lbl{font-size:11px}

  /* Groups single column */
  .hd-groups-grid{grid-template-columns:1fr;gap:0}
  .hd-grp{padding:12px 0;gap:14px}
  .hd-grp-name{font-size:18px}

  /* Konferencie list */
  .hd-conf-range{font-size:18px}
  .hd-conf-meta{font-size:12px;gap:8px}
  .hd-conf-list{gap:6px 8px}
  .hd-conf-list span{font-size:11px;padding:5px 10px}

  /* Quote */
  .hd-quote-mark{font-size:90px;margin-bottom:-12px}
  .hd-quote-text{font-size:clamp(24px,6vw,34px);line-height:1.2}
  .hd-quote-name{font-size:14px}
  .hd-quote-role{font-size:12px}

  /* Projekty 1-col */
  .hd-proj-grid{grid-template-columns:1fr;gap:16px}
  .hd-proj-card{min-height:auto;padding:24px 22px}
  .hd-proj-title{font-size:26px}

  /* Členovia 1-col */
  .hd-mem-grid{grid-template-columns:1fr;gap:14px}

  /* Footer single column */
  .hd-foot-grid{grid-template-columns:1fr;gap:24px}
  .hd-foot-base{font-size:10px;flex-direction:column;gap:8px}

  /* Hero cue + caption */
  .hd-scroll-cue{right:auto;left:50%;transform:translateX(-50%);bottom:90px;font-size:10px}
  .hd-cap{left:18px;bottom:80px;font-size:10px}

  /* Dots smaller */
  .hd-dots{bottom:14px;gap:10px;padding:8px 14px}
  .hd-dot-tip{display:none}
  /* On mobile, reveals visible immediately so user sees content as soon as slide is on-screen */
  [data-reveal]{opacity:1;transform:none;transition:none}
}

/* ========== EXTRA SMALL (480px) ========== */
@media (max-width:480px){
  .hd-slide-inner{padding:74px 18px 92px}
  .hd-cta-row{flex-direction:column;align-items:stretch}
  .hd-btn{justify-content:center;width:100%}
}
