:root{
  --fire: #d9772a;
  --fire-dark: #b45f1f;
  --dark: #0f0f0f;
  --light: #ffffff;
}

*{ box-sizing: border-box; margin: 0; padding: 0; }

body{
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #000;
  color: var(--light);
}

/* ================= TOPBAR ================= */

.topbar{
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0,0,0,0.40);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.topbar-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 14px;
}

/* ================= LOGO ================= */

.logo{
  display: flex;
  align-items: baseline;
  gap: 0;
  letter-spacing: 1px;
  text-shadow: 0 0 12px rgba(217,119,42,0.28);
  white-space: nowrap;
}

.logo-big{
  font-family: "Cinzel", serif;
  font-size: 28px;
  font-weight: 600;
  color: #fff;
}

.logo-small{
  font-family: "Cinzel", serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  margin-right: 2px;
}

.logo-pl{
  font-family: "Cinzel", serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--fire);
  margin-left: 2px;
}

/* ================= DESKTOP MENU ================= */

.menu{
  margin-left: auto;
  display: flex;
  gap: 26px;
  align-items: center;
}

.menu a{
  color: rgba(255,255,255,0.86);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.menu a:hover{ color: var(--fire); }

.menu .cta{
  padding: 10px 18px;
  border: 1px solid rgba(217,119,42,0.9);
  border-radius: 12px;
  color: var(--fire);
}

.menu .cta:hover{
  background: var(--fire);
  color: #000;
}

/* ================= MOBILE NAV (KWADRAT + DRAWER) ================= */

.mnav-btn{
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;            /* “kwadrat” z lekkim zaokrągleniem */
  border: 1px solid rgba(255,255,255,0.20);
  background: rgba(0,0,0,0.35);
  color: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mnav-icon{
  display: block;
  width: 18px;
  height: 12px;
  position: relative;
}

.mnav-icon::before,
.mnav-icon::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.92);
  border-radius: 2px;
}

.mnav-icon::before{ top: 0; }
.mnav-icon::after{ bottom: 0; }

.mnav-backdrop{
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 999;
}

.mnav-drawer{
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: min(320px, 86vw);
  background: rgba(0,0,0,0.92);
  border-right: 1px solid rgba(255,255,255,0.10);
  box-shadow: 20px 0 60px rgba(0,0,0,0.65);
  padding: 18px 14px;
  z-index: 1001;

  transform: translateX(-102%);
  transition: transform .22s ease;
}

.mnav-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 6px 6px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.mnav-title{
  font-weight: 800;
  letter-spacing: 0.4px;
}

.mnav-close{
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.9);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.mnav-drawer a{
  display: block;
  padding: 12px 12px;
  margin: 4px 0;
  color: rgba(255,255,255,0.90);
  text-decoration: none;
  font-size: 14px;
  border-radius: 10px;
}

.mnav-drawer a:hover{
  background: rgba(255,255,255,0.06);
  color: #fff;
}

.mnav-drawer .cta{
  margin-top: 8px;
  border: 1px solid rgba(217,119,42,0.9);
  color: var(--fire);
}

.mnav-drawer .cta:hover{
  background: var(--fire);
  color: #000;
}

/* stan otwarty */
body.mnav-open .mnav-backdrop{ display: block; }
body.mnav-open .mnav-drawer{ transform: translateX(0); }

/* ================= HERO ================= */

/* Desktop: scena 1920x1080, nie rozciągamy na większe monitory */
.hero{
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0px; /* topbar */
  background: #000;
}

.hero-stage{
  position: relative;
  width: min(1920px, 100vw);
  aspect-ratio: 16 / 9;
  max-height: calc(100vh - 64px);
  background: #000;
  overflow: hidden;
}

.hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;     /* desktop: bez rozciągania */
  object-position: center;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 42%, rgba(0,0,0,0.10), rgba(0,0,0,0.60) 82%),
    linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.12) 45%, rgba(0,0,0,0.35));
}

.hero-content{
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0px 24px 60px;
}

.hero-card{
  width: min(920px, 92vw);
  text-align: center;
  margin-top: 40px;
}

.hero-card h1{
  font-family: "Cinzel Decorative", serif;
  font-weight: 700;
  line-height: 1.12;
  font-size: clamp(24px, 2.7vw, 40px);
  margin-bottom: 12px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.70);
}

.hero-card h1 span{ color: var(--fire); }

.hero-card p{
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  max-width: 760px;
  margin: 0 auto 18px;
  text-shadow: 0 10px 26px rgba(0,0,0,0.70);
}

.hero-buttons{
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 16px 0 18px;
}

.btn-primary,
.btn-secondary{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.btn-primary{
  background: var(--fire);
  color: #000;
  border: 1px solid rgba(0,0,0,0.25);
  box-shadow: 0 14px 32px rgba(0,0,0,0.35);
}

.btn-primary:hover{ background: var(--fire-dark); }

.btn-secondary{
  background: rgba(0,0,0,0.25);
  color: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.30);
}

.btn-secondary:hover{
  border-color: var(--fire);
  color: var(--fire);
}

.hero-trust{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 10px;
}

.hero-trust div{ text-align: center; }

.hero-trust strong{
  display: block;
  font-size: 24px;
  color: var(--fire);
  text-shadow: 0 10px 26px rgba(0,0,0,0.75);
}

.hero-trust span{
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  text-shadow: 0 10px 26px rgba(0,0,0,0.75);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px){
  /* desktop menu znika, wchodzi kwadrat */
  .menu{ display: none; }
  .mnav-btn{ display: inline-flex; }

  .topbar{
    background: rgba(0,0,0,0.55);
  }

  .topbar-inner{
    padding: 12px 14px;
  }

  /* HERO na telefonie: tło NIE skaluje się, może być delikatnie rozmyte */
  .hero-stage{
    width: 100vw;
    max-height: none;
    height: calc(100vh - 64px);
    aspect-ratio: auto;
  }

  .hero-bg{
    /* najważniejsze: brak skalowania */
    object-fit: none;
    object-position: center;

    /* delikatny blur */
    filter: blur(2px);
    opacity: 0.95;
  }

  /* tekst niżej, żeby nie wchodził w belkę */
  .hero-content{
    padding: 70px 16px 40px;
  }

  .hero-card{
    margin-top: 0;
  }

  /* przyciski pełną szerokość */
  .btn-primary, .btn-secondary{
    width: 100%;
    max-width: 360px;
  }

  .hero-trust{
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
