  :root{
    --bg-dark:#1a1b1d;
    --bg-darker:#111213;
    --panel:#252729;
    --panel-2:#2e3033;
    --line-dark:#3b3d40;
    --bg-light:#eeede8;
    --bg-light-2:#e4e2da;
    --ink:#1a1b1d;
    --muted:#6d6f74;
    --muted-light:#8d8f93;
    --amber:#e8a33b;
    --amber-dim:#7a5c2a;
    --teal:#2f9e93;
    --red:#c1523a;
    --paper-line:#cfcdc4;

    --display: 'Oswald', sans-serif;
    --body: 'Work Sans', sans-serif;
    --mono: 'IBM Plex Mono', monospace;
  }

  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    font-family:var(--body);
    background:var(--bg-light);
    color:var(--ink);
    line-height:1.5;
    -webkit-font-smoothing:antialiased;
  }
  img,svg{display:block; max-width:100%;}
  a{color:inherit;}
  button{font-family:inherit; cursor:pointer;}
  .wrap{max-width:1120px; margin:0 auto; padding:0 24px;}

  ::selection{background:var(--amber); color:var(--bg-darker);}
  :focus-visible{outline:2px solid var(--amber); outline-offset:3px;}

  @media (prefers-reduced-motion: reduce){
    *{animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important;}
  }

  /* ---------- reveal ---------- */
  .reveal{opacity:0; transform:translateY(14px); transition:opacity .6s ease, transform .6s ease;}
  .reveal.in{opacity:1; transform:none;}

  /* ---------- header ---------- */
  header{
    position:sticky; top:0; z-index:50;
    background:rgba(26,27,29,0.92);
    backdrop-filter:blur(6px);
    border-bottom:1px solid var(--line-dark);
    color:#efeee9;
  }
  .headbar{
    display:flex; align-items:center; justify-content:flex-start;
    padding:14px 0;
    gap:16px;
  }
  .brand{
    display:flex; align-items:center; gap:10px;
    font-family:var(--display);
    font-size:1.15rem;
    letter-spacing:.02em;
    font-weight:600;
    color:#f4f3ee;
    text-decoration:none;
    transition:opacity .15s ease;
  }
  .brand:hover{opacity:.85;}
  .brand .mark{
    width:34px; height:34px; flex:none;
  }
  .status-chip{
    display:flex; align-items:center; gap:7px;
    font-family:var(--mono);
    font-size:.72rem;
    letter-spacing:.06em;
    padding:5px 10px;
    border:1px solid var(--line-dark);
    border-radius:3px;
    color:var(--muted-light);
    text-transform:uppercase;
  }
  .status-dot{width:7px; height:7px; border-radius:50%; background:var(--muted-light); flex:none;}
  .status-chip.open{color:#bfe6c9; border-color:#3a5c46;}
  .status-chip.open .status-dot{background:#5fbf7a; box-shadow:0 0 6px #5fbf7a;}
  .status-chip.closed{color:#e7b3a6; border-color:#5c3a34;}
  .status-chip.closed .status-dot{background:var(--red);}

  .head-actions{display:flex; align-items:center; gap:10px;}
  @media(max-width:979px){ .head-actions{margin-left:auto;} }
  .btn.mobile-call{display:none;}
  @media(max-width:979px){ .btn.mobile-call{display:inline-flex;} }

  .hamburger{
    display:none; flex-direction:column; justify-content:center; gap:5px;
    width:32px; height:32px; background:none; border:none; padding:0; cursor:pointer; flex:none;
  }
  @media(max-width:979px){ .hamburger{display:flex;} }
  .hamburger span{
    display:block; width:100%; height:2px; background:#efeee9;
    transition:transform .25s ease, opacity .2s ease;
  }
  .hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
  .hamburger.open span:nth-child(2){opacity:0;}
  .hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

  .mobile-nav{
    display:flex; flex-direction:column;
    max-height:0; overflow:hidden;
    background:var(--bg-dark); border-top:0 solid var(--line-dark);
    transition:max-height .3s ease;
  }
  .mobile-nav.open{max-height:220px; border-top-width:1px;}
  .mobile-nav a{
    padding:16px 24px; color:#efeee9; text-decoration:none;
    font-family:var(--body); font-size:.95rem; font-weight:500;
    border-bottom:1px solid var(--line-dark);
  }
  .mobile-nav a:hover{color:var(--amber);}
  @media(min-width:980px){ .mobile-nav{display:none !important;} }
  .tel-link{
    display:none;
    font-family:var(--mono);
    font-size:.85rem;
    color:#efeee9;
    text-decoration:none;
    border-bottom:1px solid var(--amber-dim);
    padding-bottom:1px;
  }
  @media(min-width:640px){ .tel-link{display:inline-block;} }

  .btn{
    display:inline-flex; align-items:center; gap:8px;
    font-family:var(--body); font-weight:600; font-size:.88rem;
    padding:10px 18px;
    border-radius:3px;
    border:1px solid transparent;
    text-decoration:none;
    transition:transform .15s ease, background .15s ease, border-color .15s ease;
  }
  .btn:hover{transform:translateY(-1px);}
  .btn-amber{background:var(--amber); color:#20180a;}
  .btn-amber:hover{background:#f0b155;}
  .btn-outline{border-color:var(--line-dark); color:#efeee9;}
  .btn-outline:hover{border-color:var(--amber); color:var(--amber);}
  .btn-dark{border-color:var(--paper-line); color:var(--ink);}
  .btn-dark:hover{border-color:var(--ink);}

  /* ---------- hero ---------- */
  .hero{
    background:
      radial-gradient(ellipse 900px 500px at 78% -10%, rgba(232,163,59,0.10), transparent 60%),
      linear-gradient(180deg, var(--bg-dark), var(--bg-darker));
    color:#efeee9;
    padding:76px 0 64px;
    position:relative;
    overflow:hidden;
  }
  .hero::after{
    content:"";
    position:absolute; inset:0;
    background-image:repeating-linear-gradient(115deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 90px);
    pointer-events:none;
  }
  .hero-grid{
    display:grid; grid-template-columns:1fr; gap:44px;
    position:relative;
  }
  @media(min-width:900px){ .hero-grid{grid-template-columns:1.1fr .9fr; align-items:center;} }

  .eyebrow{
    font-family:var(--mono); font-size:.75rem; letter-spacing:.14em;
    text-transform:uppercase; color:var(--muted-light);
    display:flex; align-items:center; gap:10px; margin-bottom:18px;
  }
  .eyebrow::before{content:""; width:22px; height:1px; background:var(--amber-dim);}

  h1{
    font-family:var(--display);
    font-weight:600;
    font-size:clamp(2.3rem, 5.2vw, 3.6rem);
    line-height:1.06;
    letter-spacing:-0.005em;
    color:#f6f5f0;
  }
  h1 em{
    font-style:normal;
    color:var(--amber);
  }
  .hero p.lead{
    margin-top:20px;
    font-size:1.05rem;
    color:#c7c6c0;
    max-width:52ch;
  }
  .hero-actions{display:flex; flex-wrap:wrap; gap:12px; margin-top:30px;}

  .hero-meta{
    display:flex; gap:22px; margin-top:36px; flex-wrap:wrap;
  }
  .hero-meta div{font-family:var(--mono); font-size:.72rem; color:var(--muted-light); letter-spacing:.04em;}
  .hero-meta strong{display:block; color:#efeee9; font-family:var(--body); font-size:.95rem; font-weight:600; margin-bottom:2px;}

  /* dashboard panel */
  .dash{
    background:var(--panel);
    border:1px solid var(--line-dark);
    border-radius:6px;
    padding:26px;
  }
  .dash-head{
    display:flex; justify-content:space-between; align-items:baseline;
    font-family:var(--mono); font-size:.7rem; letter-spacing:.08em; text-transform:uppercase;
    color:var(--muted-light); margin-bottom:18px; padding-bottom:14px;
    border-bottom:1px solid var(--line-dark);
  }
  .lights{
    display:grid; grid-template-columns:repeat(4, 1fr); gap:10px;
  }
  .light{
    aspect-ratio:1; border-radius:5px; background:var(--panel-2);
    border:1px solid var(--line-dark);
    display:flex; align-items:center; justify-content:center;
    position:relative;
  }
  .light svg{width:42%; height:42%;}
  .light .lbl{
    position:absolute; bottom:5px; left:0; right:0; text-align:center;
    font-family:var(--mono); font-size:.55rem; color:var(--muted-light); letter-spacing:.03em;
  }
  .light.off svg{stroke:#5a5c60; fill:#5a5c60;}
  .light.lit{
    background:#332508; border-color:var(--amber-dim);
    animation:pulse 2.2s ease-in-out infinite;
  }
  .light.lit svg{stroke:var(--amber); fill:var(--amber);}
  .light.lit .lbl{color:#e0c48f;}
  @keyframes pulse{
    0%,100%{box-shadow:0 0 0 rgba(232,163,59,0);}
    50%{box-shadow:0 0 18px rgba(232,163,59,0.45);}
  }
  .dash-foot{
    margin-top:18px; padding-top:14px; border-top:1px solid var(--line-dark);
    font-family:var(--mono); font-size:.72rem; color:var(--muted-light); line-height:1.6;
  }
  .dash-foot b{color:#e0c48f; font-weight:500;}

  /* ---------- marquee ---------- */
  .marquee-band{
    background:var(--bg-darker); border-top:1px solid var(--line-dark); border-bottom:1px solid var(--line-dark);
    overflow:hidden; padding:13px 0;
  }
  .marquee-track{
    display:flex; gap:0; width:max-content;
    animation:scroll 32s linear infinite;
  }
  @media(prefers-reduced-motion: reduce){ .marquee-track{animation:none;} }
  .marquee-track span{
    font-family:var(--mono); font-size:.78rem; letter-spacing:.05em;
    color:var(--muted-light); padding:0 22px; white-space:nowrap;
    border-right:1px solid var(--line-dark);
  }
  @keyframes scroll{ from{transform:translateX(0);} to{transform:translateX(-50%);} }

  /* ---------- brands ---------- */
  .brands{background:var(--bg-light-2);}
  .brand-grid{display:flex; flex-wrap:wrap; gap:10px; margin-top:8px;}
  .brand-chip{
    font-family:var(--mono); font-size:.8rem; letter-spacing:.02em;
    padding:9px 16px; border:1px solid var(--paper-line); border-radius:3px;
    background:#fbfaf6; color:var(--ink);
    transition:border-color .15s ease, transform .15s ease;
  }
  .brand-chip:hover{border-color:var(--teal); transform:translateY(-1px);}
  .brand-cta{
    display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:18px;
    margin-top:36px; padding-top:26px; border-top:1px solid var(--paper-line);
  }
  .brand-cta p{color:var(--muted); font-size:.94rem; max-width:46ch;}

  /* ---------- section shell ---------- */
  section{padding:88px 0;}
  .section-head{max-width:60ch; margin-bottom:48px;}
  .section-tag{
    font-family:var(--mono); font-size:.72rem; letter-spacing:.12em; text-transform:uppercase;
    color:var(--teal); margin-bottom:12px; display:block;
  }
  h2{
    font-family:var(--display); font-weight:600;
    font-size:clamp(1.7rem, 3vw, 2.3rem);
    letter-spacing:-.005em;
  }
  .section-head p{margin-top:14px; color:var(--muted); font-size:1rem; max-width:56ch;}

  /* ---------- about / vehicle types ---------- */
  .about{background:var(--bg-light);}
  .about-body{display:grid; grid-template-columns:1fr; gap:40px;}
  @media(min-width:860px){ .about-body{grid-template-columns:1.3fr .7fr;} }
  .about-copy p{color:#3a3b3d; margin-bottom:16px; font-size:1.02rem; max-width:66ch;}
  .about-copy strong{color:var(--ink); font-weight:600;}
  .about-copy h3{
    font-family:var(--display); font-weight:600; font-size:1.18rem;
    color:var(--ink); letter-spacing:-.005em;
    margin:34px 0 12px;
  }
  .about-copy h3:first-child{margin-top:0;}
  .about .plate{position:sticky; top:88px;}
  @media(max-width:859px){ .about .plate{position:static;} }

  .plate{
    background:var(--bg-dark); color:#efeee9; border-radius:6px; padding:24px;
    border:1px solid var(--line-dark);
  }
  .plate-title{font-family:var(--mono); font-size:.7rem; letter-spacing:.1em; text-transform:uppercase; color:var(--muted-light); margin-bottom:14px;}
  .plate-row{display:flex; justify-content:space-between; padding:9px 0; border-top:1px solid var(--line-dark); font-size:.92rem;}
  .plate-row:first-of-type{border-top:none;}
  .plate-row span:last-child{font-family:var(--mono); color:var(--amber); font-size:.85rem;}

  /* ---------- why us (ticket card) ---------- */
  .whyus{background:var(--bg-dark); color:#efeee9;}
  .whyus .section-head p{color:#a9a8a2;}
  .ticket-card{
    position:relative;
    background:var(--panel); border:1px solid var(--line-dark); border-radius:8px;
    max-width:720px; margin:0 auto; padding:44px 46px 34px;
  }
  .ticket-stamp{
    position:absolute; top:-20px; right:34px;
    width:64px; height:64px; border-radius:50%;
    border:2px solid var(--amber); color:var(--amber);
    background:rgba(232,163,59,0.07);
    box-shadow:inset 0 0 0 3px rgba(232,163,59,0.14);
    display:flex; align-items:center; justify-content:center;
    font-family:var(--display); font-weight:600; font-size:1.05rem; letter-spacing:.02em;
    transform:rotate(-8deg);
  }
  .ticket-list{display:flex; flex-direction:column; gap:22px;}
  .ticket-item{display:flex; gap:14px; align-items:flex-start;}
  .ticket-check{
    flex:none; width:24px; height:24px; border-radius:50%; margin-top:2px;
    background:rgba(47,158,147,0.15); border:1px solid #2b4a47;
    display:flex; align-items:center; justify-content:center;
  }
  .ticket-check svg{width:12px; height:12px; stroke:var(--teal);}
  .ticket-item h3{font-family:var(--body); font-weight:600; font-size:1rem; color:#f4f3ee; margin-bottom:4px;}
  .ticket-item p{font-size:.9rem; color:#a9a8a2; line-height:1.55;}
  .ticket-stub{
    position:relative; margin-top:30px; padding-top:24px;
    border-top:2px dashed var(--line-dark);
  }
  .ticket-stub::before, .ticket-stub::after{
    content:""; position:absolute; top:-13px; width:26px; height:26px; border-radius:50%;
    background:var(--bg-dark);
  }
  .ticket-stub::before{left:-46px;}
  .ticket-stub::after{right:-46px;}
  .ticket-stub p{font-size:.9rem; color:#c7c6c0; font-style:italic; line-height:1.65; margin:0;}
  .ticket-stub strong{color:#f4f3ee; font-style:normal;}
  @media(max-width:600px){
    .ticket-card{padding:40px 26px 30px;}
    .ticket-stub::before, .ticket-stub::after{display:none;}
  }

  /* ---------- services ---------- */
  .services{background:var(--bg-darker); color:#efeee9;}
  .services .section-head p{color:#a9a8a2;}

  .svc-featured{
    display:grid; grid-template-columns:repeat(3, 1fr); gap:20px;
    margin-bottom:52px;
  }
  @media(max-width:900px){ .svc-featured{grid-template-columns:1fr 1fr;} }
  @media(max-width:600px){ .svc-featured{grid-template-columns:1fr;} }
  .svc-photo-card{
    background:var(--panel); border:1px solid var(--line-dark); border-radius:8px;
    overflow:hidden; display:flex; flex-direction:column;
    transition:border-color .2s ease, transform .2s ease;
    text-decoration:none; color:inherit; cursor:pointer;
  }
  .svc-photo-card:hover{border-color:var(--teal); transform:translateY(-2px);}
  .svc-photo{aspect-ratio:4/3; position:relative; background:var(--bg-darker); overflow:hidden;}
  .svc-photo img{
    width:100%; height:100%; object-fit:cover; display:block;
    filter:grayscale(0.5) contrast(1.1) brightness(0.88) saturate(1.05);
    transition:transform .4s ease, filter .4s ease;
  }
  .svc-photo-card:hover .svc-photo img{transform:scale(1.04); filter:grayscale(0.3) contrast(1.12) brightness(0.92) saturate(1.15);}
  .svc-photo::after{
    content:""; position:absolute; inset:0; pointer-events:none;
    background:
      linear-gradient(180deg, rgba(17,18,19,0) 45%, rgba(17,18,19,0.6) 100%),
      linear-gradient(155deg, rgba(47,158,147,0.16), rgba(232,163,59,0.12));
    mix-blend-mode:multiply;
  }
  .svc-photo-body{padding:20px 22px 24px;}
  .svc-photo-body h3{font-family:var(--body); font-weight:600; font-size:1.02rem; color:#f4f3ee; margin-bottom:8px;}
  .svc-photo-body p{font-size:.87rem; color:#a9a8a2; line-height:1.55;}

  .svc-extra{padding-top:38px; border-top:1px solid var(--line-dark);}
  .svc-extra-label{
    font-family:var(--mono); font-size:.7rem; letter-spacing:.1em; text-transform:uppercase;
    color:var(--teal); margin-bottom:14px; display:block;
  }
  .svc-extra p{color:#c7c6c0; font-size:.98rem; line-height:1.75; max-width:82ch;}
  .svc-extra strong{color:#f4f3ee; font-weight:600;}

  /* ---------- coverage ---------- */
  .coverage{background:var(--bg-light-2);}
  .coverage-grid{display:grid; grid-template-columns:1fr; gap:40px;}
  @media(min-width:860px){ .coverage-grid{grid-template-columns:.9fr 1.1fr;} }
  .coverage-copy p{color:#3a3b3d; margin-bottom:14px;}
  .board{
    background:#fbfaf6; border:1px solid var(--paper-line); border-radius:6px; overflow:hidden;
  }
  .board-head{
    font-family:var(--mono); font-size:.68rem; letter-spacing:.1em; text-transform:uppercase;
    color:var(--muted); padding:14px 18px; border-bottom:1px solid var(--paper-line);
    display:flex; justify-content:space-between;
  }
  .board-row{
    display:flex; align-items:center; gap:16px;
    padding:13px 18px; border-bottom:1px solid var(--paper-line);
    font-size:.94rem;
    border-left:3px solid transparent;
    transition:background .15s ease;
  }
  .board-row:last-child{border-bottom:none;}
  .board-row:hover{background:rgba(0,0,0,0.02);}
  .board-town{
    font-family:var(--body); font-weight:600; color:var(--ink);
    flex:0 0 108px;
  }
  .km-bar{
    flex:1 1 auto; height:5px; min-width:40px;
    background:var(--paper-line); border-radius:3px; overflow:hidden;
  }
  .km-bar-fill{height:100%; border-radius:3px;}
  .board-row .km{
    font-family:var(--mono); font-size:.78rem; color:var(--muted);
    flex:0 0 52px; text-align:right;
  }

  /* distance tiers - color lives on the bar + row accent only, never on the town name */
  .tier-near{border-left-color:var(--amber);}
  .tier-near .km-bar-fill{background:var(--amber);}
  .tier-mid{border-left-color:var(--amber-dim);}
  .tier-mid .km-bar-fill{background:var(--amber-dim);}
  .tier-far{border-left-color:var(--teal);}
  .tier-far .km-bar-fill{background:var(--teal);}

  .board-legend{
    display:flex; gap:18px; flex-wrap:wrap;
    padding:13px 18px 16px; font-family:var(--mono); font-size:.7rem;
    letter-spacing:.03em; color:var(--muted);
  }
  .board-legend span{display:flex; align-items:center; gap:6px;}
  .dot{width:8px; height:8px; border-radius:50%; display:inline-block;}
  .dot-amber{background:var(--amber);}
  .dot-amber-dim{background:var(--amber-dim);}
  .dot-teal{background:var(--teal);}

  /* ---------- FAQ ---------- */
  .faq{background:var(--bg-light);}
  .faq-list{border-top:1px solid var(--paper-line); max-width:760px;}
  .faq-item{border-bottom:1px solid var(--paper-line);}
  .faq-q{
    width:100%; text-align:left; background:none; border:none;
    display:flex; justify-content:space-between; align-items:center; gap:16px;
    padding:20px 4px; font-family:var(--body); font-weight:600; font-size:1rem; color:var(--ink);
  }
  .faq-q .plus{
    font-family:var(--mono); font-size:1.1rem; color:var(--teal); flex:none;
    transition:transform .25s ease;
  }
  .faq-item.active .faq-q .plus{transform:rotate(45deg);}
  .faq-a{
    max-height:0; overflow:hidden; transition:max-height .3s ease;
  }
  .faq-a p{padding:0 4px 20px; color:var(--muted); font-size:.95rem; max-width:62ch;}

  /* ---------- testimonial carousel ---------- */
  .reviews-hero{
  background:var(--bg-light);
  padding:80px 0 60px;
}

.stars{
  display:flex;
  gap:2px;
}

.stars svg{
  width:14px;
  height:14px;
  fill:var(--amber);
}

.rev-source{
  font-family:var(--mono);
  font-size:.68rem;
  color:var(--muted-light);
}

.testi{
  display:flex;
  align-items:center;
  gap:14px;
}

.testi-viewport{
  flex:1;
  overflow:hidden;
  border-radius:8px;
}

.testi-track{
  display:flex;
  transition:transform .5s cubic-bezier(.4,0,.2,1);
}

.testi-card{
  flex:0 0 100%;
  box-sizing:border-box;
  padding:2px 4px;
}

.testi-card-inner{
  position:relative;
  background:var(--bg-dark);
  color:#efeee9;
  border:1px solid var(--line-dark);
  border-radius:8px;
  padding:40px 44px;
  max-width:640px;
  margin:0 auto;
}

@media(max-width:640px){

  /* usuwamy boczne marginesy wrappera tylko tutaj */
  .reviews-hero .wrap{
    padding-left:12px;
    padding-right:12px;
  }

  /* chowamy strzałki */
  .testi-btn{
    display:none;
  }

  /* pełna szerokość slidera */
  .testi{
    gap:0;
  }

  .testi-card{
    padding:2px 0;
  }

  .testi-card-inner{
    max-width:none;
    width:100%;
    margin:0;
    padding:28px 22px 24px;
    border-radius:6px;
  }
}
  .testi-viewport{flex:1; overflow:hidden;}
  .testi-track{display:flex; transition:transform .5s cubic-bezier(.4,0,.2,1);}
  .testi-card{flex:0 0 100%; box-sizing:border-box; padding:2px 4px;}
  .testi-card-inner{
    position:relative; background:var(--bg-dark); color:#efeee9;
    border:1px solid var(--line-dark); border-radius:8px;
    padding:40px 44px; max-width:640px; margin:0 auto;
  }
  .testi-card-inner::before{
    content:"“"; position:absolute; top:14px; left:22px;
    font-family:var(--display); font-size:3.4rem; color:var(--amber-dim); line-height:1;
    pointer-events:none;
  }
  .testi-top{display:flex; justify-content:space-between; align-items:center; margin-bottom:16px;}
  .testi-text{font-size:1.02rem; color:#e5e4de; line-height:1.6; margin-bottom:20px; position:relative;}
  .testi-foot{display:flex; align-items:baseline; border-top:1px solid var(--line-dark); padding-top:14px;}
  .testi-name{font-family:var(--body); font-weight:600; font-size:.9rem; color:#f4f3ee;}

  .testi-btn{
    flex:none; width:42px; height:42px; border-radius:50%;
    border:1px solid var(--paper-line); background:#fbfaf6; color:var(--ink);
    display:flex; align-items:center; justify-content:center;
    transition:border-color .15s ease, color .15s ease, transform .15s ease;
  }
  .testi-btn svg{width:18px; height:18px;}
  .testi-btn:hover{border-color:var(--teal); color:var(--teal); transform:translateY(-1px);}

  .testi-dots{display:flex; justify-content:center; gap:8px; margin-top:22px;}
  .testi-dot{
    width:8px; height:8px; border-radius:50%; border:none; padding:0;
    background:var(--paper-line); transition:background .2s ease, transform .2s ease;
  }
  .testi-dot.active{background:var(--teal); transform:scale(1.3);}

  .rating-line{
    display:flex; align-items:center; justify-content:center; gap:8px;
    margin-top:32px; font-size:.92rem; color:var(--muted); text-align:center; flex-wrap:wrap;
  }
  .rating-line strong{color:var(--ink);}

  /* ---------- footer ---------- */
  footer{background:var(--bg-dark); color:#c7c6c0; padding:56px 0 30px;}
  .foot-grid{display:grid; grid-template-columns:1fr; gap:36px;}
  @media(min-width:780px){ .foot-grid{grid-template-columns:1.2fr .8fr .8fr;} }
  .foot-brand{font-family:var(--display); font-size:1.3rem; color:#f4f3ee; margin-bottom:10px;}
  .foot-col h3{font-family:var(--mono); font-size:.7rem; letter-spacing:.1em; text-transform:uppercase; color:var(--muted-light); margin-bottom:14px;}
  .foot-col p, .foot-col a{display:block; font-size:.9rem; color:#c7c6c0; text-decoration:none; margin-bottom:8px;}
  .foot-col a:hover{color:var(--amber);}
  .foot-contact{
    display:flex !important; align-items:flex-start; gap:10px;
    font-size:.9rem; color:#c7c6c0; text-decoration:none; margin-bottom:12px;
  }
  a.foot-contact:hover{color:var(--amber);}
  .foot-icon{width:17px; height:17px; flex:none; margin-top:1px;}
  .foot-icon-amber{color:var(--amber);}
  .foot-icon-teal{color:var(--amber);}
  .hours-row{display:flex; justify-content:space-between; font-size:.88rem; padding:4px 0; font-family:var(--mono); color:#b3b2ac;}
  .foot-bottom{
    margin-top:44px; padding-top:22px; border-top:1px solid var(--line-dark);
    display:flex; flex-wrap:wrap; justify-content:space-between; gap:10px;
    font-size:.78rem; color:var(--muted-light);
  }

/* ---------- nav ---------- */
.main-nav{display:none; gap:26px; font-family:var(--body); font-size:.85rem; font-weight:500; margin-left:auto; margin-right:28px;}
.main-nav a{color:#c7c6c0; text-decoration:none; transition:color .15s ease;}
.main-nav a:hover{color:var(--amber);}
@media(min-width:980px){ .main-nav{display:flex; align-items:center;} }

/* ---------- subpage: breadcrumb + page hero ---------- */
.breadcrumb{
  font-family:var(--mono); font-size:.72rem; letter-spacing:.03em; color:var(--muted-light);
  display:flex; gap:8px; align-items:center; margin-bottom:18px;
}
.breadcrumb a{color:var(--muted-light); text-decoration:none; border-bottom:1px solid transparent;}
.breadcrumb a:hover{color:var(--amber); border-color:var(--amber);}
.breadcrumb span.sep{opacity:.5;}
.breadcrumb span.current{color:#efeee9;}

.page-hero{
  background:linear-gradient(180deg, var(--bg-dark), var(--bg-darker));
  color:#efeee9; padding:52px 0 60px;
}
.page-hero h1{
  font-family:var(--display); font-weight:600; font-size:clamp(2rem, 4.2vw, 2.8rem);
  letter-spacing:-.005em; color:#f6f5f0; margin:6px 0 14px;
}
.page-hero .breadcrumb a, .page-hero .breadcrumb span{color:var(--muted-light);}
.page-hero p.lead{color:#c7c6c0; font-size:1.02rem; max-width:62ch;}

/* ---------- service detail page ---------- */
.svc-detail{background:var(--bg-light); padding:64px 0;}
.svc-detail-grid{display:grid; grid-template-columns:1fr; gap:40px;}
@media(min-width:900px){ .svc-detail-grid{grid-template-columns:1.4fr .9fr;} }
.svc-detail-copy h2{font-family:var(--display); font-weight:600; font-size:1.4rem; margin:30px 0 12px; color:var(--ink);}
.svc-detail-copy h2:first-child{margin-top:0;}
.svc-detail-copy p{color:#3a3b3d; font-size:1rem; line-height:1.7; margin-bottom:14px; max-width:68ch;}
.svc-detail-copy ul{margin:0 0 20px; padding-left:0; list-style:none; display:flex; flex-direction:column; gap:10px;}
.svc-detail-copy ul li{
  display:flex; gap:10px; align-items:flex-start; color:#3a3b3d; font-size:.96rem; max-width:66ch;
}
.svc-detail-copy ul li::before{
  content:""; flex:none; width:7px; height:7px; border-radius:50%; background:var(--teal); margin-top:8px;
}
.svc-detail-photo{border-radius:8px; overflow:hidden; aspect-ratio:4/3; position:relative; border:1px solid var(--paper-line);}
.svc-detail-photo img{width:100%; height:100%; object-fit:cover; filter:grayscale(0.5) contrast(1.1) brightness(0.92) saturate(1.05);}
.svc-detail-photo::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(180deg, rgba(17,18,19,0) 55%, rgba(17,18,19,0.35) 100%),
    linear-gradient(155deg, rgba(47,158,147,0.14), rgba(232,163,59,0.10));
  mix-blend-mode:multiply;
}
.svc-detail-cta{
  margin-top:26px; padding:22px; background:var(--bg-dark); border-radius:8px; color:#efeee9;
}
.svc-detail-cta p{color:#c7c6c0; font-size:.92rem; margin-bottom:14px;}
.svc-related{margin-top:30px;}
.svc-related-title{font-family:var(--mono); font-size:.7rem; letter-spacing:.1em; text-transform:uppercase; color:var(--muted-light); margin-bottom:12px; display:block;}
.svc-related-list{display:flex; flex-direction:column; gap:8px;}
.svc-related-list a{
  display:flex; justify-content:space-between; align-items:center;
  padding:10px 0; border-bottom:1px solid var(--paper-line);
  color:var(--ink); text-decoration:none; font-size:.92rem; font-weight:500;
}
.svc-related-list a:hover{color:var(--teal);}
.svc-related-list a span{color:var(--muted-light); font-family:var(--mono); font-size:.8rem;}

/* ---------- gallery page ---------- */
.gallery-section{background:var(--bg-light); padding:64px 0 88px;}
.gallery-grid{display:grid; grid-template-columns:repeat(auto-fit, minmax(260px,1fr)); gap:20px;}
.gallery-slot{
  aspect-ratio:4/3; border-radius:8px; border:2px dashed var(--paper-line);
  background:var(--bg-light-2);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px;
  text-align:center; padding:20px; color:var(--muted);
}
.gallery-slot svg{width:34px; height:34px; stroke:var(--muted-light);}
.gallery-slot span{font-family:var(--mono); font-size:.72rem; letter-spacing:.03em; max-width:22ch;}
.gallery-note{
  margin-top:36px; padding:22px 26px; background:var(--bg-light-2); border-radius:8px;
  border:1px solid var(--paper-line); max-width:70ch;
}
.gallery-note p{color:var(--muted); font-size:.92rem; line-height:1.6;}
.gallery-note strong{color:var(--ink);}

/* ---------- contact page ---------- */
.contact-section{background:var(--bg-light); padding:64px 0 88px;}
.contact-grid{display:grid; grid-template-columns:1fr; gap:20px;}
@media(min-width:800px){ .contact-grid{grid-template-columns:repeat(3,1fr);} }
.contact-card{
  background:#fbfaf6; border:1px solid var(--paper-line); border-radius:8px; padding:26px;
}
.contact-card h3{font-family:var(--mono); font-size:.7rem; letter-spacing:.1em; text-transform:uppercase; color:var(--teal); margin-bottom:12px;}
.contact-card p, .contact-card a{color:var(--ink); font-size:1rem; text-decoration:none; line-height:1.6;}
.contact-card a:hover{color:var(--teal);}
.contact-map-cta{
  margin-top:32px; padding:30px; background:var(--bg-dark); color:#efeee9; border-radius:8px;
  display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:20px;
}
.contact-map-cta p{max-width:44ch; color:#c7c6c0; font-size:.95rem;}
.contact-hours-table{margin-top:32px; max-width:420px;}
.contact-hours-table .hours-row{
  display:flex; justify-content:space-between; padding:10px 0; border-top:1px solid var(--paper-line);
  font-family:var(--mono); font-size:.88rem; color:var(--ink);
}
.contact-hours-table .hours-row:first-child{border-top:none;}

/* ---------- usługi list page ---------- */
.uslugi-list-section{background:var(--bg-light); padding:20px 0 88px;}
.usluga-list{display:flex; flex-direction:column; max-width:760px; border-top:1px solid var(--paper-line);}
.usluga-row{
  display:flex; justify-content:space-between; align-items:center;
  padding:24px 6px; border-bottom:1px solid var(--paper-line);
  text-decoration:none; color:var(--ink);
  transition:padding-left .2s ease, color .2s ease;
}
.usluga-row:hover{color:var(--teal); padding-left:14px;}
.usluga-row-name{font-family:var(--display); font-weight:600; font-size:1.2rem; letter-spacing:-.005em;}
.usluga-row-arrow{font-family:var(--mono); font-size:1.1rem; color:var(--muted-light); transition:color .2s ease, transform .2s ease;}
.usluga-row:hover .usluga-row-arrow{color:var(--teal); transform:translateX(4px);}

@media (max-width:640px){
  #testiPrev,
  #testiNext{
    display:none !important;
  }

  #testiRoot{
    gap:0;
  }

  #testiRoot .testi-viewport{
    width:100%;
  }

  .reviews-hero .wrap{
    padding-left:12px;
    padding-right:12px;
  }

  .reviews-hero .testi-card-inner{
    max-width:none;
    width:100%;
    margin:0;
    padding:28px 22px 24px;
  }
}
