:root {
  --bg: #0b0a09;
  --bg-raised: #141210;
  --bg-card: #191614;
  --line: #2a2521;
  --text: #f2ede7;
  --text-dim: #a89f95;
  --accent: #e8973f;
  --accent-hot: #d2452c;
  --wrap: 1180px;
  --radius: 4px;
  --font-display: "Barlow Condensed", "Helvetica Neue", Impact, sans-serif;
  --font-body: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* height:auto lets CSS aspect-ratio win over the intrinsic height attribute in the markup */
img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 22px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #16110c;
  padding: 12px 20px;
  z-index: 200;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11, 10, 9, .92);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 70px;
}

.brand {
  text-decoration: none;
  display: grid;
  line-height: 1.1;
  margin-right: auto;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.brand-role {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}

.nav {
  display: none;
  gap: 30px;
}
.nav a {
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-dim);
  transition: color .2s;
  position: relative;
  padding-block: 6px;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .25s ease;
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { transform: scaleX(1); }

.header-inner .header-cta { display: none; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .04em;
  border: 1px solid transparent;
  transition: transform .18s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; flex: none; }
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-hot));
  color: #1a1006;
}
.btn-ghost {
  border-color: rgba(242, 237, 231, .28);
  color: var(--text);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-phone {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
  padding: 9px 17px;
  font-size: 14px;
}
.btn-phone:hover { background: var(--accent); color: #1a1006; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-block: 120px 90px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Portrait photo in a landscape hero crops hard on desktop; 13% keeps the top
     of the head and the mic in frame. On phones the full height fits, so Y is moot. */
  object-position: 50% 13%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--bg) 4%, rgba(11,10,9,.82) 34%, rgba(11,10,9,.35) 62%, rgba(11,10,9,.55) 100%),
    radial-gradient(120% 75% at 78% 42%, rgba(210,69,44,.28), transparent 62%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
  font-weight: 600;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(3.2rem, 14vw, 8.5rem);
  /* Czech carons sit above cap height; tighter than this and Ž collides with the line above */
  line-height: .96;
  letter-spacing: -.005em;
  margin: 0;
  display: grid;
}
.hero-title span { color: var(--accent); }

.hero-sub {
  font-size: clamp(.95rem, 3.4vw, 1.15rem);
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 20px 0 0;
  font-weight: 600;
}

.hero-lead {
  max-width: 56ch;
  margin: 22px 0 0;
  color: #ddd4c9;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 3;
  width: 26px;
  height: 42px;
  border: 1px solid rgba(242,237,231,.32);
  border-radius: 14px;
  display: none;
}
.hero-scroll span {
  position: absolute;
  left: 50%;
  top: 9px;
  width: 3px;
  height: 7px;
  margin-left: -1.5px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollDot 1.9s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { opacity: 0; transform: translateY(0); }
  35% { opacity: 1; }
  70% { opacity: 0; transform: translateY(14px); }
}

/* ---------- Sections ---------- */

.section {
  padding-block: clamp(64px, 11vw, 118px);
  scroll-margin-top: 70px;
}

/* Sekce se v tomhle poradi stridaji, aby mezi nimi byl videt predel bez linky */
.section-about { background: var(--bg-raised); }
.section-services { background: var(--bg); }
.section-clips { background: var(--bg-raised); }
.section-repertoire { background: var(--bg); }
.section-gallery { background: var(--bg-raised); }

.eyebrow {
  font-size: 12px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 12px;
}

h2 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2rem, 6.2vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: .01em;
  margin: 0 0 22px;
}

h3 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.4rem;
  letter-spacing: .05em;
  margin: 0 0 10px;
}

p { margin: 0 0 16px; }

.section-lead {
  max-width: 62ch;
  color: var(--text-dim);
  font-size: 18px;
  margin-bottom: 42px;
}

/* ---------- About ---------- */

/* Sekce je po odstraneni portretu jednosloupcova. Stejny strop jako
   .section-lead, aby se radky textu neroztahly pres celych 1180 px. */
.about-text { max-width: 62ch; }
.about-text p { color: #cfc6bb; }

.facts {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.facts li {
  background: var(--bg-raised);
  padding: 17px 18px;
  display: grid;
  gap: 3px;
}
/* Lichy pocet polozek by nechal posledni bunku prazdnou a prosvitalo by pozadi mrizky */
.facts li:last-child:nth-child(odd) { grid-column: 1 / -1; }
.facts strong {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.facts span { font-size: 15px; color: var(--text); }

/* ---------- Cards ---------- */

.cards {
  display: grid;
  gap: 18px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 30px 26px 28px;
  transition: border-color .25s ease, transform .25s ease;
}
.card:hover {
  border-color: rgba(232,151,63,.45);
  transform: translateY(-3px);
}
.card p { color: var(--text-dim); margin: 0; font-size: 15.5px; }

.card-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--accent);
}
.card-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linejoin: round;
  stroke-linecap: round;
}

/* ---------- Repertoire ---------- */

.setlist {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 18px 34px;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
}
.setlist li {
  border-top: 1px solid var(--line);
  padding-top: 11px;
}
.setlist strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 15px;
  color: var(--accent);
  margin-bottom: 3px;
}
.setlist span {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.55;
}

.note { color: var(--text-dim); font-size: 15px; margin: 0; }

/* ---------- Ukazky ---------- */

.clips {
  display: grid;
  gap: 22px;
  /* Na uzkem displeji pod sebou, od 700 px vsechny tri vedle sebe - viz breakpointy.
     Strop 340 px, aby se video na uzkem tabletu neroztahlo pres cely sloupec -
     zaznam na vysku by pak byl vyssi nez cela obrazovka. */
  grid-template-columns: minmax(0, 340px);
  /* Zaznamy z telefonu jsou na vysku; sirsi nez tohle uz je jen prazdno po stranach.
     3 x 300 px + dve mezery po 22 px. */
  max-width: 944px;
}

.clip {
  margin: 0;
}

.clip video {
  display: block;
  width: 100%;
  /* Bez height:auto by atribut height="832" v markupu prebil aspect-ratio */
  height: auto;
  aspect-ratio: 9 / 16;
  background: #000;
  border: 1px solid var(--line);
  object-fit: cover;
}

.clip figcaption {
  margin-top: 12px;
  font-size: 15px;
  color: var(--text);
}
/* Interpret nad nazvem skladby - drzi to poradek, kdyz jsou klipy vedle sebe */
.clip figcaption span {
  display: block;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 3px;
}

/* ---------- Gallery ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.shot {
  padding: 0;
  border: 0;
  margin: 0;
  background: var(--bg-card);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  aspect-ratio: 2 / 3;
  display: block;
}
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .35s ease;
  filter: brightness(.88);
}
.shot:hover img { transform: scale(1.05); filter: brightness(1); }

/* ---------- Contact ---------- */

.section-contact {
  background:
    linear-gradient(rgba(11,10,9,.9), rgba(11,10,9,.97)),
    radial-gradient(90% 130% at 15% 0%, rgba(210,69,44,.4), transparent 60%);
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  gap: 12px;
}

.contact-card {
  display: grid;
  gap: 5px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  background: rgba(25,22,20,.7);
  text-decoration: none;
  transition: border-color .22s ease, background .22s ease, transform .22s ease;
}
.contact-card:hover {
  border-color: var(--accent);
  background: rgba(232,151,63,.07);
  transform: translateY(-2px);
}
.contact-label {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.contact-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: .02em;
  word-break: break-word;
}
.contact-card-primary {
  border-color: rgba(232,151,63,.5);
  background: rgba(232,151,63,.09);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding-block: 32px;
  padding-bottom: 96px;
}
.footer-inner {
  display: grid;
  gap: 6px;
}
.footer-brand {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: 17px;
  font-weight: 600;
  margin: 0;
}
.footer-brand span { color: var(--text-dim); font-weight: 400; letter-spacing: .04em; }
.footer-meta { color: var(--text-dim); font-size: 14px; margin: 0; line-height: 1.7; }
.footer-credit { color: #6f675e; font-size: 13px; }

/* ---------- Sticky mobile call ---------- */

.sticky-call {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hot));
  color: #1a1006;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  box-shadow: 0 10px 34px rgba(0,0,0,.55);
}
.sticky-call svg { width: 20px; height: 20px; fill: currentColor; }

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(6,5,5,.96);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: 100%;
  max-height: 92vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: 0;
  color: var(--text);
  font-size: 44px;
  line-height: 1;
  cursor: pointer;
  padding: 8px 14px;
}
.lightbox-close:hover { color: var(--accent); }

/* ---------- Breakpoints ---------- */

@media (min-width: 700px) {
  /* Tri sloupce, ne ctyri - pri sesti fotkach vyjdou dve plne rady bez ohryzku */
  .gallery { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  /* Natvrdo tri, ne auto-fit: ten pri strednich sirkach rozpadl ukazky na 2 + 1
     a treti klip pak vypadal, jako by k tem dvema nepatril. */
  .clips { grid-template-columns: repeat(3, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-scroll { display: block; }
}

@media (min-width: 900px) {
  body { font-size: 17px; }
  .nav { display: flex; }
  .header-inner .header-cta { display: inline-flex; }
  .sticky-call { display: none; }
  .site-footer { padding-bottom: 32px; }
  .cards { grid-template-columns: repeat(4, 1fr); }
  .contact-grid { grid-template-columns: repeat(4, 1fr); }
  .hero { align-items: center; padding-block: 140px; }
  .hero-lead { font-size: 18px; }
  .footer-inner { grid-template-columns: 1fr auto; align-items: center; }
  .footer-meta { text-align: right; }
}
