/* ============================================================
   Petr Komínek — herecký / hudební web
   Design: tmavé, filmové, důraz na fotky. Akcent: zlatá.
   ============================================================ */

:root {
  --bg:        #0b0b0d;
  --bg-2:      #111114;
  --surface:   #16161a;
  --surface-2: #1d1d22;
  --line:      rgba(255, 255, 255, .10);
  --line-2:    rgba(255, 255, 255, .18);

  --text:      #f4f1ea;
  --text-dim:  #a7a39a;
  --text-mute: #76736c;

  --accent:    #c8a24c;
  --accent-2:  #e6c87e;
  --accent-ink:#0b0b0d;

  --maxw: 1240px;
  --gap: clamp(1rem, 4vw, 2.5rem);
  --radius: 14px;
  --radius-lg: 22px;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
::selection { background: var(--accent); color: var(--accent-ink); }

/* ---------- film grain + scroll progress ---------- */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%; z-index: 200;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

/* ---------- layout helpers ---------- */
.section {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: clamp(4.5rem, 11vw, 9rem) var(--gap);
  position: relative; z-index: 2;
  scroll-margin-top: 70px;
}
.section__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap; margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.section__kicker {
  font-size: .78rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--accent); font-weight: 500; margin-bottom: 1rem;
  display: flex; align-items: center; gap: .8rem;
}
.section__kicker::before {
  content: ""; width: 34px; height: 1px; background: var(--accent); display: inline-block;
}
.section__title {
  font-family: var(--serif); font-weight: 600; line-height: 1.04;
  font-size: clamp(2rem, 5.2vw, 3.5rem); letter-spacing: -.01em;
}
.section__link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .95rem; color: var(--text-dim);
  border-bottom: 1px solid var(--line-2); padding-bottom: 4px;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.section__link:hover { color: var(--accent); border-color: var(--accent); }
.nowrap { white-space: nowrap; }

/* ---------- buttons & pills ---------- */
.btn {
  --pad: .95rem 1.7rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: var(--pad); border-radius: 100px; font-size: .92rem; font-weight: 500;
  letter-spacing: .02em; position: relative; overflow: hidden;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.btn--solid { background: var(--accent); color: var(--accent-ink); }
.btn--solid:hover { background: var(--accent-2); transform: translateY(-2px); }
.btn--ghost { border: 1px solid var(--line-2); color: var(--text); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn--block { width: 100%; }

.pill {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .6rem 1.1rem; border: 1px solid var(--line-2); border-radius: 100px;
  font-size: .88rem; color: var(--text-dim);
  transition: all .3s var(--ease);
}
.pill:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-2px); }

/* ---------- reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease) var(--d, 0s), transform .9s var(--ease) var(--d, 0s); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(11, 11, 13, .72);
  backdrop-filter: blur(14px) saturate(120%);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: var(--maxw); margin-inline: auto;
  padding: 1.1rem var(--gap);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand {
  display: inline-flex; align-items: center; gap: .65rem;
  font-family: var(--serif); font-size: 1.18rem; font-weight: 600; letter-spacing: .01em;
}
.brand__eye { color: var(--accent); display: inline-flex; }
.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a {
  font-size: .92rem; color: var(--text-dim); position: relative; padding: .2rem 0;
  transition: color .3s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--accent); transition: width .3s var(--ease);
}
.nav__links a:hover, .nav__links a.is-active { color: var(--text); }
.nav__links a:hover::after, .nav__links a.is-active::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: .8rem; }
.icon-btn { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line-2); color: var(--text); transition: border-color .3s var(--ease), color .3s var(--ease); }
.icon-btn:hover { border-color: var(--accent); color: var(--accent); }

.burger { display: none; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-2); place-items: center; }
.burger span { display: block; width: 18px; height: 1.6px; background: var(--text); margin: 2.5px auto; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.burger.is-open span:nth-child(1) { transform: translateY(4.1px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-4.1px) rotate(-45deg); }

/* ============================================================
   HERO (full-bleed photo + text)
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 64% center; animation: heroZoom 18s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.1); } to { transform: scale(1); } }
.hero__overlay { position: absolute; inset: 0; background:
   linear-gradient(95deg, var(--bg) 8%, rgba(11,11,13,.82) 30%, rgba(11,11,13,.4) 52%, rgba(11,11,13,.06) 72%, transparent 100%),
   linear-gradient(to top, var(--bg) 1%, transparent 32%); }
.hero__content { position: relative; z-index: 2; max-width: var(--maxw); width: 100%; margin-inline: auto; padding: 0 var(--gap); }
.hero__text { max-width: 540px; }
.hero__eyebrow { font-size: .8rem; letter-spacing: .3em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 1.4rem; }
.hero__title { font-family: var(--serif); font-weight: 600; line-height: .92; font-size: clamp(2.6rem, 6vw, 4.6rem); letter-spacing: -.02em; display: flex; flex-direction: column; }
.hero__title span { display: block; }
.hero__title-accent { font-style: italic; font-weight: 500; color: var(--accent); }
.hero__tagline { margin-top: 1.5rem; max-width: 32ch; font-size: clamp(1rem, 2.2vw, 1.2rem); color: var(--text-dim); }
.hero__cta { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__meta { list-style: none; display: flex; gap: 1.6rem; flex-wrap: wrap; margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.hero__meta li { font-size: .8rem; color: var(--text-mute); letter-spacing: .04em; display: inline-flex; align-items: center; gap: .6rem; }
.hero__meta li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex: none; }

.hero__scroll {
  position: absolute; right: var(--gap); bottom: clamp(6rem, 9vw, 7rem); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .8rem;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-mute);
}
.hero__scroll-line { width: 1px; height: 60px; background: linear-gradient(var(--accent), transparent); position: relative; overflow: hidden; }
.hero__scroll-line::after { content: ""; position: absolute; top: -60px; left: 0; width: 1px; height: 60px; background: var(--accent-2); animation: scrollLine 2.2s var(--ease) infinite; }
@keyframes scrollLine { to { top: 60px; } }
@media (max-width: 820px) {
  .hero { align-items: flex-end; }
  .hero__media img { object-position: 62% 22%; }
  .hero__overlay { background: linear-gradient(to top, var(--bg) 6%, rgba(11,11,13,.5) 42%, rgba(11,11,13,.18) 74%, rgba(11,11,13,.4) 100%); }
  .hero__content { padding-bottom: clamp(3rem, 10vw, 4.5rem); }
  .hero__scroll { display: none; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.about__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; }
.about__media--swap { cursor: pointer; }
.about__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity .55s var(--ease), transform 1.1s var(--ease); }
.about__img--then { z-index: 1; object-position: center; filter: grayscale(.35) contrast(1.03); }
.about__img--now { z-index: 2; object-position: 25% center; opacity: 0; }
.about__media--swap:hover .about__img--now,
.about__media--swap.is-active .about__img--now { opacity: 1; transform: scale(1.04); }
.about__media--swap:hover .about__img--then,
.about__media--swap.is-active .about__img--then { opacity: 0; }
.about__media--swap:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.about__swap { position: absolute; top: .9rem; right: .9rem; z-index: 3; display: grid; align-items: center; justify-items: center; font-size: .68rem; letter-spacing: .18em; font-weight: 600; text-transform: uppercase; padding: .42rem .8rem; border-radius: 100px; background: rgba(11,11,13,.5); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.14); }
.about__swap span { grid-area: 1 / 1; transition: opacity .4s var(--ease); }
.about__swap-then { color: var(--text); }
.about__swap-now { opacity: 0; color: var(--accent); }
.about__media--swap:hover .about__swap-then,
.about__media--swap.is-active .about__swap-then { opacity: 0; }
.about__media--swap:hover .about__swap-now,
.about__media--swap.is-active .about__swap-now { opacity: 1; }
.about__badge {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 3;
  display: grid; justify-items: center; align-items: center;
  font-size: .72rem; letter-spacing: .22em; font-weight: 600;
  background: var(--accent); color: var(--accent-ink); padding: .5rem .9rem; border-radius: 100px;
}
.about__badge span { grid-area: 1 / 1; transition: opacity .4s var(--ease); }
.about__badge-now { opacity: 0; }
.about__media--swap:hover .about__badge-then,
.about__media--swap.is-active .about__badge-then { opacity: 0; }
.about__media--swap:hover .about__badge-now,
.about__media--swap.is-active .about__badge-now { opacity: 1; }
.about__text p { color: var(--text-dim); margin-top: 1.2rem; max-width: 52ch; }
.about__text .section__title { margin-top: .4rem; }
.about__edu { margin-top: 2.2rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.about__edu-label { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 1.1rem; }
.about__edu-list { list-style: none; display: grid; gap: 1.1rem; }
.about__edu-list li { display: grid; grid-template-columns: 6.5rem 1fr; gap: 1rem; align-items: baseline; }
.about__edu-year { font-weight: 600; color: var(--accent); font-size: .9rem; }
.about__edu-text { display: flex; flex-direction: column; gap: .15rem; }
.about__edu-text strong { font-family: var(--serif); font-size: 1.12rem; font-weight: 600; color: var(--text); }
.about__edu-text small { font-size: .85rem; color: var(--text-mute); }
.about__socials { display: flex; gap: .8rem; margin-top: 2rem; flex-wrap: wrap; }
.about__more { display: inline-flex; align-items: center; gap: .45rem; margin-top: 1.4rem; font-size: .9rem; color: var(--text-dim); transition: color .3s var(--ease); }
.about__more:hover { color: var(--accent); }

/* ============================================================
   GALLERY (instagram, b/w -> color)
   ============================================================ */
.gallery__hint { color: var(--text-mute); font-size: .9rem; margin-bottom: 1.8rem; margin-top: -1rem; }
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.6rem, 1.4vw, 1rem); }
.ig {
  position: relative; display: block; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 1; background: var(--surface);
}
.ig img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.02);
  transition: filter .55s var(--ease), transform 1s var(--ease);
}
.ig:hover img, .ig:focus-visible img { filter: grayscale(0); transform: scale(1.06); }
.ig__overlay {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: linear-gradient(to top, rgba(11,11,13,.7), rgba(11,11,13,.05) 55%);
  opacity: 0; transition: opacity .45s var(--ease);
}
.ig:hover .ig__overlay, .ig:focus-visible .ig__overlay { opacity: 1; }
.ig__ic { color: #fff; transform: translateY(8px) scale(.9); transition: transform .45s var(--ease); }
.ig:hover .ig__ic { transform: none; }
.ig__tag { position: absolute; left: 12px; bottom: 12px; font-size: .78rem; color: #fff; opacity: 0; transform: translateY(8px); transition: all .45s var(--ease) .05s; }
.ig:hover .ig__tag { opacity: 1; transform: none; }
.ig:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* Instagram CTA tile (fills the grid + drives follows) */
.ig--cta { display: grid; place-items: center; text-align: center; background: linear-gradient(160deg, var(--surface-2), var(--bg-2)); border: 1px solid var(--line-2); transition: border-color .35s var(--ease), transform .35s var(--ease); }
.ig--cta:hover { border-color: var(--accent); transform: translateY(-3px); }
.ig-cta__inner { display: flex; flex-direction: column; align-items: center; gap: .55rem; padding: 1rem; }
.ig-cta__inner svg { color: var(--accent); margin-bottom: .3rem; }
.ig-cta__inner strong { font-size: 1.02rem; font-weight: 600; color: var(--text); }
.ig-cta__inner span { font-size: .85rem; color: var(--text-mute); }

/* ============================================================
   VIDEO
   ============================================================ */
.video__feature { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: #000; }
.video__feature + .video__feature { margin-top: clamp(.8rem, 2vw, 1.4rem); }
.video__embed { position: relative; aspect-ratio: 16/9; }
.video__embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.media__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.8rem, 2vw, 1.4rem); margin-top: 1.4rem; }
.media-card {
  display: flex; flex-direction: column; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--surface); text-decoration: none; color: inherit;
  transition: border-color .35s var(--ease), transform .35s var(--ease), background .35s var(--ease);
}
.media-card:hover { border-color: var(--accent); transform: translateY(-4px); background: var(--surface-2); }
.media-card__thumb { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #000; }
.media-card__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.media-card:hover .media-card__thumb img { transform: scale(1.05); }
.media-card__tag {
  position: absolute; left: .65rem; top: .65rem;
  font-size: .72rem; font-weight: 500; letter-spacing: .01em; color: #fff;
  padding: .28rem .6rem; border-radius: 999px;
  background: rgba(11,11,13,.62); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(6px);
}
.media-card__body { display: flex; flex-direction: column; gap: .55rem; flex: 1; padding: .9rem 1rem 1.05rem; }
.media-card__title { font-size: 1rem; font-weight: 600; line-height: 1.32; }
.media-card__go { margin-top: auto; display: inline-flex; align-items: center; gap: .35rem; font-size: .82rem; color: var(--accent); }
.media-card__go svg { transition: transform .35s var(--ease); }
.media-card:hover .media-card__go svg { transform: translateX(3px); }
@media (max-width: 920px) { .media__cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .media__cards { grid-template-columns: 1fr; } }

/* ============================================================
   MUSIC
   ============================================================ */
.music { }
.music__inner {
  display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem); align-items: center;
  background: linear-gradient(135deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 3.2rem);
}
.music__art { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; box-shadow: 0 30px 80px -30px rgba(0,0,0,.8); transition: transform .8s var(--ease); }
.music__art:hover { transform: rotate(-1.5deg) scale(1.02); }
.music__art img { width: 100%; height: 100%; object-fit: cover; }
.music__text p { color: var(--text-dim); margin-top: 1.2rem; max-width: 46ch; }
.music__actions { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }

/* ============================================================
   SHOP
   ============================================================ */
.shop__note { color: var(--text-mute); font-size: .9rem; }
.shop__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.4vw, 1.8rem); }
.product {
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  background: var(--surface); display: flex; flex-direction: column;
  transition: border-color .4s var(--ease), transform .4s var(--ease);
}
.product:hover { border-color: var(--line-2); transform: translateY(-4px); }
.product__media { position: relative; aspect-ratio: 1; overflow: hidden; background: linear-gradient(160deg, var(--surface-2), var(--bg-2)); }
.product__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.product:hover .product__media img { transform: scale(1.05); }
.product__tag {
  position: absolute; top: 12px; left: 12px; font-size: .7rem; letter-spacing: .14em;
  text-transform: uppercase; background: rgba(11,11,13,.7); backdrop-filter: blur(6px);
  border: 1px solid var(--line-2); color: var(--accent-2); padding: .35rem .7rem; border-radius: 100px;
}
.product__body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .9rem; flex: 1; }
.product__name { font-family: var(--serif); font-size: 1.22rem; font-weight: 600; line-height: 1.2; }
.product__desc { font-size: .86rem; color: var(--text-mute); margin-top: -.5rem; }
.product__row { display: flex; align-items: center; justify-content: space-between; margin-top: auto; gap: 1rem; }
.product__price { font-size: 1.15rem; font-weight: 600; }
.product__price span { font-size: .85rem; color: var(--text-mute); font-weight: 400; }
.product__add {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem 1.2rem; border-radius: 100px; background: var(--accent); color: var(--accent-ink);
  font-size: .86rem; font-weight: 600; transition: background .3s var(--ease), transform .3s var(--ease);
  white-space: nowrap;
}
.product__add:hover { background: var(--accent-2); transform: translateY(-2px); }
.product__add.is-added { background: #3a7d44; color: #fff; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.contact__left p { color: var(--text-dim); margin-top: 1.2rem; max-width: 44ch; }
.contact__socials { display: flex; gap: .8rem; margin-top: 2rem; flex-wrap: wrap; }
.contact__card {
  background: linear-gradient(160deg, var(--surface-2), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.6rem);
}
.contact__card-label { font-size: .76rem; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); }
.contact__card-name { font-family: var(--serif); font-size: clamp(1.7rem, 4vw, 2.3rem); font-weight: 600; margin: .5rem 0 1.6rem; }
.contact__card-row {
  display: flex; align-items: center; gap: .85rem; padding: 1rem 0;
  border-top: 1px solid var(--line); font-size: 1.02rem; color: var(--text-dim);
  transition: color .3s var(--ease);
}
.contact__card-row:hover { color: var(--accent); }
.contact__card-row svg { color: var(--accent); flex: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); position: relative; z-index: 2; }
.footer__inner {
  max-width: var(--maxw); margin-inline: auto; padding: 2.5rem var(--gap);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.brand--footer { font-size: 1.05rem; }
.footer__links { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.footer__links a { font-size: .9rem; color: var(--text-dim); transition: color .3s var(--ease); }
.footer__links a:hover { color: var(--accent); }
.footer__copy { font-size: .82rem; color: var(--text-mute); }
.footer__meta { display: grid; gap: .25rem; text-align: right; }
.footer__credit { font-size: .82rem; color: var(--text-mute); }
.footer__credit a { color: var(--text-dim); transition: color .3s var(--ease); }
.footer__credit a:hover { color: var(--accent); }

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-overlay { position: fixed; inset: 0; z-index: 150; background: rgba(0,0,0,.55); backdrop-filter: blur(3px); opacity: 0; transition: opacity .4s var(--ease); }
.cart-overlay.is-open { opacity: 1; }
.cart {
  position: fixed; top: 0; right: 0; z-index: 160; height: 100svh; width: min(420px, 100vw);
  background: var(--bg-2); border-left: 1px solid var(--line);
  display: flex; flex-direction: column; transform: translateX(100%);
  transition: transform .45s var(--ease); box-shadow: -30px 0 80px -40px rgba(0,0,0,.9);
}
.cart.is-open { transform: none; }
.cart__head { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 1.6rem; border-bottom: 1px solid var(--line); }
.cart__head h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; }
.cart__close { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line-2); transition: border-color .3s var(--ease), color .3s var(--ease); }
.cart__close:hover { border-color: var(--accent); color: var(--accent); }
.cart__items { flex: 1; overflow-y: auto; padding: 1rem 1.6rem; display: flex; flex-direction: column; gap: 1rem; }
.cart__empty { color: var(--text-mute); text-align: center; margin: auto 0; padding: 3rem 0; }
.citem { display: grid; grid-template-columns: 64px 1fr auto; gap: 1rem; align-items: center; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.citem__img { width: 64px; height: 64px; border-radius: 10px; overflow: hidden; background: var(--surface); }
.citem__img img { width: 100%; height: 100%; object-fit: cover; }
.citem__name { font-size: .95rem; font-weight: 500; line-height: 1.3; }
.citem__price { font-size: .84rem; color: var(--text-mute); margin-top: .2rem; }
.citem__qty { display: inline-flex; align-items: center; gap: .55rem; margin-top: .5rem; }
.citem__qty button { width: 24px; height: 24px; border-radius: 6px; border: 1px solid var(--line-2); display: grid; place-items: center; font-size: 1rem; line-height: 1; transition: border-color .25s, color .25s; }
.citem__qty button:hover { border-color: var(--accent); color: var(--accent); }
.citem__qty span { min-width: 18px; text-align: center; font-size: .9rem; }
.citem__remove { color: var(--text-mute); font-size: .78rem; justify-self: end; align-self: start; transition: color .25s; }
.citem__remove:hover { color: #d9645a; }
.cart__foot { padding: 1.4rem 1.6rem 1.8rem; border-top: 1px solid var(--line); }
.cart__total { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 1.1rem; }
.cart__total span { color: var(--text-dim); }
.cart__total strong { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; }
.cart__note { font-size: .78rem; color: var(--text-mute); text-align: center; margin-top: .8rem; }

/* Checkout — dvoukrokový košík */
.cart__step { flex: 1; display: flex; flex-direction: column; min-height: 0; }
.cart__step[hidden] { display: none; }
.checkout__scroll { flex: 1; overflow-y: auto; padding: 1.2rem 1.6rem; }
.checkout__back { display: inline-flex; align-items: center; gap: .35rem; font-size: .85rem; color: var(--text-dim); margin-bottom: 1.3rem; transition: color .25s var(--ease); }
.checkout__back:hover { color: var(--accent); }
.checkout__label { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-mute); margin: 1.4rem 0 .7rem; }
.checkout__recap { display: grid; gap: .55rem; padding: .9rem 1.05rem; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; }
.recap__row { display: grid; grid-template-columns: 1fr auto auto; gap: .8rem; align-items: baseline; font-size: .88rem; }
.recap__name small { color: var(--text-mute); }
.recap__qty { color: var(--text-mute); font-size: .82rem; }
.recap__sum { font-weight: 600; white-space: nowrap; }
.checkout__fields { display: grid; gap: .8rem; }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field label { font-size: .8rem; color: var(--text-dim); }
.field label span { color: var(--text-mute); }
.field input, .field textarea { width: 100%; background: var(--surface); border: 1px solid var(--line-2); border-radius: 10px; padding: .7rem .9rem; color: var(--text); font: inherit; font-size: .92rem; transition: border-color .25s var(--ease); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 2.6rem; }
.field-row { display: grid; grid-template-columns: 1fr .55fr; gap: .8rem; }
.checkout__gdpr { display: flex; gap: .6rem; align-items: flex-start; margin-top: 1.3rem; font-size: .82rem; color: var(--text-dim); line-height: 1.45; cursor: pointer; }
.checkout__gdpr input { margin-top: .15rem; width: 16px; height: 16px; flex: none; accent-color: var(--accent); }

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed; bottom: 1.5rem; left: 50%; z-index: 300;
  transform: translate(-50%, 150%); background: var(--text); color: var(--bg);
  padding: .85rem 1.4rem; border-radius: 100px; font-size: .9rem; font-weight: 500;
  transition: transform .5s var(--ease); box-shadow: 0 20px 50px -20px rgba(0,0,0,.7); white-space: nowrap;
}
.toast.is-on { transform: translate(-50%, 0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 460px; }
  .music__inner { grid-template-columns: 1fr; }
  .music__art { max-width: 360px; }
  .contact__inner { grid-template-columns: 1fr; }
  .shop__grid { grid-template-columns: repeat(2, 1fr); }
  .filmo__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw); height: 100svh;
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.4rem;
    background: var(--bg-2); border-left: 1px solid var(--line); padding: 2rem 2.4rem;
    transform: translateX(100%); transition: transform .45s var(--ease); z-index: 90;
  }
  .nav__links.is-open { transform: none; }
  .nav__links a { font-size: 1.25rem; font-family: var(--serif); color: var(--text); }
  .burger { display: grid; }
}

@media (max-width: 560px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .shop__grid { grid-template-columns: 1fr; }
  .filmo__grid { grid-template-columns: 1fr; }
  .hero__cta { width: 100%; }
  .hero__cta .btn { flex: 1; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__meta { text-align: left; }

  /* O mně: na mobilu 3 tlačítka sítí vedle sebe */
  .about__socials { flex-wrap: nowrap; gap: .5rem; }
  .about__socials .pill { flex: 1; justify-content: center; gap: .4rem; padding: .6rem .5rem; font-size: .82rem; }
}

/* ============================================================
   SHOWS — Kde mě uvidíte
   ============================================================ */
.shows__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: start; }
.shows__h { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; margin-bottom: 1.1rem; }
.dates { list-style: none; }
.dates li { display: grid; grid-template-columns: 7.5rem 1fr auto; gap: 1rem; align-items: baseline; padding: 1rem 0; border-top: 1px solid var(--line); }
.dates li:first-child { border-top: 0; padding-top: 0; }
.dates__d { font-weight: 600; color: var(--accent); font-size: .95rem; white-space: nowrap; }
.dates__t { font-size: 1.02rem; }
.dates__c { font-size: .85rem; color: var(--text-mute); text-align: right; }
.dates li.is-past { opacity: .45; }
.dates__past { display: inline-block; margin-left: .5rem; font-size: .62rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text-mute); border: 1px solid var(--line-2); border-radius: 999px; padding: .1rem .45rem; vertical-align: middle; }
.shows__screen { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.2rem, 3vw, 1.8rem); }
.shows__img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16 / 10; margin-bottom: 1.4rem; }
.shows__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.shows__screen:hover .shows__img img { transform: scale(1.04); }
.roles { list-style: none; }
.roles li { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: .8rem 0; border-top: 1px solid var(--line); }
.roles li:first-child { border-top: 0; }
.roles li > a { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex: 1; transition: color .25s var(--ease); }
.roles li > a:hover, .roles li > a:hover span { color: var(--accent); }
.roles__ext { vertical-align: middle; margin-left: .3rem; opacity: .65; }
.roles strong { font-weight: 600; }
.roles span { font-size: .85rem; color: var(--text-mute); text-align: right; }

/* ============================================================
   FILMOGRAFIE — Filmy & seriály
   ============================================================ */
.filmo__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.6rem, 4vw, 2.4rem); align-items: start; }
.filmo__list { list-style: none; }
.filmo__list li { padding: 1rem 0; border-top: 1px solid var(--line); }
.filmo__list li:first-child { border-top: 0; padding-top: 0; }
.filmo__list strong { display: block; font-family: var(--serif); font-size: 1.18rem; font-weight: 600; }
.filmo__list span { display: block; margin-top: .25rem; font-size: .85rem; color: var(--text-mute); letter-spacing: .02em; }
.filmo__list li > a { display: block; transition: color .25s var(--ease); }
.filmo__list li > a:hover, .filmo__list li > a:hover span { color: var(--accent); }
.filmo__note { margin-top: 2.2rem; font-size: .85rem; color: var(--text-mute); }
.filmo__list li[data-peek] { cursor: zoom-in; }
.filmo__list li[data-peek]:hover strong { color: var(--accent); }
.peek-link { color: var(--accent); cursor: zoom-in; transition: opacity .2s var(--ease); }
.peek-link:hover { opacity: .8; }

/* Peek — plovoucí náhled fotky při najetí na název (desktop) */
.peek { position: fixed; left: 0; top: 0; z-index: 200; width: 260px; height: 185px; border-radius: 14px; overflow: hidden; pointer-events: none; opacity: 0; transform: scale(.92); transition: opacity .25s var(--ease), transform .25s var(--ease); box-shadow: 0 24px 60px -18px rgba(0,0,0,.85); border: 1px solid var(--line-2); background: var(--surface-2); }
.peek.is-on { opacity: 1; transform: scale(1); }
.peek img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================================================
   BOOKING — Objednejte si mě
   ============================================================ */
.booking__card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(150deg, var(--surface-2), var(--bg-2)); padding: clamp(2rem, 6vw, 4rem); text-align: center; }
.booking__glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(60% 85% at 50% 0%, rgba(200,162,76,.18), transparent 60%); }
.booking__card > *:not(.booking__glow) { position: relative; z-index: 1; }
.booking__card .section__kicker { justify-content: center; }
.booking__card .section__title { margin-bottom: 1rem; }
.booking__lead { max-width: 48ch; margin: 0 auto; color: var(--text-dim); }
.booking__offer { list-style: none; display: grid; gap: .7rem; max-width: 30rem; margin: 1.8rem auto 0; text-align: left; }
.booking__offer li { padding: .85rem 1.1rem; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.025); }
.booking__offer strong { display: block; font-weight: 600; }
.booking__offer span { display: block; margin-top: .15rem; font-size: .85rem; color: var(--text-mute); }
.booking__tags { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin: 1.8rem 0; }
.booking__tags li { font-size: .85rem; color: var(--text); border: 1px solid var(--line-2); border-radius: 100px; padding: .5rem 1rem; }
.booking__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.booking__small { margin-top: 1.4rem; font-size: .85rem; color: var(--text-mute); }

/* ============================================================
   SPOTIFY PLAYER BAR + CART FAB
   ============================================================ */
body { padding-bottom: 102px; }
body.player-off { padding-bottom: 0; }
/* floating centered player — transparent around the widget */
.player { position: fixed; left: 0; right: 0; bottom: 14px; z-index: 120; background: transparent; pointer-events: none; transition: transform .45s var(--ease), opacity .35s var(--ease); }
.player.is-hidden { transform: translateY(160%); opacity: 0; }
.player__inner { position: relative; width: min(640px, calc(100% - 1.5rem)); margin: 0 auto; pointer-events: auto; }
.player__inner iframe { display: block; width: 100%; height: 80px; border: 0; border-radius: 12px; box-shadow: 0 18px 44px -14px rgba(0,0,0,.75); }
.player__close { position: absolute; top: -9px; right: -9px; width: 24px; height: 24px; border-radius: 50%; background: var(--surface-2); border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--text-dim); box-shadow: 0 4px 12px rgba(0,0,0,.5); transition: color .25s, border-color .25s, transform .25s; }
.player__close:hover { color: var(--accent); border-color: var(--accent); transform: scale(1.08); }
.player-open { position: fixed; left: 1rem; bottom: 1rem; z-index: 121; display: inline-flex; align-items: center; gap: .5rem; padding: .6rem 1.05rem; border-radius: 100px; background: #1DB954; color: #06251a; font-weight: 600; font-size: .85rem; box-shadow: 0 14px 34px -12px rgba(0,0,0,.7); transition: transform .3s var(--ease); }
.player-open:hover { transform: translateY(-2px); }
.player-open[hidden] { display: none; }

.cart-fab { position: fixed; right: clamp(1rem, 3vw, 1.4rem); bottom: 104px; z-index: 130; width: 56px; height: 56px; border-radius: 50%; background: var(--accent); color: var(--accent-ink); display: grid; place-items: center; box-shadow: 0 16px 40px -12px rgba(0,0,0,.7); transition: transform .3s var(--ease), bottom .3s var(--ease); }
.cart-fab:hover { transform: translateY(-3px) scale(1.05); }
.cart-fab[hidden] { display: none; }
.cart-fab__count { position: absolute; top: -4px; right: -4px; min-width: 22px; height: 22px; padding: 0 6px; background: var(--text); color: var(--bg); border-radius: 100px; font-size: .72rem; font-weight: 700; display: grid; place-items: center; border: 2px solid var(--bg); }
body.player-off .cart-fab { bottom: clamp(1rem, 3vw, 1.4rem); }

@media (max-width: 820px) {
  .shows__grid { grid-template-columns: 1fr; }
  .dates li { grid-template-columns: 6rem 1fr; }
  .dates__c { grid-column: 2; text-align: left; padding-top: .1rem; }
}
