 /* Bracia Blues w PRL — minimalny, czytelny styl */
:root{
  --bg:#0c0b08;
  --paper:#fff7e1;
  --ink:#1d1c1a;
  --brand:#0b4d66;
  --brand-ink:#08394d;
  --accent:#e09c2b;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: 'Roboto', system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  line-height:1.6;
  color:var(--ink);
  background:var(--paper);
}
h1,h2,h3{font-family:'Montserrat', Arial, sans-serif; line-height:1.2; color:var(--brand-ink)}
h1{font-size:clamp(2rem, 4vw, 3rem); margin:0 0 0.5rem}
h2{font-size:clamp(1.5rem, 2.5vw, 2rem); margin:0 0 0.75rem}
h3{font-size:1.1rem; margin:0 0 0.5rem}

.container{max-width:1100px; margin:0 auto; padding:0 1rem}
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,247,225,.9);
  border-bottom:1px solid #e9ddbd;
  backdrop-filter:saturate(1.2) blur(6px);
}
.header-inner{display:flex; align-items:center; justify-content:space-between; padding:.75rem 1rem}
.brand{display:flex; align-items:center; gap:.6rem; text-decoration:none}
.brand-title{font-weight:700; color:var(--brand-ink); letter-spacing:.3px}

.nav-toggle{
  display:none;
  background:transparent; border:1px solid #d5c597; border-radius:10px;
  padding:.4rem .7rem; font-weight:600; cursor:pointer;
}
.menu{display:flex; list-style:none; margin:0; padding:0; gap:1rem}
.menu a{color:var(--ink); text-decoration:none; font-weight:500}
.menu a:hover{color:var(--brand-ink)}

@media (max-width: 800px){
  .nav-toggle{display:inline-block}
  .menu{display:none; flex-direction:column; gap:.5rem; padding:.75rem 0}
  .menu.open{display:flex}
}

.hero{
  position:relative;
  min-height:62vh;
  display:grid; place-items:center;
  text-align:center;
  color:var(--paper);
}
.hero-bg{
  position:absolute; inset:0;
  background: url('../img/hero.jpg') center/cover no-repeat, var(--brand);
  filter: saturate(0.9) contrast(1.05);
}
.hero-inner{position:relative; z-index:1; padding:4rem 1rem; text-shadow:0 2px 18px rgba(0,0,0,.35)}
.hero .lead{max-width:850px; margin:0 auto 1.2rem; font-size:1.05rem}
.cta{display:flex; gap:.8rem; justify-content:center; flex-wrap:wrap}
.btn{
  display:inline-block; padding:.75rem 1.1rem; border-radius:999px; text-decoration:none; font-weight:700;
  border:2px solid transparent;
}
.btn.primary{background:var(--accent); color:#2d1e00}
.btn.primary:hover{filter:brightness(1.05)}
.btn.ghost{background:transparent; color:#fff; border-color:rgba(255,255,255,.8)}
.btn.ghost:hover{background:rgba(255,255,255,.1)}

.section{padding:3rem 0 2.5rem}
.section.alt{background:#fff3cf}
.bullets{margin:0; padding-left:1.1rem}
.bullets li{margin:.35rem 0}

.cards{display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:1rem; margin-top:1rem}
.card{
  text-decoration:none; color:inherit;
  border:1px solid #eadfbf; border-radius:16px; background:#fffaf0;
  transition:transform .15s ease, box-shadow .15s ease;
}
.card:hover{transform:translateY(-3px); box-shadow:0 8px 20px rgba(0,0,0,.08)}
.card-body{padding:1rem}
.pill{
  display:inline-block; margin-top:.25rem; font-weight:700;
  background:var(--brand); color:#fff; padding:.3rem .6rem; border-radius:999px; font-size:.8rem
}

.site-footer{border-top:1px solid #e9ddbd; background:#fff7e1}
.footer-inner{padding:1rem; text-align:center; font-size:.9rem}


/* Responsive video embed */
.video-wrap{
  position:relative;
  width:100%;
  max-width:960px;
  margin:1rem auto 1.5rem;
  aspect-ratio:16/9;
  background:#000;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 8px 20px rgba(0,0,0,.08);
  border:1px solid #eadfbf;
}
.video-wrap .video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}