/* =================================================================
   ŠABLONA — styl podle sabi.com
   Struktura souboru:
     0. Proměnné a reset
     1. Utility (sr-only, reveal)
     2. Nav
     3. Hero mozaika
     4. Sticky scéna
     5. Produktová karta
     6. Jak to funguje
     7. Napsali o nás
     8. Tmavý závěr (pásek, waitlist, patička)
     9. Responzivita
    10. prefers-reduced-motion
   ================================================================= */

/* ---------- 0. PROMĚNNÉ A RESET ---------------------------------- */
:root{
  /* [EDIT] Celá paleta webu je tady. Změň barvu na jednom místě. */
  --bg-warm:    #f3ede8;   /* hlavní pozadí stránky */
  --bg-cream:   #ede8e0;   /* o odstín tmavší, pro odsazené bloky */
  --fg-primary: #1a1a1a;   /* nadpisy */
  --fg-secondary:#6b6560;  /* běžný text */
  --accent-gold:#c4a35a;   /* akcent — tečky, CTA, linky */
  --border-warm:#d9d3cb;   /* jemné linky a rámečky */
  --ink-dark:   #1e1e1e;   /* pozadí tmavého závěru */

  --nav-h: 3.125rem;
  --ease: cubic-bezier(.16,1,.3,1);
  --radius-lg: 24px;
}
@media (min-width:640px){ :root{ --nav-h:3.25rem } }
@media (min-width:768px){ :root{ --nav-h:3.75rem } }

*,*::before,*::after{ box-sizing:border-box }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100% }
body{
  margin:0;
  font-family:'Inter',system-ui,-apple-system,'Segoe UI',Roboto,sans-serif;
  background:var(--bg-warm);
  color:var(--fg-primary);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ display:block; max-width:100% }
h1,h2,h3,p,figure,ol,ul{ margin:0 }
ol,ul{ padding:0; list-style:none }
a{ color:inherit; text-decoration:none }
main{ position:relative; z-index:1; background:var(--bg-warm) }

/* ---------- 1. UTILITY ------------------------------------------- */
.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0;
}
.muted{ color:var(--fg-secondary) }

/* prvky s třídou .reveal najede JS při vstupu do viewportu */
.reveal{
  opacity:0; transform:translateY(26px);
  transition:opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-visible{ opacity:1; transform:none }

/* ---------- 2. NAV ------------------------------------------------ */
.nav{
  position:fixed; inset:0 0 auto 0; z-index:50;
  pointer-events:none;
  transition:background .35s ease, border-color .35s ease;
  border-bottom:1px solid transparent;
}
.nav.is-solid{
  background:color-mix(in srgb, var(--bg-warm) 78%, transparent);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom-color:var(--border-warm);
}
.nav__inner{
  pointer-events:auto;
  height:var(--nav-h);
  display:flex; align-items:center; justify-content:space-between;
  padding:0 1rem;
}
@media (min-width:640px){ .nav__inner{ padding:0 1.25rem } }
@media (min-width:768px){ .nav__inner{ padding:0 2.5rem } }
@media (min-width:1024px){ .nav__inner{ padding:0 4rem } }

.nav__mark{
  font-weight:800; letter-spacing:.22em; font-size:.8rem;
  color:#fff; transition:color .3s ease;
}
.nav__links{ display:flex; gap:1.75rem; font-size:.8rem; font-weight:500 }
.nav__links a{ color:rgba(255,255,255,.78); transition:color .3s ease }
.nav__links a:hover{ color:#fff }

body.nav-dark .nav__mark{ color:var(--fg-primary) }
body.nav-dark .nav__links a{ color:var(--fg-secondary) }
body.nav-dark .nav__links a:hover{ color:var(--fg-primary) }

@media (max-width:767px){ .nav__links{ display:none } }

/* ---------- 3. HERO MOZAIKA --------------------------------------- */
.hero{
  position:relative; width:100%; height:100dvh;
  background:#000; overflow:hidden;
}
.hero__grid{ height:100%; gap:clamp(4px,.78vw,12px); padding:clamp(4px,.78vw,12px) }
.hero__grid--desktop{ display:flex }
.hero__grid--mobile{ display:none; flex-direction:column; gap:clamp(4px,1.2vw,8px); padding:clamp(4px,1.2vw,8px) }

.hero__col{ display:flex; flex-direction:column; min-height:0; gap:clamp(4px,.78vw,12px) }
.hero__row{ display:flex; min-width:0; flex:1; gap:clamp(4px,1.2vw,8px) }

.hero__tile{
  position:relative; min-height:0; min-width:0; overflow:hidden;
  border-radius:clamp(4px,.52vw,10px);
  background:#151515;
  transform:scale(1.14);
  opacity:0;
  will-change:transform,opacity;
}
.hero__grid--mobile .hero__tile{ height:100%; border-radius:clamp(4px,1vw,8px) }
.hero__tile img{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover;
}
.hero.is-in .hero__tile{
  opacity:1; transform:none;
  transition:opacity .8s var(--ease), transform 1.25s var(--ease);
}

/* jemný závoj pod navigací, aby byl bílý text čitelný i na světlé fotce */
.hero::after{
  content:''; position:absolute; inset:0 0 auto 0; height:9rem; z-index:12;
  background:linear-gradient(to bottom, rgba(0,0,0,.45), transparent);
  pointer-events:none;
}

.hero__headline{
  position:absolute; inset:0; z-index:10;
  display:flex; align-items:center; justify-content:center;
  font-size:clamp(3rem,15.6vw,18.75rem);
  font-weight:400; line-height:1; letter-spacing:-.04em;
  color:#fff; text-align:center;
  pointer-events:none;
  opacity:0; transform:translateY(.12em) scale(.97);
  will-change:transform,opacity;
}
.hero.is-in .hero__headline{
  opacity:1; transform:none;
  transition:opacity 1s var(--ease) .35s, transform 1.4s var(--ease) .35s;
}

.hero__curtain{
  position:absolute; inset:0; z-index:20; background:#000;
  pointer-events:none;
  transition:opacity 1.1s ease;
}
.hero.is-in .hero__curtain{ opacity:0 }

.hero__scrollhint{
  position:absolute; left:50%; bottom:1.75rem; z-index:11;
  width:1px; height:44px; overflow:hidden;
  background:rgba(255,255,255,.2);
  transform:translateX(-50%);
  opacity:0; transition:opacity .8s ease 1.6s;
}
.hero.is-in .hero__scrollhint{ opacity:1 }
.hero__scrollhint span{
  display:block; width:100%; height:14px; background:#fff;
  animation:hint 2.2s var(--ease) infinite;
}
@keyframes hint{ 0%{transform:translateY(-16px)} 60%,100%{transform:translateY(46px)} }

/* ---------- 3a. HLAVIČKA PODSTRÁNKY -------------------------------- */
.pagehead{
  background:var(--bg-warm);
  padding:calc(var(--nav-h) + clamp(2.5rem,7vw,5rem)) 0 clamp(1.5rem,4vw,2.5rem);
}
.pagehead__inner{ max-width:72rem; margin:0 auto; padding:0 clamp(1.25rem,5vw,5rem) }

.backbtn{
  display:inline-flex; align-items:center; gap:.5rem;
  margin-bottom:clamp(2rem,5vw,3rem);
  padding:.45rem 1rem .45rem .75rem;
  border:1px solid var(--border-warm); border-radius:9999px;
  background:var(--bg-cream);
  font-size:.8125rem; font-weight:500; color:var(--fg-secondary);
  transition:color .25s ease, border-color .25s ease, transform .25s var(--ease);
}
.backbtn svg{ transition:transform .25s var(--ease) }
.backbtn:hover{ color:var(--fg-primary); border-color:var(--accent-gold) }
.backbtn:hover svg{ transform:translateX(-3px) }

.pagehead__title{
  margin-top:.6rem;
  font-size:clamp(2.75rem,9vw,6rem); font-weight:200;
  line-height:1; letter-spacing:-.04em; color:var(--fg-primary);
}
.lead{
  max-width:44rem; margin-top:1.25rem;
  font-size:clamp(1rem,1.8vw,1.1875rem); line-height:1.6;
  color:var(--fg-secondary);
}

/* mezinadpis skupiny uvnitř seznamu */
.group{
  margin:clamp(2.5rem,6vw,4rem) 0 .9rem;
  font-size:.75rem; font-weight:600; letter-spacing:.2em;
  text-transform:uppercase; color:var(--accent-gold);
}
.group:first-child{ margin-top:0 }

/* ---------- 3b. ROZCESTNÍK ---------------------------------------- */
.menu{ background:var(--bg-warm); padding:clamp(3.5rem,9vw,7rem) 0 clamp(4rem,10vw,8rem) }
/* varianta pro podstránky: navazuje na .pagehead, drobnější názvy */
.menu--list{ padding-top:0 }
.menu--list .row__name{ font-size:clamp(1.5rem,3.6vw,2.5rem); font-weight:300 }
.menu--list .row__num{ padding-top:.55em }
.menu__inner{ max-width:72rem; margin:0 auto; padding:0 clamp(1.25rem,5vw,5rem) }

.kicker{
  display:flex; align-items:center; gap:.9rem;
  margin-bottom:clamp(2rem,5vw,3.5rem);
  font-size:.75rem; font-weight:600; letter-spacing:.2em;
  text-transform:uppercase; color:var(--fg-secondary);
}
.kicker__rule{ width:2.5rem; height:1px; background:var(--accent-gold); flex-shrink:0 }

.menu__list{ border-top:1px solid var(--border-warm) }

.row{
  position:relative;
  display:grid; align-items:center;
  grid-template-columns:auto 1fr auto;
  gap:0 clamp(.9rem,2.5vw,2rem);
  padding:clamp(1.1rem,3vw,2rem) 0;
  border-bottom:1px solid var(--border-warm);
  transition:padding-left .45s var(--ease), background-color .45s var(--ease);
}
/* zlatý proužek, který na hover vyjede zdola */
.row::before{
  content:''; position:absolute; left:0; top:0; bottom:0; width:3px;
  background:var(--accent-gold);
  opacity:0; transform:scaleY(0); transform-origin:bottom;
  transition:transform .45s var(--ease), opacity .2s ease;
}
.row:hover, .row:focus-visible{
  background:var(--bg-cream);
  padding-left:clamp(.9rem,2vw,1.75rem);
  outline:none;
}
.row:hover::before, .row:focus-visible::before{ transform:scaleY(1); opacity:1 }

.row__num{
  align-self:start; padding-top:.9em;
  font-size:.6875rem; font-weight:600; letter-spacing:.2em;
  color:var(--accent-gold);
}
.row__name{
  font-size:clamp(2.25rem,7vw,4.5rem); font-weight:200;
  line-height:1; letter-spacing:-.035em;
  color:var(--fg-primary);
}
.row__desc{
  grid-column:2; grid-row:2;
  margin-top:.55rem;
  font-size:.9375rem; line-height:1.5; color:var(--fg-secondary);
}
.row__arrow{
  grid-column:3; grid-row:1 / span 2;
  color:var(--fg-secondary); opacity:.35;
  transition:transform .45s var(--ease), opacity .45s ease, color .45s ease;
}
.row:hover .row__arrow, .row:focus-visible .row__arrow{
  transform:translateX(8px); opacity:1; color:var(--accent-gold);
}

@media (min-width:768px){
  /* na širokém okně jde popisek na stejný řádek, zarovnaný doprava */
  .row{ grid-template-columns:auto auto 1fr auto }
  .row__name{ grid-column:2 }
  .row__desc{ grid-column:3; grid-row:1; margin-top:0; text-align:right }
  .row__arrow{ grid-column:4; grid-row:1 }
}

/* ---------- 4. STICKY SCÉNA --------------------------------------- */
.stage-wrap{ height:160vh; position:relative; z-index:1 }
.stage{
  position:sticky; top:0;
  height:100dvh; width:100%;
  display:flex; flex-direction:column; align-items:center;
  background:var(--bg-warm);
  overflow:hidden;
}
.stage__ghost{
  flex-shrink:0;
  padding:calc(var(--nav-h) + .6rem) 0 .8rem;
  font-size:clamp(1.2rem,3.5vw,2rem);
  font-weight:900; line-height:1; letter-spacing:-.025em;
  color:color-mix(in srgb, var(--fg-primary) 6%, var(--bg-warm));
  text-align:center;
}
.stage__body{
  flex:1; min-height:0; width:100%;
  display:flex; align-items:center; justify-content:center;
}
/* Rám scény drží poměr 16:9 a vejde se do zbylé výšky.
   --fh je výška; šířka se z ní dopočítá, takže se nikdy nedeformuje. */
.stage__frame{
  --fh:min(calc(100dvh - var(--nav-h) - 5rem), 56.25vw);
  position:relative;
  height:var(--fh);
  width:calc(var(--fh) * 16 / 9);
  container-type:size;
}

/* [EDIT] font-size: kratší slova unesou víc (sabi má „BCI/Cap" na 9.5cqw) */
.stage__word{
  position:absolute; top:53.6cqh; transform:translateY(-50%);
  font-size:7.5cqw; line-height:1; letter-spacing:-.03em;
  font-weight:400; color:#bfb7b1; white-space:nowrap;
  pointer-events:none; z-index:1;
}
.stage__word--left { right:67%; text-align:right }
.stage__word--right{ left:66%;  text-align:left }
.stage__word em{ font-style:normal; display:inline-block }

.prod{
  position:absolute; margin:0; z-index:4;
  transition:transform .5s var(--ease);
  will-change:transform;
}
.prod img{
  width:100%; height:100%; object-fit:cover;
  border-radius:16px;
  box-shadow:0 22px 45px -20px rgba(17,17,17,.45), 0 2px 6px rgba(17,17,17,.06);
}
/* [EDIT] Rozmístění tří výřezů ve scéně (souřadnice jsou % rámu) */
.prod--a{ left:-3%;   top:-4%;    width:28%;    aspect-ratio:16/10; transform:rotate(-9.6deg) }
.prod--b{ left:33.5%; top:17%;    width:33%;    height:66%;         z-index:5 }
.prod--c{ left:73%;   top:62%;    width:34%;    height:40%;         z-index:6; transform:rotate(4deg) }

.prod--a:hover{ transform:rotate(-9.6deg) translateY(-8px) }
.prod--b:hover{ transform:translateY(-8px) }
.prod--c:hover{ transform:rotate(4deg) translateY(-8px) }

/* ---------- 5. PRODUKTOVÁ KARTA ----------------------------------- */
.product{
  position:relative; overflow:hidden;
  padding:6rem 1.5rem;
  min-height:85vh;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  background:var(--bg-warm);
}
@media (min-width:768px){ .product{ padding:10rem 3rem } }
@media (min-width:1024px){ .product{ padding:10rem 5rem } }

.product__ghost{
  position:absolute; inset:0; z-index:0;
  display:flex; align-items:center; justify-content:center;
  pointer-events:none;
}
/* [EDIT] Čím kratší text, tím větší vw si můžeš dovolit (sabi.com má 20vw) */
.product__ghost h2{
  font-size:10vw; font-weight:200; line-height:.8;
  text-transform:uppercase; letter-spacing:-.02em;
  color:var(--fg-primary); opacity:.05; white-space:nowrap;
}

.product__row{
  position:relative; z-index:1;
  width:100%; max-width:72rem; margin-top:2rem;
  display:flex; align-items:center; justify-content:center;
}

.product__shot{
  position:relative; z-index:1;
  flex-shrink:0; width:65%;
  height:650px;
  padding:20px;
  display:flex; flex-direction:column; justify-content:flex-end;
  border-radius:var(--radius-lg); overflow:hidden;
  background:#aeaeae;
  box-shadow:0 25px 50px -12px rgba(0,0,0,.25);
}
.product__shotimg{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
}
.product__detail{
  position:relative; z-index:1; margin-top:auto;
  width:200px; height:252px;
  display:flex; flex-direction:column;
  border-radius:16px; overflow:hidden;
  background:#5a6770;
  box-shadow:0 20px 25px -5px rgba(0,0,0,.25);
}
.product__detailimg{ position:relative; flex:1; min-height:0; width:100% }
.product__detailimg img{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover;
}
.product__detail p{
  flex-shrink:0; padding:.375rem;
  font-size:.75rem; font-weight:500; line-height:1.25;
  text-align:center; color:rgba(255,255,255,.95);
}
.product__corner{
  position:absolute; right:20px; bottom:20px; z-index:1;
  font-size:1rem; font-weight:600; letter-spacing:.06em;
  text-transform:uppercase; text-align:right;
  color:rgba(255,255,255,.7);
  text-shadow:0 1px 12px rgba(0,0,0,.45);
}

.product__panel{
  position:relative; z-index:2;
  width:45%; margin-left:-5rem;
}
.product__glass{
  padding:3rem;
  border-radius:var(--radius-lg);
  border:1px solid rgba(255,255,255,.2);
  background:color-mix(in srgb, var(--bg-cream) 70%, transparent);
  backdrop-filter:blur(40px); -webkit-backdrop-filter:blur(40px);
  box-shadow:0 25px 50px -12px rgba(0,0,0,.25);
}
.product__glass h3{
  font-size:clamp(2rem,4vw,3rem); font-weight:200; letter-spacing:-.02em;
  margin-bottom:1.5rem;
}
.product__glass p{ font-size:1.25rem; line-height:1.4 }

/* ---------- 6. JAK TO FUNGUJE ------------------------------------- */
.science{ background:var(--bg-cream); padding:4rem 1.5rem }
@media (min-width:768px){ .science{ padding:5rem 3rem } }
@media (min-width:1024px){ .science{ padding:5rem 5rem } }

.science__inner{
  max-width:72rem; margin:0 auto;
  display:grid; grid-template-columns:1fr; gap:3rem; align-items:start;
}
@media (min-width:1024px){
  .science__inner{ grid-template-columns:5fr 7fr; column-gap:2.5rem; row-gap:0 }
  .science__head{ position:sticky; top:calc(var(--nav-h) + 1rem) }
}
.science__head h2{
  font-size:clamp(1.65rem,3.5vw,2.25rem); font-weight:600; line-height:1.15;
  text-align:center;
}
.science__head h2 span{ display:block }
@media (min-width:768px){ .science__head h2{ text-align:left } }

.science__body{ position:relative; width:100% }
.science__line{
  position:absolute; left:10px; top:12px; bottom:12px; width:1px;
  background:linear-gradient(to bottom,
    color-mix(in srgb, var(--accent-gold) 55%, transparent) 0%,
    var(--border-warm) 45%, var(--border-warm) 100%);
  pointer-events:none;
}
@media (min-width:768px){ .science__line{ left:14px } }

.steps{ display:flex; flex-direction:column; gap:2.5rem }
@media (min-width:768px){ .steps{ gap:3rem } }
.step{ position:relative; padding-left:2.5rem }
@media (min-width:768px){ .step{ padding-left:3.5rem } }
.step__dot{
  position:absolute; left:0; top:.375rem; z-index:1;
  width:20px; height:20px; border-radius:9999px;
  background:var(--accent-gold);
  border:2px solid var(--bg-cream);
  box-shadow:0 0 0 2px color-mix(in srgb, var(--accent-gold) 25%, transparent);
}
@media (min-width:768px){ .step__dot{ left:2px; top:.5rem; width:24px; height:24px } }
.step__label{
  font-size:.75rem; font-weight:600; text-transform:uppercase;
  letter-spacing:.2em; color:var(--fg-secondary);
}
.step__text{
  margin-top:.5rem; padding:1.25rem;
  border:1px solid var(--border-warm); border-radius:12px;
  background:var(--bg-warm);
  font-size:15px; line-height:1.55; color:var(--fg-secondary);
  box-shadow:0 1px 2px rgba(0,0,0,.04);
  transition:box-shadow .3s ease;
}
.step:hover .step__text{ box-shadow:0 8px 18px -8px rgba(0,0,0,.18) }

/* ---------- 6b. O MNĚ --------------------------------------------- */
.about{ background:var(--bg-warm); padding:4rem 1.5rem }
@media (min-width:768px){ .about{ padding:5rem 3rem } }
@media (min-width:1024px){ .about{ padding:6rem 5rem } }
.about__inner{
  max-width:72rem; margin:0 auto;
  display:grid; grid-template-columns:1fr; gap:2rem; align-items:start;
}
@media (min-width:1024px){ .about__inner{ grid-template-columns:5fr 7fr; column-gap:2.5rem } }
.about__head h2{
  font-size:clamp(1.65rem,3.5vw,2.25rem); font-weight:600; line-height:1.15;
  text-align:center;
}
.about__head h2 span{ display:block }
@media (min-width:768px){ .about__head h2{ text-align:left } }
.about__body p{
  font-size:1.0625rem; line-height:1.7; color:var(--fg-secondary);
}
.about__body p + p{ margin-top:1rem }

.chips{ display:flex; flex-wrap:wrap; gap:.5rem; margin-top:1.75rem }
.chips li{
  padding:.3rem .75rem; border-radius:9999px;
  border:1px solid var(--border-warm); background:var(--bg-cream);
  font-size:.75rem; font-weight:500; letter-spacing:.02em;
  color:var(--fg-secondary);
}

/* ---------- 7. VLASTNÍ PROJEKTY ----------------------------------- */
.press{ background:var(--bg-cream); padding:4rem 1.5rem }
@media (min-width:768px){ .press{ padding:6rem 3rem } }
@media (min-width:1024px){ .press{ padding:6rem 5rem } }
.press__inner{ max-width:72rem; margin:0 auto }
.press__head{ margin-bottom:2.5rem }
@media (min-width:768px){ .press__head{ margin-bottom:3.5rem } }
.press__rule{ width:2.5rem; height:1px; background:var(--accent-gold); margin:0 auto 1rem }
@media (min-width:768px){ .press__rule{ margin-left:0 } }
.press__head h2{
  font-size:clamp(1.65rem,3.5vw,2.25rem); font-weight:600; line-height:1.15;
  text-align:center;
}
@media (min-width:768px){ .press__head h2{ text-align:left } }

.press__list{ display:grid; gap:1.5rem }
.card{
  display:block; overflow:hidden;
  border:1px solid var(--border-warm); border-radius:12px;
  background:var(--bg-warm);
  box-shadow:0 1px 2px rgba(0,0,0,.04);
  transition:box-shadow .3s ease;
}
.card:hover{ box-shadow:0 12px 28px -12px rgba(0,0,0,.22) }
.card article{ display:flex; flex-direction:column }
@media (min-width:768px){ .card article{ flex-direction:row } }
.card__media{ position:relative; overflow:hidden; aspect-ratio:16/9 }
.card__media img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease }
.card:hover .card__media img{ transform:scale(1.03) }
@media (min-width:768px){
  .card__media{ width:50%; aspect-ratio:auto; min-height:280px }
  .card__body{ width:50%; display:flex; flex-direction:column; justify-content:center; padding:2rem }
}
@media (min-width:1024px){ .card__media{ min-height:320px } .card__body{ padding:2.5rem } }
.card__body{ padding:1.25rem }
.card__meta{
  display:flex; align-items:center; gap:.5rem;
  font-size:.75rem; font-weight:600; text-transform:uppercase;
  letter-spacing:.2em; color:var(--fg-secondary);
}
.card__meta cite{ font-style:normal }
.card__meta span{ color:var(--accent-gold) }
.card__body h3{
  margin-top:.75rem;
  font-size:clamp(1.25rem,2.5vw,1.75rem); font-weight:600; line-height:1.35;
}
.card__body > p{ margin-top:.5rem; line-height:1.65; color:var(--fg-secondary) }
.card__cta{
  display:inline-flex; align-items:center; gap:.375rem;
  margin-top:1rem; font-size:.75rem; font-weight:500;
  color:var(--accent-gold); transition:color .2s ease;
}
.card:hover .card__cta{ color:var(--fg-primary) }
.card__cta svg{ transition:transform .2s ease }
.card:hover .card__cta svg{ transform:translate(2px,-2px) }

/* ---------- 8. TMAVÝ ZÁVĚR ---------------------------------------- */
.outro{
  position:relative; z-index:2; overflow:hidden;
  background:var(--ink-dark);
  color:#fff;
  font-family:'Plus Jakarta Sans','Inter',sans-serif;
  padding-top:5rem;
}
.outro__grid{
  position:absolute; inset:0; pointer-events:none;
  background-size:60px 60px;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.03) 1px, transparent 1px);
  -webkit-mask-image:linear-gradient(to bottom,transparent,#000 30%,#000 70%,transparent);
          mask-image:linear-gradient(to bottom,transparent,#000 30%,#000 70%,transparent);
}
.outro__aurora{
  position:absolute; left:50%; top:38%;
  width:min(120vw,1200px); aspect-ratio:1;
  pointer-events:none;
  background:radial-gradient(circle at 50% 50%,
    color-mix(in srgb, var(--accent-gold) 15%, transparent) 0%,
    rgba(255,255,255,.06) 40%, transparent 70%);
  transform:translate(-50%,-50%);
  animation:breathe 8s ease-in-out infinite alternate;
}
@keyframes breathe{
  0%  { transform:translate(-50%,-50%) scale(1);   opacity:.6 }
  100%{ transform:translate(-50%,-50%) scale(1.1); opacity:1  }
}
.outro__wordmark{
  position:absolute; left:50%; bottom:-2vw; transform:translateX(-50%);
  font-size:clamp(4rem,22vw,20rem); font-weight:800; letter-spacing:-.04em;
  line-height:.8; white-space:nowrap; pointer-events:none;
  color:transparent;
  background:linear-gradient(180deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,0) 85%);
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-stroke:1px rgba(255,255,255,.10);
}

.marquee{ position:relative; z-index:1; overflow:hidden; padding:1.5rem 0 4rem }
.marquee__track{
  display:inline-flex; align-items:center; gap:1.5rem;
  white-space:nowrap; width:max-content;
  animation:marquee 40s linear infinite;
  font-size:clamp(1rem,2.4vw,1.6rem); font-weight:500;
  color:rgba(255,255,255,.85);
}
.marquee__track .sep{ color:color-mix(in srgb, var(--accent-gold) 70%, transparent) }
@keyframes marquee{ from{transform:translateX(0)} to{transform:translateX(-50%)} }

.footer{
  position:relative; z-index:1;
  border-top:1px solid rgba(255,255,255,.1);
  overflow:hidden;
}
.footer__glow{ position:absolute; border-radius:9999px; pointer-events:none }
.footer__glow--gold { left:25%; top:25%;  width:16rem; height:16rem; background:color-mix(in srgb, var(--accent-gold) 10%, transparent); filter:blur(100px) }
.footer__glow--white{ right:25%; bottom:0; width:18rem; height:18rem; background:rgba(255,255,255,.05); filter:blur(90px) }

.footer__inner{
  position:relative; z-index:1;
  max-width:80rem; margin:0 auto;
  padding:3rem clamp(1.25rem,6vw,4rem) 4rem;
}
@media (min-width:768px){ .footer__inner{ padding:4rem clamp(1.25rem,6vw,4rem) 5rem } }

.footer__cta{
  display:flex; justify-content:center;
  padding-bottom:4rem; margin-bottom:2rem;
  border-bottom:1px solid rgba(255,255,255,.1);
}
@media (min-width:768px){ .footer__cta{ padding-bottom:5rem; margin-bottom:2.5rem } }

.glassbox{
  width:100%; max-width:36rem;
  padding:1.5rem;
  border-radius:1rem;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.06);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.04);
  backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px);
}
@media (min-width:768px){ .glassbox{ padding:2rem } }
.glassbox__claim{
  text-align:center; text-wrap:balance;
  font-size:clamp(2.25rem,5vw,3rem); font-weight:700;
  line-height:.92; letter-spacing:-.03em;
}

.glassbox__sub{
  margin-top:1rem; text-align:center;
  font-size:.9375rem; line-height:1.5; color:rgba(255,255,255,.65);
}
.mailbtn{
  display:block; margin:1.5rem auto 0; width:fit-content; max-width:100%;
  padding:.75rem 1.75rem; border-radius:9999px;
  background:var(--accent-gold); color:#1a1408;
  font-size:1rem; font-weight:600; letter-spacing:-.01em;
  word-break:break-all; text-align:center;
  transition:opacity .2s ease, transform .2s var(--ease);
}
.mailbtn:hover{ opacity:.92; transform:translateY(-1px) }

.footer__links{
  display:flex; flex-wrap:wrap; align-items:center; justify-content:center;
  gap:.5rem 1.25rem; margin-bottom:2rem;
}
@media (min-width:768px){ .footer__links{ margin-bottom:2.5rem } }
.pill{
  padding:.375rem 1rem; border-radius:9999px;
  border:1px solid rgba(255,255,255,.15); background:rgba(255,255,255,.06);
  font-size:13px; font-weight:500;
  transition:opacity .2s ease;
}
.pill:hover{ opacity:.8 }
.footer__icon{ display:block; transition:opacity .2s ease }
.footer__icon:hover{ opacity:.8 }
.footer__icon svg{ width:22px; height:22px }

.footer__bottom{
  display:flex; flex-direction:column; align-items:center; gap:1.25rem;
  text-align:center; font-size:13px; color:rgba(255,255,255,.95);
}
.footer__mark{
  font-size:clamp(1.5rem,4vw,2.25rem); font-weight:800; letter-spacing:.2em;
}
.footer__bottom a{ text-decoration:underline; text-underline-offset:.2em; transition:color .2s ease }
.footer__bottom a:hover{ color:var(--accent-gold) }
.footer__mark a{ text-decoration:none }
/* srdíčko vede na love.html, stejně jako na mucker.cz */
.heart{
  color:var(--accent-gold); text-decoration:none;
  display:inline-block; transition:transform .18s var(--ease), color .18s ease;
}
.heart:hover{ transform:scale(1.25); color:#e03030 }

/* patička bez pásku a bez CTA — používá ji zjednodušená úvodní stránka */
.outro--slim{ padding-top:0 }
.outro--slim .footer{ border-top:0 }
.outro--slim .footer__inner{ padding-top:clamp(3.5rem,8vw,5.5rem) }
.outro--slim .footer__links{ margin-bottom:2rem }
.footer__hairline{
  position:absolute; left:0; bottom:0; width:100%; height:1px;
  background:linear-gradient(to right, transparent, rgba(255,255,255,.2), transparent);
}

/* ---------- 9. RESPONZIVITA --------------------------------------- */
@media (max-width:767px){
  .hero__grid--desktop{ display:none }
  .hero__grid--mobile { display:flex }

  .stage-wrap{ height:130vh }
  .stage__ghost{ display:none }
  .stage__body{ padding-top:var(--nav-h) }
  /* na mobilu je rám na výšku, aby vyplnil obrazovku */
  .stage__frame{
    --fh:min(calc(100dvh - var(--nav-h) - 2rem), 182vw);
    width:calc(var(--fh) * .55);
  }
  .stage__word{ font-size:17cqw; top:auto; transform:none; text-align:center; width:100% }
  .stage__word--left { left:0; right:auto; top:1%  }
  .stage__word--right{ left:0; right:auto; top:auto; bottom:0 }
  .prod--a{ left:-2%; top:9%;  width:54%; aspect-ratio:16/10 }
  .prod--b{ left:24%; top:26%; width:58%; height:38% }
  .prod--c{ left:38%; top:64%; width:60%; height:25% }
}

@media (max-width:1023px){
  .product__row{ flex-direction:column; gap:0 }
  .product__shot{ width:100%; height:min(70vw,550px) }
  .product__panel{ width:100%; margin-left:0; margin-top:-4rem; padding:0 1rem }
  .product__glass{ padding:2rem }
  .product__detail{ width:150px; height:198px }
}
@media (max-width:639px){
  .product{ min-height:auto; padding:4rem 1.25rem }
  .product__shot{ height:350px }
  .product__panel{ margin-top:-1rem }
  .product__detail{ width:120px; height:168px }
  .product__detail p{ font-size:9px }
  .product__corner{ font-size:.8125rem; max-width:52%; line-height:1.2 }
  .product__glass p{ font-size:1.0625rem }
}

/* ---------- 10. REDUCED MOTION ------------------------------------ */
@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto }
  *,*::before,*::after{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important }
  .hero__tile,.hero__headline,.reveal{ opacity:1 !important; transform:none !important }
  .hero__curtain{ display:none }
}
