/* ============================================================
   Holeček & Dvorská — hlavní styl
   Tmavý, kinematografický vzhled se zlatým akcentem.
   ============================================================ */

:root {
  --dark:   #0a0a0a;
  --panel:  #141414;
  --panel2: #1c1a17;
  --accent: #c8a45a;
  --accent-soft: rgba(200, 164, 90, 0.15);
  --light:  #f5f0e8;
  --text:   #e9e6df;
  --muted:  #9b968c;
  --line:   rgba(255, 255, 255, 0.10);
  --maxw:   1180px;
  --nav-h:  74px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-y: scroll; scrollbar-gutter: stable; }

body {
  margin: 0;
  background: var(--dark);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, .heading {
  font-family: 'Oswald', 'Inter', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin: 0 0 0.6em;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

p { margin: 0 0 1.1em; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.accent { color: var(--accent); }

.eyebrow {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 500;
}

.gold-rule { width: 64px; height: 2px; background: var(--accent); border: 0; margin: 18px 0 0; }
.gold-rule.center { margin-left: auto; margin-right: auto; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}
.nav.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}
.nav__inner {
  position: relative; z-index: 1;
  max-width: var(--maxw); width: 100%; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand {
  font-family: 'Oswald', sans-serif; font-weight: 600;
  font-size: 1.15rem; letter-spacing: 0.18em; text-transform: uppercase;
  white-space: nowrap;
}
.brand:hover { color: var(--accent); }
.brand .amp { color: var(--accent); font-weight: 400; }

.menu { display: flex; align-items: center; gap: 20px; list-style: none; margin: 0; padding: 0; }
.menu a {
  font-family: 'Oswald', sans-serif; text-transform: uppercase; font-weight: 500;
  letter-spacing: 0.15em; font-size: 0.78rem; color: var(--muted);
  position: relative; padding: 4px 0; transition: color .25s ease;
}
.menu a::after {
  content: ''; position: absolute; left: 0; bottom: -3px; height: 2px; width: 0;
  background: var(--accent); transition: width .3s ease;
}
.menu a:hover, .menu a.active { color: var(--light); }
.menu a:hover::after, .menu a.active::after { width: 100%; }

.nav__toggle {
  display: none; background: none; border: 0; color: var(--light);
  cursor: pointer; padding: 6px;
}
.nav__toggle svg { width: 28px; height: 28px; }

.mobile-menu { display: none; }

@media (max-width: 940px) {
  .menu { display: none; }
  .nav__toggle { display: inline-flex; }
  .mobile-menu {
    position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 49;
    background: rgba(6, 6, 6, 0.97); backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }
  .mobile-menu.open { display: block; opacity: 1; transform: none; pointer-events: auto; }
  .mobile-menu ul { list-style: none; margin: 0; padding: 12px 24px 20px; }
  .mobile-menu a {
    display: block; padding: 13px 0; font-family: 'Oswald', sans-serif;
    text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.9rem;
    color: var(--muted); border-bottom: 1px solid var(--line);
  }
  .mobile-menu a:last-child { border-bottom: 0; }
  .mobile-menu a.active { color: var(--accent); }
}

/* ---------- Hero (homepage) ---------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: calc(var(--nav-h) + 40px) 24px 60px;
  overflow: hidden;
}
@media (max-width: 640px) {
  .hero { min-height: 63svh; padding-bottom: 52px; }
  .hero__bg { background-position: center 20%; }
  html .hero__title { margin-top: 133px; }
  .scroll-cue { bottom: 16px; }
  .footer__inner { flex-direction: column; align-items: center; text-align: center; gap: 22px; }
  html .section { padding: 28px 0; }
  html .section.tight { padding: 22px 0; }
  html .banner { padding-bottom: 24px; }
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 22%;
  filter: grayscale(15%);
  transform: scale(1.03);
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 82%, rgba(0,0,0,0.32));
}
/* Svislá černá čára uprostřed hero (na švu fotky) — jen desktop */
@media (min-width: 700px) {
  .hero::before {
    content: ''; position: absolute; top: 0; bottom: 0; left: calc(50% - 8px);
    width: 9px; background: #000; z-index: 1; pointer-events: none;
  }
  /* šipka na střed té čáry */
  html .scroll-cue { left: calc(50% - 3.5px); }
}
.hero__content { position: relative; z-index: 2; max-width: 860px; }
.hero__title {
  font-size: clamp(2.6rem, 8vw, 6.2rem);
  font-weight: 600; margin: 0.15em 0 0;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
}
.hero__title-l, .hero__title-r { letter-spacing: 0.06em; }
.hero__title .amp { letter-spacing: 0; }
@media (min-width: 700px) {
  /* „&" vždy přesně na svislém středu (na dělící čáře fotky) */
  .hero__title { display: grid; grid-template-columns: 1fr auto 1fr; align-items: baseline; column-gap: 0.26em; width: 100%; }
  .hero__title-l { text-align: right; }
  .hero__title-r { text-align: left; }
}
.hero__title .amp { color: var(--accent); font-weight: 300; }
.hero__tagline {
  font-family: 'Oswald', sans-serif; text-transform: uppercase;
  letter-spacing: 0.34em; font-size: clamp(0.7rem, 2vw, 0.95rem);
  color: var(--muted); margin-top: 22px;
}
.scroll-cue {
  position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,0.45); animation: bob 2.2s infinite;
}
.scroll-cue svg { width: 26px; height: 26px; }
@keyframes bob { 0%,100%{transform:translate(-50%,0)} 50%{transform:translate(-50%,10px)} }

/* ---------- Page banner (inner pages) ---------- */
.banner {
  position: relative; padding: calc(var(--nav-h) + 56px) 0 44px;
  overflow: hidden;
}
.banner__bg {
  position: absolute; inset: 0; background-size: cover; background-position: center center;
}
.banner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.72), rgba(10,10,10,0.82)), rgba(0,0,0,0.35);
}
.banner .container { position: relative; z-index: 2; }
.banner h1 {
  font-size: clamp(2.2rem, 6vw, 3.6rem); text-transform: uppercase; margin: 0;
}
.banner p.lead { color: var(--muted); margin: 10px 0 0; max-width: 640px; }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section.tight { padding: 64px 0; }
.section-head { margin-bottom: 44px; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); text-transform: uppercase; }

/* ---------- Intro (home) ---------- */
.intro { background: var(--dark); }
.intro__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.intro__photo { position: relative; }
.intro__photo img {
  width: 100%; border-radius: 10px; box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  border: 1px solid var(--line);
}
.intro__photo::before {
  content: ''; position: absolute; inset: -14px -14px auto auto;
  width: 60%; height: 60%; border-top: 2px solid var(--accent); border-right: 2px solid var(--accent);
  border-radius: 0 10px 0 0; opacity: 0.5;
}
.intro__text h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.intro__text p { color: #cfcabf; }
.intro__text .members { color: var(--muted); font-size: 0.95rem; }
.intro__text .members strong { color: var(--text); font-weight: 500; }
@media (max-width: 860px) {
  .intro__grid { grid-template-columns: 1fr; gap: 34px; }
  .intro__photo { max-width: 460px; margin: 0 auto; }
}

/* ---------- Quick links (home) ---------- */
.quicklinks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.qcard {
  position: relative; display: block; padding: 32px 28px; border-radius: 10px;
  background: var(--panel); border: 1px solid var(--line);
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
  overflow: hidden;
}
.qcard:hover { transform: translateY(-5px); border-color: rgba(200,164,90,0.4); background: #191919; }
.qcard__num { display: none; }
/* Úvod: moderní teaser připravovaného alba (bez karty) */
.album-hero { max-width: 720px; margin: 0 auto; text-align: center; position: relative; padding: 20px 0; }
.album-hero::before {
  content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: min(760px, 96%); height: 135%;
  background: radial-gradient(55% 60% at 50% 45%, var(--accent-soft), transparent 72%);
  pointer-events: none; z-index: -1;
}
.album-hero .badge { display: inline-block; margin-bottom: 22px; }
.album-hero__label { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 0.34em; color: var(--muted); font-size: 0.92rem; margin: 0 0 4px; }
.album-hero__name { font-family: 'Oswald', sans-serif; font-weight: 600; color: var(--accent); font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1.05; margin: 0 0 20px; }
.album-hero__text { color: #cfcabf; max-width: 560px; margin: 0 auto; }
.qcard h3 { font-size: 1.5rem; margin: 6px 0 8px; text-transform: uppercase; }
.qcard p { color: var(--muted); font-size: 0.9rem; margin: 0; }
.qcard__arrow { position: absolute; top: 28px; right: 26px; color: var(--accent); opacity: 0; transform: translateX(-6px); transition: all .3s ease; }
.qcard:hover .qcard__arrow { opacity: 1; transform: none; }
@media (max-width: 780px) { .quicklinks { grid-template-columns: 1fr; } }

/* ---------- Bio / profile pages ---------- */
.profile { display: grid; grid-template-columns: 340px minmax(0, 760px); gap: 52px; align-items: start; justify-content: center; }
.profile__photo { position: sticky; top: calc(var(--nav-h) + 24px); }
.profile__photo img { width: 100%; border-radius: 10px; border: 1px solid var(--line); box-shadow: 0 24px 50px rgba(0,0,0,0.55); }
.profile__photo .cap { color: var(--muted); font-size: 0.8rem; margin-top: 12px; text-align: center; }
.prose { max-width: 760px; }
.prose p { color: #cfcabf; }
.prose h3 { margin-top: 34px; font-size: 1.3rem; text-transform: uppercase; color: var(--light); }
.prose a.inline { color: var(--accent); border-bottom: 1px solid rgba(200,164,90,0.4); transition: border-color .2s; }
.prose a.inline:hover { border-color: var(--accent); }
@media (max-width: 820px) {
  .profile { grid-template-columns: 1fr; gap: 30px; }
  .profile__photo { position: static; max-width: 380px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.82rem; padding: 13px 26px; border-radius: 4px;
  border: 1px solid var(--accent); color: var(--accent);
  transition: background .25s ease, color .25s ease, transform .2s ease;
}
.btn:hover { background: var(--accent); color: #14100a; transform: translateY(-2px); }
.btn--solid { background: var(--accent); color: #14100a; }
.btn--solid:hover { background: #d8b775; }
.btn-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 36px; }

/* ---------- Concerts ---------- */
.gig-list { display: flex; flex-direction: column; gap: 0; }
.gig {
  display: grid; grid-template-columns: 92px auto 1fr; gap: 20px; align-items: center;
  padding: 24px 6px; border-bottom: 1px solid var(--line);
  transition: background .25s ease, padding-left .25s ease;
}
.gig:last-child { border-bottom: 0; }
.gig:hover { background: rgba(255,255,255,0.02); padding-left: 16px; }
.gig__date { font-family: 'Oswald', sans-serif; }
.gig__date .d { font-size: 1.9rem; font-weight: 600; color: var(--accent); line-height: 1; }
.gig__date .m { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.82rem; font-weight: 500; color: #cfcabf; margin-top: 4px; }
.gig__info .place { font-size: 1.25rem; font-family: 'Oswald', sans-serif; font-weight: 600; }
.gig__info .event { color: var(--muted); font-size: 0.92rem; }
.gig__tag { font-family:'Oswald',sans-serif; font-size:1.25rem; font-weight: 600; letter-spacing: 0.01em; color: var(--muted); justify-self: start; white-space: nowrap; }
@media (min-width: 641px) {
  .gig { column-gap: 14px; }
  .gig__tag { order: 2; }
  .gig__info { order: 3; }
  .gig__tag::after { content: '|'; margin-left: 0.5em; color: rgba(255,255,255,0.3); font-weight: 300; }
}
@media (max-width: 640px) {
  .gig { grid-template-columns: 64px 1fr; grid-template-areas: "date name" "date city"; align-items: center; row-gap: 2px; }
  .gig__date { grid-area: date; align-self: center; }
  .gig__info { grid-area: name; }
  .gig__tag { grid-area: city; display: block; font-size: 1.1rem; }
  .gig__date .d { font-size: 1.5rem; }
}

/* ---------- Cards grid (discography / generic) ---------- */
.cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 26px; }
.album {
  flex: 0 1 300px; max-width: 340px;
  background: var(--panel); border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
}
.album:hover { transform: translateY(-5px); border-color: rgba(200,164,90,0.4); }
.album__cover { aspect-ratio: 1; background: #0b0b0b; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.album__cover img { width: 100%; height: 100%; object-fit: cover; }
.album__body { padding: 18px 20px 22px; }
.album__body h3 { font-size: 1.15rem; margin: 0 0 4px; }
.album__body .year { color: var(--accent); font-size: 0.8rem; font-family: 'Oswald', sans-serif; letter-spacing: 0.1em; }
.album__body .artist { color: var(--muted); font-size: 0.86rem; }
.album__links { display: flex; gap: 14px; margin-top: 12px; }
.album__links a { color: var(--muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; font-family:'Oswald',sans-serif; }
.album__links a:hover { color: var(--accent); }

/* ---------- Featured / teaser ---------- */
.teaser {
  position: relative; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #171410, #0c0c0c 60%);
  padding: 60px 48px; text-align: center;
}
.teaser::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(60% 120% at 50% 0%, var(--accent-soft), transparent 70%);
  pointer-events: none;
}
.teaser__inner { position: relative; z-index: 2; max-width: 620px; margin: 0 auto; }
.teaser h2 { font-size: clamp(2rem, 5vw, 3.2rem); text-transform: uppercase; }
.teaser .album-title { color: var(--accent); }
.teaser p { color: #cfcabf; }
.teaser .badge {
  display: inline-block; font-family:'Oswald',sans-serif; text-transform: uppercase;
  letter-spacing: 0.22em; font-size: 0.72rem; color: var(--accent);
  border: 1px solid rgba(200,164,90,0.4); border-radius: 40px; padding: 7px 18px; margin-bottom: 22px;
}

/* ---------- Video grid ---------- */
.video-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; }
.video-card { flex: 0 1 360px; }
.video-card { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.video-card .frame { position: relative; aspect-ratio: 16/9; background: #000; }
.video-card iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-card .meta { padding: 16px 18px 18px; }
.video-card h3 { font-size: 1.05rem; margin: 0 0 4px; }
.video-card .sub { color: var(--muted); font-size: 0.82rem; }

/* ---------- News / Novinky ---------- */
.news-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 26px; }
.news-card {
  display: flex; flex-direction: column;
  flex: 0 1 340px; max-width: 380px;
  background: var(--panel); border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
}
.news-card:hover { transform: translateY(-5px); border-color: rgba(200,164,90,0.4); }
.news-card__media { position: relative; aspect-ratio: 16 / 10; background: #0b0b0b; overflow: hidden; }
.news-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.news-card:hover .news-card__media img { transform: scale(1.05); }
.news-card__ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #171410, #0c0c0c 60%); }
.news-card__ph::before { content: ''; position: absolute; inset: 0; background: radial-gradient(70% 120% at 50% 0%, var(--accent-soft), transparent 70%); }
.news-card__ph span { position: relative; font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.8rem; color: var(--accent); }
.news-card__body { display: flex; flex-direction: column; flex: 1; padding: 20px 22px 22px; }
.news-card__date { color: var(--accent); font-size: 0.76rem; font-family: 'Oswald', sans-serif; letter-spacing: 0.14em; text-transform: uppercase; }
.news-card__title { font-size: 1.2rem; line-height: 1.25; margin: 9px 0 10px; }
.news-card__excerpt { color: var(--muted); font-size: 0.92rem; line-height: 1.6; margin: 0 0 18px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-card__more { margin-top: auto; color: #cfcabf; font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.8rem; transition: color .2s ease; }
.news-card:hover .news-card__more { color: var(--accent); }

/* Plain (text-only) variant — used on the homepage */
.news-card--plain .news-card__body { padding: 30px 26px 28px; }
.news-card--plain .news-card__date { position: relative; padding-top: 20px; }
.news-card--plain .news-card__date::before { content: ''; position: absolute; top: 0; left: 0; width: 38px; height: 2px; background: var(--accent); }
.news-card--plain .news-card__title { font-size: 1.3rem; }

/* Pager — číslované stránkování */
.pager { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 48px; flex-wrap: wrap; }
.pager__num, .pager__arrow {
  min-width: 42px; height: 42px; padding: 0 6px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 8px; color: var(--muted);
  font-family: 'Oswald', sans-serif; font-size: 0.98rem; letter-spacing: 0.03em;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.pager__num:hover, .pager__arrow:hover { border-color: var(--accent); color: var(--accent); }
.pager__num.is-active { background: var(--accent); border-color: var(--accent); color: #14100a; font-weight: 600; }
.pager__arrow { font-size: 1.1rem; }

/* Article (news detail) */
.article { max-width: 760px; }
.article__inner { margin: 0 auto; }
.article__inner .news-card__date { font-size: 1.06rem; font-weight: 700; letter-spacing: 0.12em; }
.article__media { margin: 18px 0 10px; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); }
.article__media img { width: 100%; height: auto; display: block; }
.article__body { margin-top: 22px; font-size: 1.06rem; }
.article__body p { margin: 0 0 18px; }
.article__body ul, .article__body ol { margin: 0 0 18px; padding-left: 1.3em; color: #cfcabf; }
.article__body li { margin: 6px 0; }
.article__body h2, .article__body h3 { font-family: 'Oswald', sans-serif; margin: 30px 0 12px; }
.article__body a { color: var(--accent); border-bottom: 1px solid rgba(200,164,90,0.4); }
.article__body a:hover { border-color: var(--accent); }

/* ---------- Photo gallery ---------- */
.gallery { columns: 4 220px; column-gap: 14px; }
.gallery figure { margin: 0 0 14px; break-inside: avoid; }
.gallery img {
  width: 100%; border-radius: 8px; cursor: pointer;
  transition: transform .35s ease, filter .35s ease; filter: brightness(0.92);
}
.gallery img:hover { transform: scale(1.02); filter: brightness(1.05); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100; display: none;
  align-items: center; justify-content: center; background: rgba(5,5,5,0.96);
  padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: 6px; box-shadow: 0 20px 80px rgba(0,0,0,0.7); }
.lightbox__close { position: absolute; top: 22px; right: 30px; font-size: 2.4rem; color: rgba(255,255,255,0.7); cursor: pointer; line-height: 1; background: none; border: 0; }
.lightbox__close:hover { color: #fff; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); background: none; border: 0; color: rgba(255,255,255,0.6); cursor: pointer; padding: 16px; }
.lightbox__nav:hover { color: #fff; }
.lightbox__nav svg { width: 40px; height: 40px; }
.lightbox__nav.prev { left: 10px; }
.lightbox__nav.next { right: 10px; }

/* ---------- Fotoalba — dlaždice ---------- */
.album-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.album-tile { position: relative; display: block; aspect-ratio: 4 / 3; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); background: var(--panel); }
.album-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; filter: brightness(0.96); }
.album-tile:hover img { transform: scale(1.05); }
.album-tile__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.15) 55%, rgba(0,0,0,0.3) 100%); transition: background .3s ease; }
.album-tile:hover .album-tile__overlay { background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.28) 60%, rgba(0,0,0,0.38) 100%); }
.album-tile__meta { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 24px; z-index: 2; }
.album-tile__name { display: block; font-family: 'Oswald', sans-serif; font-size: 1.55rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; line-height: 1.12; }
.album-tile__count { display: block; margin-top: 5px; color: var(--accent); font-family: 'Oswald', sans-serif; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.16em; }

/* ---------- Contact ---------- */
.contact-card {
  max-width: 560px; margin: 0 auto; text-align: center;
  background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 48px 40px;
}
.contact-card .who { font-family: 'Oswald', sans-serif; font-size: 1.5rem; letter-spacing: 0.06em; }
.contact-card .role { color: var(--muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 26px; }
.contact-line { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 12px 0; font-size: 1.05rem; }
.contact-line svg { width: 20px; height: 20px; color: var(--accent); flex: none; }
.contact-line a:hover { color: var(--accent); }

/* ---------- Coming soon (download) ---------- */
.empty-state { text-align: center; max-width: 520px; margin: 0 auto; padding: 40px 0; }
.empty-state .icon { color: var(--accent); margin-bottom: 22px; }
.empty-state .icon svg { width: 54px; height: 54px; margin: 0 auto; }
.empty-state h2 { font-size: 2rem; text-transform: uppercase; }
.empty-state p { color: var(--muted); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 46px 0; background: #080808; }
.footer__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.footer .brand-sm { font-family:'Oswald',sans-serif; letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.95rem; }
.footer .brand-sm .amp { color: var(--accent); }
.footer .copy { color: var(--muted); font-size: 0.82rem; }
.socials { display: flex; gap: 14px; }
.socials a {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center; color: var(--muted);
  transition: all .25s ease;
}
.socials a:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }
.socials svg { width: 18px; height: 18px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .scroll-cue { animation: none; }
}

/* ---------- Homepage jemné doladění (desktop) ---------- */
.hero .eyebrow { font-size: clamp(0.82rem, 1.7vw, 1.05rem); letter-spacing: 0.34em; }
.intro-prose { max-width: 820px; }
@media (min-width: 992px) {
  /* širší blok, ať oba odstavce vyjdou na 2 řádky a 2 řádky */
  .intro-prose { max-width: 1060px; }
}
/* Teaser alba: „Nové album" na jeden řádek, název pod tím na jeden řádek */
@media (min-width: 768px) {
  .teaser h2 .album-title { display: block; white-space: nowrap; }
}

/* Zakouřené ztmavení horní části — čitelnost menu přes fotku */
.nav::before {
  content: ''; position: absolute; left: 0; right: 0; top: 0; height: 150px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.92) 40%, rgba(0,0,0,0.55) 72%, rgba(0,0,0,0) 100%);
  pointer-events: none; opacity: 1; transition: opacity .35s ease;
}
.nav.scrolled::before { opacity: 0; }

/* ---------- Větší logo/menu + obsah zarovnaný s headerem (velké monitory) ---------- */
@media (min-width: 1500px) {
  :root { --nav-h: 94px; --maxw: 1500px; }
  .brand { font-size: 1.6rem; letter-spacing: 0.2em; }
  .menu { gap: 26px; }
  .menu a { font-size: 0.98rem; letter-spacing: 0.16em; }
}
@media (min-width: 1920px) {
  :root { --nav-h: 104px; --maxw: 1680px; }
  .brand { font-size: 1.85rem; }
  .menu { gap: 32px; }
  .menu a { font-size: 1.08rem; }
}
