/* =========================================================
   AIRSPRAY STARGARD — design tokens
   Malowanie natryskowe + wykończenia wnętrz, jednoosobowa działalność
   ========================================================= */

:root{
  /* --- kolor --- */
  --bg:            #131214;   /* głęboka, ciepła czerń — nie czysty czarny */
  --bg-alt:        #1a1919;
  --surface:       #201f21;
  --surface-2:     #29282a;
  --border:        #38363a;
  --border-soft:   #2a292b;

  --text:          #F2EEE8;   /* ciepła biel gruntu */
  --text-muted:    #A9A39C;
  --text-dim:      #726d68;

  --accent:        #C7203A;   /* karmin — mokra farba */
  --accent-hover:  #E23A54;
  --accent-dim:    rgba(199,32,58,.14);
  --accent-line:   rgba(199,32,58,.35);

  --ok:            #7FAE8C;

  /* --- typografia --- */
  --f-display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --f-body:    "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono:    "IBM Plex Mono", "Courier New", monospace;

  /* --- rytm --- */
  --radius-s: 3px;
  --radius:   6px;
  --maxw:     1180px;

  --shadow-soft: 0 12px 40px -20px rgba(0,0,0,.6);
}

/* =========================================================
   RESET / BASE
   ========================================================= */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; scroll-behavior:auto !important; }
}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--f-body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ margin:0; font-family:var(--f-display); font-weight:700; letter-spacing:.01em; text-wrap:balance; }
p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }

:focus-visible{
  outline:2px solid var(--accent);
  outline-offset:3px;
}

.container{
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 24px;
}

.eyebrow{
  font-family:var(--f-mono);
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--accent);
  display:flex;
  align-items:center;
  gap:10px;
}
.eyebrow::before{
  content:"";
  width:18px; height:1px;
  background:var(--accent);
  display:inline-block;
}

.section{ padding:88px 0; }
.section--tight{ padding:56px 0; }
.section--alt{ background:var(--bg-alt); }
.section-head{ max-width:640px; margin-bottom:48px; }
.section-head h2{ font-size:clamp(28px,4vw,42px); margin-top:14px; }
.section-head p{ color:var(--text-muted); margin-top:16px; font-size:17px; }

/* =========================================================
   PRZYCISKI
   ========================================================= */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 26px;
  border-radius:var(--radius-s);
  font-weight:600;
  font-size:15px;
  border:1px solid transparent;
  transition:transform .15s ease, background .2s ease, border-color .2s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-1px); }
.btn--primary{ background:var(--accent); color:#fff; }
.btn--primary:hover{ background:var(--accent-hover); }
.btn--ghost{ border-color:var(--border); color:var(--text); }
.btn--ghost:hover{ border-color:var(--accent); color:var(--accent); }
.btn--block{ width:100%; justify-content:center; }

/* =========================================================
   NAWIGACJA
   ========================================================= */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(19,18,20,.86);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border-soft);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  height:72px;
}
.brand{
  font-family:var(--f-display);
  font-size:20px;
  font-weight:700;
  letter-spacing:.02em;
  display:flex;
  align-items:baseline;
  gap:8px;
}
.brand span{ color:var(--accent); }
.nav-links{
  display:flex;
  align-items:center;
  gap:6px;
}
.nav-links a{
  padding:10px 14px;
  font-size:14.5px;
  font-weight:600;
  color:var(--text-muted);
  border-radius:var(--radius-s);
  transition:color .15s ease, background .15s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"]{
  color:var(--text);
  background:var(--surface);
}
.nav-links a[aria-current="page"]{ color:var(--accent); }
.nav-cta{ display:flex; align-items:center; gap:10px; }

.nav-toggle{
  display:none;
  width:44px; height:44px;
  border:1px solid var(--border);
  border-radius:var(--radius-s);
  background:transparent;
  color:var(--text);
  align-items:center; justify-content:center;
}
.nav-toggle svg{ width:20px; height:20px; }

@media (max-width: 880px){
  .nav-links{
    position:fixed; inset:72px 0 0 0;
    background:var(--bg);
    flex-direction:column;
    align-items:stretch;
    padding:18px;
    gap:2px;
    transform:translateY(-8px);
    opacity:0;
    pointer-events:none;
    transition:opacity .2s ease, transform .2s ease;
    overflow-y:auto;
  }
  .nav-links a{ padding:16px 14px; font-size:16px; border-bottom:1px solid var(--border-soft); border-radius:0; }
  .nav-links.is-open{ opacity:1; transform:translateY(0); pointer-events:auto; }
  .nav-toggle{ display:inline-flex; }
  .nav-cta .btn--ghost{ display:none; }
}

/* =========================================================
   TAŚMA MALARSKA — element sygnaturowy / strukturalny
   ========================================================= */
.tape-tag{
  position:absolute;
  top:-10px; left:22px;
  width:64px; height:22px;
  background:#E8E1D3;
  opacity:.9;
  transform:rotate(-3deg);
  box-shadow:0 3px 10px rgba(0,0,0,.35);
  z-index:2;
}
.tape-tag::after{
  content:"";
  position:absolute; inset:0;
  background:repeating-linear-gradient(115deg, rgba(0,0,0,.05) 0 2px, transparent 2px 6px);
}
.tape-tag--r{ left:auto; right:22px; transform:rotate(4deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  padding:64px 0 40px;
  position:relative;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:56px;
  align-items:center;
}
.hero h1{
  font-size:clamp(38px,5.4vw,64px);
  line-height:1.04;
  margin-top:16px;
}
.hero h1 em{
  font-style:normal;
  color:var(--accent);
}
.hero p.lede{
  margin-top:22px;
  font-size:18px;
  color:var(--text-muted);
  max-width:52ch;
}
.hero-cta{
  margin-top:32px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.hero-facts{
  margin-top:40px;
  display:flex;
  gap:28px;
  flex-wrap:wrap;
}
.hero-fact{
  font-family:var(--f-mono);
  font-size:12.5px;
  color:var(--text-dim);
}
.hero-fact strong{
  display:block;
  font-family:var(--f-body);
  font-size:15px;
  color:var(--text);
  font-weight:600;
  margin-bottom:2px;
}

.hero-visual{
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  aspect-ratio:4/5;
  background:var(--surface);
  box-shadow:var(--shadow-soft);
}
.hero-visual img{
  width:100%; height:100%; object-fit:cover;
  position:absolute; inset:0;
}
.hero-visual .img-rough{ filter:grayscale(1) contrast(1.05) brightness(.55); }
.hero-visual .img-smooth{
  clip-path:inset(0 100% 0 0);
  transition:clip-path 1.4s cubic-bezier(.65,0,.2,1);
}
.hero-visual.is-swept .img-smooth{ clip-path:inset(0 0 0 0); }
.spray-edge{
  position:absolute; top:0; bottom:0; left:0;
  width:3px;
  background:linear-gradient(180deg, transparent, var(--accent), transparent);
  box-shadow:0 0 24px 6px var(--accent-line);
  transition:left 1.4s cubic-bezier(.65,0,.2,1);
  left:0%;
}
.hero-visual.is-swept .spray-edge{ left:100%; }
.hero-visual-tag{
  position:absolute; bottom:16px; left:16px;
  background:rgba(19,18,20,.82);
  border:1px solid var(--border);
  padding:8px 12px;
  border-radius:var(--radius-s);
  font-family:var(--f-mono);
  font-size:11.5px;
  color:var(--text-muted);
  letter-spacing:.04em;
}

/* =========================================================
   REVEAL NA SCROLL
   ========================================================= */
.reveal{ opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease; }
.reveal.is-visible{ opacity:1; transform:none; }

/* =========================================================
   FEATURE STRIP ("dlaczego ja")
   ========================================================= */
.feature-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--border-soft);
  border:1px solid var(--border-soft);
  border-radius:var(--radius);
  overflow:hidden;
}
.feature{
  background:var(--bg);
  padding:32px 28px;
}
.feature-icon{
  width:38px; height:38px;
  color:var(--accent);
  margin-bottom:18px;
}
.feature h3{ font-size:19px; font-weight:700; }
.feature p{ margin-top:10px; color:var(--text-muted); font-size:14.5px; }

@media (max-width: 780px){
  .feature-grid{ grid-template-columns:1fr; }
  .hero-grid{ grid-template-columns:1fr; }
}

/* =========================================================
   KARTY USŁUG
   ========================================================= */
.card-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:26px;
}
.card-grid--3{ grid-template-columns:repeat(3,1fr); }
@media (max-width: 900px){
  .card-grid, .card-grid--3{ grid-template-columns:1fr; }
}

.service-card{
  position:relative;
  background:var(--surface);
  border:1px solid var(--border-soft);
  border-radius:var(--radius);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.service-card-media{
  position:relative;
  aspect-ratio:16/10;
  overflow:hidden;
}
.service-card-media img{
  width:100%; height:100%; object-fit:cover;
  transition:transform .5s ease;
}
.service-card:hover .service-card-media img{ transform:scale(1.045); }
.service-card-body{ padding:26px 26px 28px; flex:1; display:flex; flex-direction:column; }
.service-card-body h3{ font-size:21px; }
.service-card-body .tag{
  font-family:var(--f-mono);
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--accent);
  margin-bottom:10px;
  display:block;
}
.service-card-body p{ color:var(--text-muted); margin-top:12px; font-size:14.5px; }
.service-card-body .bullets{ margin-top:16px; display:flex; flex-direction:column; gap:8px; }
.service-card-body .bullets li{
  font-size:14px; color:var(--text-muted);
  padding-left:18px; position:relative;
}
.service-card-body .bullets li::before{
  content:"";
  position:absolute; left:0; top:8px;
  width:8px; height:2px; background:var(--accent);
}
.service-card-body .btn{ margin-top:22px; align-self:flex-start; }

/* =========================================================
   PROCES (kroki uporządkowane — realny proces)
   ========================================================= */
.process{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  border-top:1px solid var(--border-soft);
}
.process-step{
  padding:30px 22px 30px 0;
  border-right:1px dashed var(--border);
  position:relative;
}
.process-step:last-child{ border-right:none; }
.process-step .num{
  font-family:var(--f-mono);
  color:var(--accent);
  font-size:13px;
  letter-spacing:.06em;
}
.process-step h3{ font-size:18px; margin-top:12px; }
.process-step p{ margin-top:10px; color:var(--text-muted); font-size:14px; }
@media (max-width: 880px){
  .process{ grid-template-columns:1fr; }
  .process-step{ border-right:none; border-bottom:1px dashed var(--border); padding:26px 0; }
  .process-step:last-child{ border-bottom:none; }
}

/* =========================================================
   ZASADY / PODEJŚCIE (zamiast fałszywych opinii)
   ========================================================= */
.principles{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}
@media (max-width: 780px){ .principles{ grid-template-columns:1fr; } }
.principle{
  border:1px solid var(--border-soft);
  border-radius:var(--radius);
  padding:26px;
  background:var(--surface);
}
.principle h3{ font-size:17px; display:flex; align-items:center; gap:10px; }
.principle h3 svg{ width:20px; height:20px; color:var(--accent); flex-shrink:0; }
.principle p{ margin-top:10px; color:var(--text-muted); font-size:14.5px; }

/* =========================================================
   BANER / CTA
   ========================================================= */
.cta-banner{
  border-radius:var(--radius);
  background:linear-gradient(120deg, var(--surface), var(--bg-alt));
  border:1px solid var(--border-soft);
  padding:52px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  flex-wrap:wrap;
  position:relative;
  overflow:hidden;
}
.cta-banner::before{
  content:"";
  position:absolute; inset:0;
  background:radial-gradient(circle at 85% 20%, var(--accent-dim), transparent 55%);
}
.cta-banner h2{ font-size:clamp(24px,3vw,32px); position:relative; }
.cta-banner p{ color:var(--text-muted); margin-top:10px; position:relative; max-width:46ch; }
.cta-banner .actions{ display:flex; gap:14px; position:relative; flex-wrap:wrap; }

/* =========================================================
   CENNIK
   ========================================================= */
.price-tabs{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  border-bottom:1px solid var(--border-soft);
  margin-bottom:0;
}
.price-tab{
  padding:14px 20px;
  font-weight:600;
  font-size:14.5px;
  color:var(--text-muted);
  border:1px solid transparent;
  border-bottom:none;
  border-radius:var(--radius-s) var(--radius-s) 0 0;
  background:transparent;
}
.price-tab.is-active{
  color:var(--text);
  background:var(--surface);
  border-color:var(--border-soft);
}
.price-panel{ display:none; padding-top:36px; }
.price-panel.is-active{ display:block; }

.price-table{ width:100%; border-collapse:collapse; }
.price-table th, .price-table td{
  text-align:left;
  padding:16px 18px;
  border-bottom:1px solid var(--border-soft);
  font-size:14.5px;
}
.price-table th{
  font-family:var(--f-mono);
  font-size:11.5px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--text-dim);
  font-weight:600;
}
.price-table td:last-child, .price-table th:last-child{
  font-family:var(--f-mono);
  color:var(--accent);
  font-weight:600;
  white-space:nowrap;
}
.price-table tr:last-child td{ border-bottom:none; }
.price-note{
  margin-top:22px;
  padding:18px 20px;
  border:1px solid var(--border-soft);
  border-left:3px solid var(--accent);
  border-radius:0 var(--radius-s) var(--radius-s) 0;
  color:var(--text-muted);
  font-size:14px;
  background:var(--surface);
}

/* =========================================================
   GALERIA / REALIZACJE
   ========================================================= */
.disclaimer{
  border:1px dashed var(--border);
  border-radius:var(--radius);
  padding:22px 26px;
  display:flex;
  gap:18px;
  align-items:flex-start;
  margin-bottom:44px;
  background:var(--surface);
}
.disclaimer svg{ width:26px; height:26px; color:var(--accent); flex-shrink:0; margin-top:2px; }
.disclaimer h3{ font-size:16px; }
.disclaimer p{ margin-top:6px; color:var(--text-muted); font-size:14.5px; }

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
@media (max-width: 900px){ .gallery-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width: 560px){ .gallery-grid{ grid-template-columns:1fr; } }
.gallery-item{
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  aspect-ratio:4/3;
  background:var(--surface);
}
.gallery-item img{ width:100%; height:100%; object-fit:cover; }
.gallery-cap{
  position:absolute; left:0; right:0; bottom:0;
  padding:14px 16px;
  background:linear-gradient(0deg, rgba(0,0,0,.82), transparent);
  font-size:12.5px;
  color:var(--text-muted);
}
.gallery-cap strong{ color:var(--text); display:block; font-size:13.5px; margin-bottom:2px; }

.future-slot{
  border:1px dashed var(--border);
  border-radius:var(--radius);
  aspect-ratio:4/3;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:24px;
  color:var(--text-dim);
  font-size:13.5px;
}

/* =========================================================
   KONTAKT
   ========================================================= */
.contact-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:48px;
}
@media (max-width: 900px){ .contact-grid{ grid-template-columns:1fr; } }

.contact-item{
  display:flex;
  gap:16px;
  padding:20px 0;
  border-bottom:1px solid var(--border-soft);
}
.contact-item:first-child{ padding-top:0; }
.contact-item svg{ width:22px; height:22px; color:var(--accent); flex-shrink:0; margin-top:2px; }
.contact-item strong{ display:block; font-size:15.5px; }
.contact-item span{ color:var(--text-muted); font-size:14px; }

.form-field{ margin-bottom:18px; }
.form-field label{
  display:block;
  font-size:13px;
  font-weight:600;
  margin-bottom:8px;
  color:var(--text-muted);
}
.form-field input, .form-field textarea, .form-field select{
  width:100%;
  padding:13px 14px;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius-s);
  color:var(--text);
  font-family:inherit;
  font-size:14.5px;
}
.form-field textarea{ resize:vertical; min-height:120px; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus{
  border-color:var(--accent);
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media (max-width:560px){ .form-row{ grid-template-columns:1fr; } }
.form-note{ font-size:12.5px; color:var(--text-dim); margin-top:10px; }
.form-status{ margin-top:14px; font-size:14px; display:none; }
.form-status.is-ok{ display:block; color:var(--ok); }
.form-status.is-err{ display:block; color:var(--accent-hover); }

#map{
  height:340px;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--border-soft);
  filter:grayscale(.25) contrast(1.05) brightness(.92);
}
.leaflet-container{ background:var(--bg-alt) !important; }

.range-towns{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.range-towns span{
  font-family:var(--f-mono);
  font-size:12px;
  padding:7px 12px;
  border:1px solid var(--border);
  border-radius:20px;
  color:var(--text-muted);
}

/* =========================================================
   STOPKA
   ========================================================= */
.site-footer{
  border-top:1px solid var(--border-soft);
  padding:48px 0 32px;
  background:var(--bg-alt);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr;
  gap:32px;
  margin-bottom:36px;
}
@media (max-width:780px){ .footer-grid{ grid-template-columns:1fr; gap:28px; } }
.footer-grid h4{
  font-family:var(--f-mono);
  font-size:11.5px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--text-dim);
  margin-bottom:16px;
}
.footer-grid ul{ display:flex; flex-direction:column; gap:10px; }
.footer-grid a{ color:var(--text-muted); font-size:14.5px; }
.footer-grid a:hover{ color:var(--accent); }
.footer-grid p{ color:var(--text-muted); font-size:14.5px; max-width:36ch; }
.footer-bottom{
  padding-top:24px;
  border-top:1px solid var(--border-soft);
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
  font-size:12.5px;
  color:var(--text-dim);
}
.footer-bottom a{ color:var(--text-dim); }
.footer-bottom a:hover{ color:var(--accent); }

/* =========================================================
   STRONA DE (podsumowanie)
   ========================================================= */
.de-banner{
  border:1px solid var(--border-soft);
  background:var(--surface);
  border-radius:var(--radius);
  padding:16px 20px;
  font-size:13.5px;
  color:var(--text-muted);
  margin-bottom:32px;
}
.de-banner a{ color:var(--accent); font-weight:600; }

/* =========================================================
   OGÓLNE
   ========================================================= */
.page-hero{
  padding:56px 0 20px;
}
.page-hero .eyebrow{ margin-bottom:14px; }
.page-hero h1{ font-size:clamp(32px,5vw,48px); }
.page-hero p{ margin-top:16px; color:var(--text-muted); font-size:17px; max-width:60ch; }

.skip-link{
  position:absolute; left:-999px; top:0;
  background:var(--accent); color:#fff; padding:10px 16px; z-index:100;
}
.skip-link:focus{ left:16px; top:16px; }
