    :root{
      --yellow:#ffcc00;
      --black:#0b0b0b;
      --dark:#111;
      --muted:#b5b5b5;
      --card:rgba(255,255,255,0.05);
      --border:rgba(255,255,255,0.08);
      --shadow:0 12px 35px rgba(0,0,0,.55);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      background: linear-gradient(180deg,#070707 0%, #101010 100%);
      color:#fff;
      line-height:1.6;
    }
    a{color:inherit;text-decoration:none}
    .container{max-width:1120px;margin:0 auto;padding:0 18px}

    /* TOP BAR */
    .topbar{
      background:#000;
      border-bottom:1px solid rgba(255,255,255,0.06);
      position:sticky; top:0; z-index:50;
    }
    .topbar-inner{
      display:flex; align-items:center; justify-content:space-between;
      gap:14px; padding:10px 0;
    }
    .brand{
      display:flex; align-items:center; gap:12px;
      font-weight:800; letter-spacing:.6px;
    }
    .brand img{height:66px;width:auto;display:block}
    nav{
      display:flex; gap:14px; flex-wrap:wrap; align-items:center;
      color:var(--muted); font-weight:600; font-size:.95rem;
    }
    nav a{padding:6px 8px;border-radius:8px}
    nav a:hover{background:rgba(255,255,255,0.06);color:#fff}

    .cta{
      display:inline-flex; align-items:center; justify-content:center;
      background:var(--yellow); color:#000;
      padding:10px 14px; border-radius:10px;
      font-weight:900; box-shadow:0 10px 25px rgba(255,204,0,.18);
      white-space:nowrap;
    }

    /* HERO */
    header.hero{
      padding:34px 0 14px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:26px;
      align-items:center;
    }
    .kicker{
      display:inline-block;
      background:rgba(255,204,0,0.12);
      border:1px solid rgba(255,204,0,0.22);
      color:var(--yellow);
      padding:6px 10px;
      border-radius:999px;
      font-weight:800;
      font-size:.92rem;
      letter-spacing:.4px;
    }
    h1{
      margin:10px 0 10px;
      font-size:2.15rem;
      line-height:1.15;
      letter-spacing:.4px;
    }
    .lead{
      color:var(--muted);
      margin:0 0 16px;
      max-width:66ch;
    }
    .hero-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
    .ghost{
      display:inline-flex; align-items:center; justify-content:center;
      padding:10px 14px; border-radius:10px;
      border:1px solid rgba(255,255,255,0.14);
      color:#fff; font-weight:800;
      background:rgba(255,255,255,0.03);
    }
    .badges{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}
    .badge{
      background:rgba(0,0,0,0.35);
      border:1px solid rgba(255,255,255,0.06);
      padding:8px 10px;
      border-radius:10px;
      color:var(--yellow);
      font-weight:800;
      font-size:.92rem;
    }

    .card{
      background:linear-gradient(180deg,rgba(255,255,255,0.06),rgba(255,255,255,0.03));
      border:1px solid var(--border);
      border-radius:14px;
      box-shadow:var(--shadow);
    }
    .hero-card{padding:18px}
    .car{
      width:100%;
      height:auto;
      display:block;
      border-radius:14px;
      border:1px solid rgba(255,255,255,0.06);
      box-shadow:var(--shadow);
    }

    /* SECTIONS */
    main{padding:16px 0 34px}
    section{margin-top:18px}
    .section-title{
      margin:0 0 10px;
      font-size:1.35rem;
      letter-spacing:.2px;
    }

    .grid{
      display:grid;
      grid-template-columns: 1fr 360px;
      gap:22px;
      align-items:start;
    }

    .box{padding:18px}
    .services ul{
      list-style:none; padding:0; margin:0;
      display:grid; grid-template-columns:1fr 1fr;
      gap:12px;
    }
    .services li{
      background:rgba(0,0,0,0.35);
      border:1px solid rgba(255,255,255,0.06);
      padding:12px;
      border-radius:12px;
    }
    .services li strong{color:var(--yellow)}
    .note{color:var(--muted);margin-top:10px}

    .price-line{
      display:flex; flex-wrap:wrap; gap:10px;
      margin:10px 0 0;
    }
    .pill{
      background:rgba(255,204,0,0.12);
      border:1px solid rgba(255,204,0,0.22);
      color:var(--yellow);
      padding:8px 10px;
      border-radius:999px;
      font-weight:900;
    }
    .small{color:var(--muted);font-size:.95rem}

    .contact strong{color:var(--yellow)}
    .contact a{color:var(--yellow);font-weight:900}
    .hr{height:1px;background:rgba(255,255,255,0.08);border:0;margin:12px 0}

    .why ul{margin:0;padding-left:18px;color:var(--muted)}
    .why li{margin:6px 0}
    .opinie p{margin:10px 0;color:var(--muted)}

    .gallery-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:10px;
      margin-top:10px;
    }
    .gallery-grid img{
      width:100%; height:auto; border-radius:12px;
      border:1px solid rgba(255,255,255,0.06);
    }

    footer{
      background:#050505;
      border-top:1px solid rgba(255,255,255,0.06);
      padding:18px 0;
      color:var(--muted);
      text-align:center;
    }
	
	footer a{
	  text-decoration: underline;
	  text-underline-offset: 3px;
	  text-decoration-thickness: 2px;
	}
	
	footer a:hover{
	  text-decoration-thickness: 3px;
	}
	
	a:focus-visible{
	  outline: 3px solid var(--yellow);
	  outline-offset: 3px;
	  border-radius: 6px;
	}

    /* Mobile call bar */
    .callbar{
      display:none;
      position:fixed; left:0; right:0; bottom:0;
      background:#000;
      border-top:1px solid rgba(255,255,255,0.08);
      padding:10px 12px;
      z-index:60;
    }
    .callbar a{
      display:flex; align-items:center; justify-content:center;
      width:100%;
      background:var(--yellow); color:#000;
      font-weight:1000;
      border-radius:12px;
      padding:12px 14px;
    }

    @media(max-width:980px){
      .hero-grid{grid-template-columns:1fr}
      .grid{grid-template-columns:1fr}
      nav{display:none}
    }
    @media(max-width:640px){
      h1{font-size:1.85rem}
      .services ul{grid-template-columns:1fr}
      .gallery-grid{grid-template-columns:repeat(2,1fr)}
      .callbar{display:block}
      main{padding-bottom:74px} /* miejsce na callbar */
    }
	/* FIX: przycisk w sekcji Godziny */
	.cta-godziny {
	  display:block;
	  width: 100%;
	  color: #000 !important;
	  background: var(--yellow);
	  font-weight: 900;
}