/* Hero – poster style */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero__curves {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background-image: url("../assets/bombka-white.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 0.28;
}

html[data-theme="light"] .hero__curves {
  background-image: url("../assets/bombka.svg");
  opacity: 0.16;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: clamp(80px, 11vh, 130px);
  padding-bottom: clamp(40px, 5vh, 60px);
  gap: clamp(20px, 3.5vh, 36px);
}

.hero__top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__date-mono {
  font-size: 21px;
  color: var(--fg-2);
  letter-spacing: 0.02em;
}

.hero__title-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-left: auto;
  text-align: right;
  max-width: 100%;
}

.hero__title {
  font-size: clamp(44px, 8.5vw, 124px);
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 0.96;
}

.hero__title-city {
  display: inline-block;
}

.hero__subtitle-mono {
  font-size: clamp(20px, 2.6vw, 36px);
  color: var(--fg);
  letter-spacing: -0.01em;
  font-weight: 400;
  margin-top: 4px;
}

.hero__x {
  color: var(--fg-3);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  margin-right: 6px;
}

.hero__sub {
  max-width: 540px;
  margin-left: auto;
  text-align: right;
}

.hero__subtitle {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0;
  text-wrap: pretty;
  font-style: italic;
}

.hero__meta {
  display: grid;
  /* Ręczne proporcje: KIEDY 1.25× | GDZIE 1× | WSTĘP 1× | JĘZYK 0.75×
     minmax(0, …) wymusza skalowanie nawet dla szerszej treści. */
  grid-template-columns:
    minmax(0, 1.25fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 0.75fr);
  gap: 24px;
  padding: 24px;
  width: 100%;
  box-sizing: border-box;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(10, 10, 11, 0.55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

html[data-theme="light"] .hero__meta {
  background: rgba(255, 255, 255, 0.6);
}

.hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero__meta-val {
  font-size: 13px;
  line-height: 1.55;
  color: var(--fg);
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hero__corners {
  display: flex;
  justify-content: flex-end;
  font-size: 11px;
  color: var(--fg-3);
  padding-top: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__coord {
  letter-spacing: 0.02em;
}

@media (max-width: 720px) {
  .hero__title-block, .hero__sub { text-align: left; margin-left: 0; }
  .hero__meta { grid-template-columns: 1fr; gap: 16px; padding: 16px 0; }
  .hero__title { font-size: clamp(40px, 13vw, 72px); }
  .hero__cta { width: 100%; }
  .hero__cta .btn { flex: 1; justify-content: center; }
  .hero__corners { font-size: 10px; }
  .hero__curves { background-size: cover; opacity: 0.2; }
  html[data-theme="light"] .hero__curves { opacity: 0.12; }
}
