/* 07-hero.css — framed-editorial hero (sygnatura salonu).
 * Single column, tekst NAD i POD fotem. Foto w macie 40/56px. NIE overlay.
 */

.tl-hero {
  background: var(--c-bone);
  padding-top: 80px;
  padding-bottom: 64px;
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tl-hero--small {
  min-height: auto;
  padding-top: 56px;
  padding-bottom: 56px;
}

.tl-hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  text-align: center;
}

.tl-hero__kicker {
  margin-bottom: 24px;
  justify-content: center;
}

.tl-hero__h1 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: var(--f-display-hero);
  line-height: var(--lh-tight);
  letter-spacing: -0.025em;
  color: var(--c-ink);
  max-width: 16ch;
  margin: 0 auto 32px;
}

.tl-hero--small .tl-hero__h1 {
  font-size: var(--f-display-xl);
  max-width: 28ch;
}

/* Text-only hero variant (no image) — extra breathing room */
.tl-hero--text {
  padding-top: 80px;
  padding-bottom: 80px;
}
.tl-hero--text .tl-hero__h1 {
  margin-bottom: 24px;
}
.tl-hero--text .tl-hero__sub {
  margin-bottom: 24px;
}

.tl-hero__h1-italic {
  font-family: var(--f-body);
  font-style: italic;
  font-weight: 500;
}

.tl-hero__photomat {
  background: var(--c-bone-alt);
  padding: 56px;
  border-radius: var(--r-lg);
  margin: 0 auto 40px;
  max-width: 920px;
}

.tl-hero__photomat img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--r-lg);
  max-height: 480px;
}

@media (max-width: 900px) {
  .tl-hero__photomat { padding: 40px; }
}
@media (max-width: 480px) {
  .tl-hero__photomat { padding: 24px; }
  .tl-hero__photomat img { aspect-ratio: 4 / 3; max-height: 320px; }
}

.tl-hero__sub {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: var(--f-body-l);
  color: var(--c-ink-muted);
  line-height: var(--lh-prose);
  max-width: 540px;
  margin: 0 auto 32px;
}

.tl-hero__cta {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .tl-hero__cta { flex-direction: column; gap: 16px; }
}

.tl-hero__hair { margin: 32px auto; }
.tl-hero__anchor { justify-content: center; }
