:root{
  --bg: #0b0f14;
  --card:#111826;
  --card2:#0f1520;
  --text:#e8eef7;
  --muted:#a8b3c7;
  --line: rgba(255,255,255,.10);
  --accent:#d6b15e;     /* złoto “premium” */
  --accent2:#7dd3fc;    /* delikatny kontrast */
  --shadow: 0 16px 40px rgba(0,0,0,.35);
  --radius: 18px;
  --radius2: 26px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 450px at 15% 10%, rgba(214,177,94,.18), transparent 55%),
    radial-gradient(900px 450px at 90% 30%, rgba(125,211,252,.10), transparent 55%),
    var(--bg);
  line-height:1.55;
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.9}
.container{width:min(1120px, 92vw); margin:0 auto}
.skip{
  position:absolute; left:-999px; top:auto;
  width:1px;height:1px; overflow:hidden;
}
.skip:focus{left:16px; top:16px; width:auto;height:auto; padding:10px 12px; background:#fff; color:#000; border-radius:10px}

.header{
  position:sticky; top:0; z-index:50;
  background: rgba(11,15,20,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header__row{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{display:flex; gap:12px; align-items:center}
.brand__logo{width:46px; height:46px}
.brand__text small{display:block; color:var(--muted); font-size:12px; margin-top:2px}

.nav{display:flex; align-items:center; gap:14px}
.nav__toggle{
  display:none;
  border:1px solid var(--line);
  background:transparent;
  color:var(--text);
  padding:10px 12px;
  border-radius:12px;
}
.nav__menu{display:flex; align-items:center; gap:18px}
.nav__menu a{color:var(--muted); font-weight:600}
.nav__menu a:hover{color:var(--text)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  background: linear-gradient(180deg, rgba(214,177,94,1), rgba(185,144,60,1));
  color:#141414;
  font-weight:800;
  border:0;
  box-shadow: 0 10px 28px rgba(214,177,94,.22);
}
.btn--ghost{
  background:transparent;
  color:var(--text);
  border:1px solid var(--line);
  box-shadow:none;
}
.btn--small{padding:10px 12px; border-radius:12px}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.brand__logo{
  height: 46px;
  width: auto;
  max-width: 220px;
  object-fit: contain;

  /* poprawa czytelności */
  filter:
    brightness(1.25)
    contrast(1.1)
    drop-shadow(0 0 6px rgba(0,0,0,.45));
}

.brand__text{
  min-width:0;
}

.brand__text strong,
.brand__text small{
  white-space:nowrap;
}

.hero{padding:56px 0 28px}
.hero__grid{
  display:grid; gap:26px;
  grid-template-columns: 1.15fr .85fr;
  align-items:stretch;
}
.badge{
  display:inline-flex; gap:8px; align-items:center;
  padding:8px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  background: rgba(255,255,255,.04);
  color:var(--muted);
  font-weight:600;
  font-size:13px;
}
h1{font-size: clamp(30px, 4vw, 48px); margin:14px 0 12px; letter-spacing:-.02em}
.accent{color:var(--accent)}
.lead{color:var(--muted); font-size: clamp(16px, 1.6vw, 18px); max-width:58ch}

.hero__cta{display:flex; gap:12px; margin:18px 0 12px; flex-wrap:wrap}
.ticks{margin:14px 0 0; padding-left:18px; color:var(--muted)}
.ticks li{margin:6px 0}

.hero__media{
  position:relative;
  border:1px solid var(--line);
  border-radius: var(--radius2);
  overflow:hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
}
.hero__img{
  height:100%;
  min-height: 360px;
  background-size:cover;
  background-position:center;
  filter: contrast(1.05) saturate(1.05);
  transform: scale(1.02);
}
.hero__card{
  position:absolute; left:14px; right:14px; bottom:14px;
  border:1px solid var(--line);
  background: rgba(11,15,20,.70);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding:12px 14px;
}
.muted{color:var(--muted)}
.small{font-size:12px}

.strip{
  padding:14px 0 18px;
}
.stats{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.stat{
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:14px;
  background: rgba(255,255,255,.03);
}
.stat__num{font-size:24px; font-weight:900}
.stat__label{color:var(--muted); margin-top:4px; font-weight:600; font-size:13px}

.section{padding:54px 0}
.section--alt{background: rgba(255,255,255,.02); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
.section__head{display:grid; gap:8px; margin-bottom:18px}
h2{font-size: clamp(24px, 2.8vw, 34px); margin:0; letter-spacing:-.02em}

.cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.card{
  border:1px solid var(--line);
  border-radius: var(--radius2);
  padding:16px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  box-shadow: 0 10px 26px rgba(0,0,0,.18);
}
.card h3{margin:2px 0 8px}
.card p{color:var(--muted); margin:0 0 10px}
.mini{margin:0; padding-left:18px; color:var(--muted)}
.mini li{margin:6px 0}

.callout{
  margin-top:16px;
  display:flex; align-items:center; justify-content:space-between;
  gap:16px;
  padding:16px;
  border:1px solid var(--line);
  border-radius: var(--radius2);
  background: rgba(214,177,94,.06);
}

.gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.shot{
  margin:0;
  height:220px;
  border-radius: var(--radius2);
  border:1px solid var(--line);
  overflow:hidden;
  background-size:cover;
  background-position:center;
  position:relative;
  box-shadow: var(--shadow);
}
.shot figcaption{
  position:absolute; left:10px; right:10px; bottom:10px;
  padding:10px 12px;
  border-radius: 14px;
  background: rgba(11,15,20,.68);
  border:1px solid var(--line);
  color:var(--text);
  font-weight:700;
  font-size:13px;
}

.steps{
  list-style:none;
  padding:0; margin:0;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.steps li{
  border:1px solid var(--line);
  border-radius: var(--radius2);
  padding:16px;
  background: rgba(255,255,255,.03);
}
.steps h3{margin:0 0 8px}
.steps p{margin:0; color:var(--muted)}

.quotes{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.quote{
  margin:0;
  border:1px solid var(--line);
  border-radius: var(--radius2);
  padding:16px;
  background: rgba(255,255,255,.03);
}
.quote p{margin:0 0 10px}
.quote footer{color:var(--muted); font-weight:700; font-size:13px}

.faq{
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:12px 14px;
  margin:10px 0;
  background: rgba(255,255,255,.02);
}
.faq summary{cursor:pointer; font-weight:800}
.faq p{margin:10px 0 0; color:var(--muted)}

.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:start;
}
.contact__box{
  margin-top:14px;
  border:1px solid var(--line);
  border-radius: var(--radius2);
  padding:16px;
  background: rgba(255,255,255,.03);
}
.form{
  border:1px solid var(--line);
  border-radius: var(--radius2);
  padding:16px;
  background: rgba(255,255,255,.03);
}
label{display:grid; gap:8px; margin-bottom:12px; font-weight:700}
input, textarea{
  width:100%;
  border-radius: 14px;
  padding:12px 12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(11,15,20,.55);
  color:var(--text);
  outline:none;
}
input:focus, textarea:focus{border-color: rgba(214,177,94,.55)}
.consent{display:flex; gap:10px; align-items:flex-start; font-weight:600; color:var(--muted)}
.consent input{width:18px; height:18px; margin-top:2px}

.footer{
  padding:24px 0;
  border-top:1px solid var(--line);
}
.footer__row{
  display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap;
  color:var(--muted);
}

.hp{ position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden; }

/* RESPONSIVE */
@media (max-width: 980px){
  .hero__grid{grid-template-columns:1fr}
  .stats{grid-template-columns: repeat(2, 1fr)}
  .cards{grid-template-columns: repeat(2, 1fr)}
  .gallery{grid-template-columns: repeat(2, 1fr)}
  .steps{grid-template-columns: repeat(2, 1fr)}
  .quotes{grid-template-columns: 1fr}
  .contact{grid-template-columns: 1fr}
  .nav__toggle{display:inline-flex}
  .nav__menu{
    display:none;
    position:absolute;
    right:4vw; top:64px;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
    padding:12px;
    border:1px solid var(--line);
    border-radius: 16px;
    background: rgba(11,15,20,.90);
    backdrop-filter: blur(10px);
    min-width: 220px;
  }
  .nav__menu.is-open{display:flex}
}
