
:root{
  --bg:#ffffff;
  --surface:#ffffff;
  --muted:#6b7280;
  --text:#0f172a;
  --line: rgba(15,23,42,.12);
  --brand:#ef4444;
  --brand2:#fb7185;
  --ok:#16a34a;
  --bad:#dc2626;
  --radius:18px;
  --shadow: 0 10px 30px rgba(2, 6, 23, .08);
  --shadow2: 0 8px 20px rgba(2, 6, 23, .10);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(239,68,68,.10), transparent 60%),
    radial-gradient(900px 600px at 90% 0%, rgba(251,113,133,.12), transparent 55%),
    var(--bg);
  line-height:1.55;
}
/* === Uporządkowane dane teleadresowe w Hero === */
.contactMini{
  margin-top: 14px;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(91,72,54,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.72));
  box-shadow: 0 14px 34px rgba(62,39,22,.10);
}

.contactMini__head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  margin-bottom: 10px;
}
.contactMini__hint{
  color: rgba(107,91,74,.90);
  font-size: 13px;
  font-weight: 700;
}

.contactMini__grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.cItem{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(91,72,54,.12);
  text-decoration:none;
  transition: transform .08s ease, box-shadow .12s ease, border-color .12s ease;
}

.cItem:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(62,39,22,.12);
  border-color: rgba(199,107,74,.22);
  text-decoration:none;
}

.cItem__icon{
  width: 42px;
  height: 42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(199,107,74,.14), rgba(231,160,127,.18));
  border: 1px solid rgba(199,107,74,.18);
  font-size: 18px;
  flex: 0 0 auto;
}

.cItem__meta{
  display:flex;
  flex-direction:column;
  gap:2px;
  min-width: 0;
}
.cItem__label{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: rgba(107,91,74,.92);
}
.cItem__value{
  font-size: 16px;
  font-weight: 950;
  color: rgba(31,41,55,.98);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cItem--static{cursor: default;}
.cItem--static:hover{transform:none; box-shadow:none; border-color: rgba(91,72,54,.12);}

/* Desktop: 2 kolumny */
@media (min-width: 920px){
  .contactMini__grid{
    grid-template-columns: 1fr 1fr;
  }
}
img{max-width:100%; height:auto; display:block}
a{color:inherit; text-decoration:none}
a:hover{text-decoration:underline}
.container{width:min(1120px, calc(100% - 32px)); margin-inline:auto}

.skip{
  position:absolute; left:-999px; top:10px;
  background:#fff; border:2px solid var(--brand);
  padding:10px 12px; border-radius:12px; z-index:9999;
}
.skip:focus{left:10px}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.80);
  border-bottom:1px solid var(--line);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0;
  gap:14px;
}
.brand{display:flex; gap:12px; align-items:center}
.brand__logo{
  border-radius:14px;
  box-shadow: var(--shadow2);
  background:#fff;
}
.brand__name{font-weight:800; letter-spacing:.2px}
.brand__tag{color:var(--muted); font-size:13px}

.navbtn{
  display:inline-flex; flex-direction:column; gap:5px;
  border:1px solid var(--line); background:#fff;
  padding:10px; border-radius:14px;
}
.navbtn__bar{width:22px; height:2px; background:var(--text); opacity:.85}

.nav{
  display:none;
  position:absolute;
  right:16px; top:74px;
  width:min(320px, calc(100% - 32px));
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:12px;
}
.nav.is-open{display:block}
.nav__link{
  display:block;
  padding:10px 12px;
  border-radius:14px;
  color:var(--text);
}
.nav__link:hover{background: rgba(15,23,42,.04); text-decoration:none}
.nav__link.is-active{background: rgba(239,68,68,.08); border:1px solid rgba(239,68,68,.18)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color:#fff;
  border:1px solid rgba(0,0,0,0);
  font-weight:700;
  box-shadow: var(--shadow2);
}
.btn:hover{filter:saturate(1.05); text-decoration:none}
.btn:active{transform: translateY(1px)}
.btn--ghost{
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow:none;
}
.btn--small{padding:10px 14px; font-size:14px}

.hero{
  padding: 30px 0 18px;
}
.hero__grid{
  display:grid;
  gap:18px;
  align-items:stretch;
}
.hero__copy{
  padding:18px;
  background: rgba(255,255,255,.78);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero h1{
  margin:0 0 10px;
  font-size: clamp(26px, 5vw, 44px);
  line-height:1.12;
  letter-spacing:-.2px;
}
.hero__sub{
  margin:0 0 16px;
  color: var(--muted);
  font-size: 16px;
}
.hero__cta{display:flex; gap:10px; flex-wrap:wrap}
.hero__badges{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px;
  border-radius: 999px;
  border:1px solid var(--line);
  background:#fff;
  color: rgba(15,23,42,.86);
  font-size: 13px;
}

.card{
  background: rgba(255,255,255,.92);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:16px;
}
.card h3{margin:0 0 6px}
.muted{color:var(--muted)}
.lead{font-size:18px; color: rgba(15,23,42,.86)}

.section{padding: 22px 0}
.section__head{display:flex; align-items:end; justify-content:space-between; gap:12px; margin-bottom:12px}
.section h2{margin:0; font-size: clamp(20px, 3vw, 28px)}
.section--alt{
  background: rgba(255,255,255,.55);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.grid{display:grid; gap:12px}
.grid--2{grid-template-columns:1fr}
.grid--3{grid-template-columns:1fr}

.tile{
  display:flex; flex-direction:column; gap:8px;
  padding:16px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background:#fff;
  box-shadow: var(--shadow);
}
.tile__top{display:flex; align-items:center; justify-content:space-between; gap:10px}
.pill{
  display:inline-flex; align-items:center;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(239,68,68,.08);
  border:1px solid rgba(239,68,68,.18);
  color: rgba(239,68,68,.95);
  font-weight:700;
  font-size:12px;
}

.kicker{
  display:inline-flex;
  font-weight:800;
  color: rgba(239,68,68,.95);
  letter-spacing:.4px;
  text-transform: uppercase;
  font-size: 12px;
}

.media{
  display:grid; gap:12px;
}
.media__img img{
  border-radius: var(--radius);
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  background:#fff;
}
.media__box{padding:16px}
.media__box ul{padding-left:18px; margin:8px 0 0}

.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background:#fff;
  box-shadow: var(--shadow);
}
.table th, .table td{
  padding:12px 12px;
  border-bottom:1px solid var(--line);
  text-align:left;
  vertical-align:top;
}
.table th{background: rgba(15,23,42,.03); font-size:14px}
.table tr:last-child td{border-bottom:0}

.form{
  display:grid;
  gap:12px;
}
.field label{display:block; font-weight:700; margin-bottom:6px}
.field input, .field textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid var(--line);
  background:#fff;
  font:inherit;
}
.field textarea{min-height:120px; resize:vertical}
.help{font-size:13px; color:var(--muted)}
.checks{display:grid; gap:10px}
.checks label{display:flex; gap:10px; align-items:flex-start; font-size:14px; color: rgba(15,23,42,.9)}
.checks input{margin-top:3px}

.alert{
  padding:12px 14px;
  border-radius: 14px;
  border:1px solid var(--line);
  background:#fff;
  margin-bottom:12px;
}
.alert--ok{border-color: rgba(22,163,74,.35); background: rgba(22,163,74,.06)}
.alert--err{border-color: rgba(220,38,38,.35); background: rgba(220,38,38,.06)}

.faq{
  display:grid; gap:10px;
}
.faq details{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:12px 14px;
}
.faq summary{
  cursor:pointer;
  font-weight:800;
}
.faq p{margin:8px 0 0; color: rgba(15,23,42,.86)}

.map{
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  background:#fff;
}
.map iframe{width:100%; height: 320px; border:0}

.footer{
  padding: 24px 0;
  border-top:1px solid var(--line);
  background: rgba(255,255,255,.85);
}
.footer__grid{
  display:grid; gap:18px;
}
.footer__brand{font-weight:900; font-size:18px}
.footer__title{font-weight:900; margin-bottom:8px}
.footer__list{list-style:none; padding:0; margin:0; display:grid; gap:6px}
.footer__links{display:flex; gap:12px; flex-wrap:wrap; margin-top:10px}
.footer__bottom{padding-top:14px; margin-top:14px; border-top:1px solid var(--line);}

.cookie{
  position:fixed; left:0; right:0; bottom:0;
  padding:12px 0;
  background: rgba(255,255,255,.92);
  border-top:1px solid var(--line);
  display:none;
}
.cookie.is-open{display:block}
.cookie__inner{
  width:min(1120px, calc(100% - 32px));
  margin-inline:auto;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
}
.cookie__text{margin:0; color: rgba(15,23,42,.85); font-size:14px}
.cookie__text a{color: rgba(239,68,68,.95)}

@media (min-width: 920px){
  .navbtn{display:none}
  .nav{
    display:flex !important;
    position:static;
    width:auto;
    padding:0;
    background:transparent;
    border:0;
    box-shadow:none;
    gap:6px;
    align-items:center;
  }
  .nav__link{display:inline-flex}
  .hero{padding: 42px 0 22px}
  .hero__grid{grid-template-columns: 1.2fr .8fr}
  .grid--2{grid-template-columns:1fr 1fr}
  .grid--3{grid-template-columns:1fr 1fr 1fr}
  .media{grid-template-columns: 1fr 1fr; align-items:center}
  .footer__grid{grid-template-columns: 1.2fr .9fr .9fr}
  .map iframe{height: 360px}
}

/* === Home v2: cieplej + mniej chaotycznie === */
:root{
  --warm1: rgba(251, 113, 133, .12);
  --warm2: rgba(239, 68, 68, .10);
}

.hero2{
  padding: 34px 0 18px;
}
.hero2__grid{
  display:grid;
  gap:16px;
  align-items:stretch;
}
.hero2__copy{
  background: rgba(255,255,255,.86);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}
.hero2__sub{color:var(--muted); margin:10px 0 16px}
.hero2__cta{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:14px}

.chip{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--warm2), var(--warm1));
  border:1px solid rgba(239,68,68,.14);
  color: rgba(15,23,42,.86);
  font-weight:800;
  font-size:13px;
  margin-bottom:10px;
}

.hero2__quick{
  display:grid;
  gap:10px;
  grid-template-columns: 1fr;
}
.quick{
  background:#fff;
  border:1px solid var(--line);
  border-radius: 16px;
  padding:12px;
}
.quick__label{color:var(--muted); font-size:12px; font-weight:800; text-transform:uppercase; letter-spacing:.4px}
.quick__value{font-weight:900; text-decoration:none}
.quick__value:hover{text-decoration:underline}

.hero2__media{
  display:grid;
  gap:10px;
}
.mediaCard{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.mediaCard img{width:100%; height:auto}
.mediaCard__caption{
  padding:12px 14px;
  color: rgba(15,23,42,.86);
}
.hero2__badge{
  display:flex; align-items:center; gap:10px;
  padding:12px 14px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.86);
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  color: rgba(15,23,42,.86);
  font-weight:800;
}
.dot{
  width:10px; height:10px; border-radius:999px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
}

.serviceCard{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.serviceCard__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.serviceCard p{margin:0; color: rgba(15,23,42,.78)}
.tag{
  font-size:12px;
  font-weight:900;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(239,68,68,.08);
  border:1px solid rgba(239,68,68,.18);
  color: rgba(239,68,68,.95);
}
.link{
  font-weight:900;
  color: rgba(239,68,68,.95);
  text-decoration:none;
}
.link:hover{text-decoration:underline}

.steps{
  display:grid;
  gap:10px;
}
.step{
  display:flex;
  gap:12px;
  align-items:flex-start;
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:14px;
}
.step__nr{
  width:34px; height:34px;
  border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  font-weight:900;
  background: linear-gradient(135deg, var(--warm2), var(--warm1));
  border:1px solid rgba(239,68,68,.14);
}

.callout{
  margin-top:12px;
  background: rgba(255,255,255,.90);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

.quote{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:16px;
}
.quote__text{font-weight:800; color: rgba(15,23,42,.86)}
.quote__who{margin-top:10px; color:var(--muted); font-weight:800; font-size:13px}

@media (min-width: 920px){
  .hero2{padding: 46px 0 22px}
  .hero2__grid{grid-template-columns: 1.2fr .8fr}
  .hero2__quick{grid-template-columns: 1fr 1fr 1fr}
  .steps{grid-template-columns: 1fr 1fr 1fr}
}
/* === Cappuccino theme override === */
:root{
  /* cappuccino palette */
  --bg: #fbf7f2;               /* jasny krem */
  --surface: #ffffff;
  --text: #1f2937;             /* miękki grafit (nie czarny) */
  --muted: #6b5b4a;            /* ciepły muted */
  --line: rgba(91, 72, 54, .14);

  --brand: #c76b4a;            /* kawa z mlekiem / karmel */
  --brand2:#e7a07f;            /* jaśniejszy akcent */
  --shadow: 0 14px 34px rgba(62, 39, 22, .10);
  --shadow2: 0 10px 24px rgba(62, 39, 22, .12);
}

/* cieplejsze tło całej strony */
body{
  background:
    radial-gradient(900px 520px at 15% -10%, rgba(199,107,74,.20), transparent 62%),
    radial-gradient(900px 520px at 90% 0%, rgba(231,160,127,.22), transparent 58%),
    radial-gradient(900px 520px at 55% 110%, rgba(160,110,80,.14), transparent 60%),
    var(--bg);
}

/* topbar: mniej technicznie, bardziej "kremowo" */
.topbar{
  background: rgba(251,247,242,.86);
  border-bottom: 1px solid var(--line);
}

/* WYEKSPONUJ LOGO + "znaczek" */
.brand{
  gap: 14px;
}
.brand__logo{
  width: auto;
  height: 88px;
  border-radius: 20px;
  padding: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.70));
  border: 1px solid rgba(199,107,74,.28);
  box-shadow: 0 12px 26px rgba(62,39,22,.16);
}
.brand__name{
  font-size: 20px;
  font-weight: 950;
  letter-spacing: .2px;
}
.brand__tag{
  font-size: 14px;
  color: rgba(107,91,74,.90);
}

/* na desktopie jeszcze większe logo */
@media (min-width: 920px){
  .brand__logo{
    width: auto;
    height: 96px;
    border-radius: 22px;
  }
  .brand__name{font-size: 22px;}
}

/* przyciski: cieplejsze */
.btn{
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 12px 26px rgba(62,39,22,.16);
}
.btn--ghost{
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(91,72,54,.18);
}

/* karty: "papierowe", mniej kliniczne */
.card, .tile, .serviceCard, .quote, .step, .callout, .nav, .map, .table{
  border: 1px solid rgba(91,72,54,.14);
  box-shadow: var(--shadow);
}
.card, .tile, .serviceCard, .quote{
  background: rgba(255,255,255,.88);
}

/* nagłówki: bardziej miękko i premium */
h1, h2, h3{
  letter-spacing: -.2px;
}
.hero2__copy, .hero__copy{
  background: rgba(255,255,255,.78);
}

/* chip w hero: bardziej cappuccino */
.chip{
  background: linear-gradient(135deg, rgba(199,107,74,.16), rgba(231,160,127,.18));
  border: 1px solid rgba(199,107,74,.20);
  color: rgba(47,35,26,.86);
}

/* linki akcentowe (np. Zapytaj o termin) */
.link{
  color: rgba(199,107,74,.98);
}

/* cookies: mniej "systemowe" */
.cookie{
  background: rgba(251,247,242,.92);
  border-top: 1px solid rgba(91,72,54,.14);
}
.cookie__text a{
  color: rgba(199,107,74,.98);
}

/* aktywny link w menu: cieplej */
.nav__link.is-active{
  background: rgba(199,107,74,.10);
  border: 1px solid rgba(199,107,74,.20);
}

.hero2{
  position: relative;
}
.hero2:before{
  content:"";
  position:absolute;
  inset: -10px 0 auto 0;
  height: 260px;
  background: radial-gradient(600px 220px at 25% 50%, rgba(199,107,74,.16), transparent 65%);
  pointer-events:none;
}