/* ==========================================================================
   Podatkowo.de — arkusz stylów
   Kolejność: tokeny → reset → typografia → przyciski → header → stopka
              → sekcje wspólne → strona główna → usługi → o nas → kontakt
              → animacje → responsywność
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENY — zmień tutaj kolor lub font, a zmieni się w całym serwisie
   -------------------------------------------------------------------------- */
:root {
  /* marka — beż / złoto */
  --gold: #a8814a;
  --gold-light: #c9a25a;
  --gold-dark: #96723f;
  --ink: #22201b;
  --text: #3a362e;
  --text-soft: #4c4740;
  --text-muted: #6b6459;
  --muted: #8a8478;
  --bg: #f5f0e8;
  --bg-warm: #efe7d8;
  --surface: #fffdf9;
  --surface-alt: #f2e9d7;
  --line: rgba(168, 129, 74, 0.16);
  --line-strong: rgba(168, 129, 74, 0.4);

  /* sekcja budowlana — granat / żółty */
  --navy: #16233f;
  --navy-text: #eef2f8;
  --navy-muted: #b9c3d6;
  --yellow: #f4b400;

  /* stany */
  --green: #2fa85f;
  --red: #c0392b;

  /* typografia */
  --font-body: "Mulish", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-head: "Cormorant Garamond", Georgia, serif;
  --font-script: "Pinyon Script", cursive;

  /* układ */
  --container: 1200px;
  --container-narrow: 1120px;
  --radius-card: 20px;
  --radius-pill: 999px;
}

/* --------------------------------------------------------------------------
   2. RESET + BAZA
   -------------------------------------------------------------------------- */
* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

a { color: var(--gold); }
a:hover { color: var(--gold-dark); }

::selection { background: #e4d3ad; color: var(--ink); }

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

/* dla czytników ekranu — treść widoczna tylko dla asystujących technologii */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* przeskocz do treści — pojawia się po tabulacji */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--surface);
  padding: 12px 20px;
  border-radius: 0 0 12px 0;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { left: 0; color: var(--surface); }

/* --------------------------------------------------------------------------
   3. TYPOGRAFIA
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold-light);
}
.eyebrow--plain { display: inline-block; }
.eyebrow--plain::before { display: none; }

.script {
  font-family: var(--font-script);
  color: var(--gold);
  line-height: 1;
  margin: 0;
}

.h-serif {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
}

.section-head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 52px;
}
.section-head h2 { font-size: 44px; }
.section-head p {
  font-size: 16px;
  color: var(--text-muted);
  margin: 16px 0 0;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   4. PRZYCISKI
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
}

.btn--gold {
  background: var(--gold);
  color: var(--surface);
  font-size: 15px;
  padding: 15px 28px;
  box-shadow: 0 10px 26px rgba(168, 129, 74, .30);
}
.btn--gold:hover {
  background: var(--gold-dark);
  color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(168, 129, 74, .40);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  padding: 15px 26px;
  border: 1.5px solid rgba(168, 129, 74, .45);
}
.btn--outline:hover {
  background: rgba(168, 129, 74, .10);
  border-color: var(--gold);
  color: var(--ink);
}

.btn--ink {
  background: var(--ink);
  color: #f6f1e6;
  font-size: 16px;
  padding: 18px 34px;
  box-shadow: 0 14px 30px rgba(34, 32, 27, .24);
}
.btn--ink:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(34, 32, 27, .34);
  color: #f6f1e6;
}

.btn--yellow {
  background: var(--yellow);
  color: var(--navy);
  font-weight: 800;
  font-size: 15px;
  padding: 14px 26px;
}
.btn--yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(244, 180, 0, .4);
  color: var(--navy);
}

.btn--light {
  background: var(--surface);
  color: #8a6a3a;
  font-weight: 800;
  font-size: 14px;
  padding: 12px 22px;
}
.btn--light:hover { transform: translateY(-2px); color: #8a6a3a; }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  padding: 12px 24px;
  border: 1.5px solid rgba(168, 129, 74, .45);
}
.btn--ghost:hover { background: rgba(168, 129, 74, .1); color: var(--ink); }

.btn--block { width: 100%; }

/* --------------------------------------------------------------------------
   5. HEADER
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 240, 232, .9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(168, 129, 74, .22);
}

.header__bar {
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  flex: none;
}
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__name { display: flex; align-items: baseline; gap: 2px; }
.logo__word {
  font-family: var(--font-script);
  font-size: 30px;
  color: var(--ink);
  line-height: .8;
}
.logo__tld {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
}
.logo__sub {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.nav { display: flex; align-items: center; gap: 6px; }
.nav__link {
  position: relative;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: .3px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  color: var(--text);
  transition: color .2s, background .2s;
}
.nav__link:hover { background: rgba(168, 129, 74, .10); color: var(--text); }
.nav__link[aria-current="page"] { color: var(--gold); }

.nav__cta {
  margin-left: 8px;
  background: var(--gold);
  color: var(--surface);
  font-size: 14px;
  letter-spacing: .3px;
  padding: 11px 20px;
  box-shadow: 0 6px 18px rgba(168, 129, 74, .28);
}
.nav__cta:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(168, 129, 74, .38);
}

.burger {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: 1.5px solid var(--line-strong);
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(168, 129, 74, .2);
  background: rgba(245, 240, 232, .98);
  padding: 12px 22px 18px;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 8px;
  border-bottom: 1px solid rgba(168, 129, 74, .12);
}
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav .btn {
  margin-top: 10px;
  background: var(--gold);
  color: var(--surface);
  font-size: 15px;
  padding: 14px 20px;
  border-bottom: none;
}

/* --------------------------------------------------------------------------
   6. STOPKA
   -------------------------------------------------------------------------- */
.footer { background: #1a1712; color: #e8e2d6; }

.footer__top {
  max-width: var(--container);
  margin: 0 auto;
  padding: 64px 28px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}
.footer__logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer__logo .logo__mark { width: 46px; height: 46px; border-color: var(--gold-light); }
.footer__logo .logo__word { font-size: 32px; color: #f6f1e6; }
.footer__logo .logo__tld { font-size: 23px; color: var(--gold-light); }
.footer__lead {
  max-width: 340px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #b8b0a1;
  margin: 0 0 22px;
}
.footer__script { font-size: 26px; color: var(--gold-light); }
.footer h2 {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #9a917f;
  margin: 0 0 18px;
  font-weight: 700;
  font-family: var(--font-body);
}
.footer__list { display: flex; flex-direction: column; gap: 12px; }
.footer__list a,
.footer__contact a {
  text-decoration: none;
  color: #e8e2d6;
  font-size: 14.5px;
  transition: color .2s;
}
.footer__list a:hover,
.footer__contact a:hover { color: var(--gold-light); }
.footer__contact { display: flex; flex-direction: column; gap: 14px; }
.footer__contact a,
.footer__contact span.footer__row { display: flex; align-items: center; gap: 10px; }
.footer__row { color: #b8b0a1; font-size: 14.5px; }
.footer__icon { color: var(--gold-light); font-size: 16px; }

.footer__bottom { border-top: 1px solid rgba(201, 162, 90, .18); }
.footer__bottom-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: #8f8776;
}
.footer__bottom-inner a { color: #8f8776; text-decoration: none; }
.footer__bottom-inner a:hover { color: var(--gold-light); }
.footer__legal { display: flex; gap: 16px; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   7. SEKCJE I SIATKI WSPÓLNE
   -------------------------------------------------------------------------- */
.section { max-width: var(--container); margin: 0 auto; padding: 90px 28px; }
.section--narrow { max-width: var(--container-narrow); }

.band { background: var(--bg-warm); border-top: 1px solid rgba(168, 129, 74, .2); }
.band__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 64px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.band h2 { font-size: 40px; margin: 0 0 6px; }
.band .script { font-size: 34px; }

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--split { grid-template-columns: 1fr 1fr; gap: 26px; }

/* karta jasna */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 34px 28px;
  box-shadow: 0 12px 30px rgba(60, 50, 30, .06);
}
.card--hover { transition: transform .3s, box-shadow .3s, border-color .3s; }
.card--hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(60, 50, 30, .12);
  border-color: var(--line-strong);
}
.card h2, .card h3 { font-size: 19px; font-weight: 800; margin: 0 0 12px; letter-spacing: .2px; font-family: var(--font-body); }
.card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.65; margin: 0; }

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--surface-alt);
  margin-bottom: 22px;
}

/* lista z ptaszkami wewnątrz karty */
.ticks { margin: 14px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.ticks li { display: flex; gap: 9px; font-size: 13.5px; color: var(--text-soft); }
.ticks li::before { content: "✓"; color: var(--gold); font-weight: 800; }

/* karta „ciemna" prowadząca dalej */
.card--dark {
  background: var(--ink);
  color: #f6f1e6;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  box-shadow: 0 12px 30px rgba(34, 32, 27, .14);
  transition: transform .3s, box-shadow .3s;
}
.card--dark:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(34, 32, 27, .24);
  color: #f6f1e6;
}
.card--dark .card__title {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.15;
}
.card--dark .card__more { font-size: 14px; color: var(--gold-light); font-weight: 700; letter-spacing: .5px; }

/* karta wyróżniona złotym gradientem */
.card--gold {
  background: linear-gradient(160deg, var(--gold), #8a6a3a);
  color: #fdf9f0;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  box-shadow: 0 16px 36px rgba(168, 129, 74, .28);
}
.card--gold .script { font-size: 30px; color: inherit; line-height: .9; }
.card--gold p { font-size: 15px; line-height: 1.6; color: #f6ecd8; }
.card--gold .btn { align-self: flex-start; margin-top: 6px; }

/* nagłówek strony wewnętrznej */
.page-hero {
  position: relative;
  background: var(--bg-warm);
  border-bottom: 1px solid rgba(168, 129, 74, .18);
  overflow: hidden;
}
.page-hero__glow {
  position: absolute;
  top: -60px;
  right: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 90, .17), transparent 68%);
  pointer-events: none;
}
.page-hero__glow--left { right: auto; left: -60px; width: 380px; height: 380px; }
.page-hero__inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 72px 28px 62px;
  text-align: center;
}
.page-hero h1 { font-size: 56px; line-height: 1.04; margin: 0 0 18px; }
.page-hero p {
  font-size: 17px;
  line-height: 1.65;
  color: #5a544a;
  margin: 0 auto;
  max-width: 620px;
}

/* sekcja granatowa */
.navy { background: var(--navy); color: var(--navy-text); position: relative; overflow: hidden; }
.navy::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 6px;
  background: var(--yellow);
}
.navy--left::before { right: auto; left: 0; width: 36%; }
.navy__inner { max-width: var(--container); margin: 0 auto; padding: 84px 28px 88px; }
.navy .eyebrow { color: var(--yellow); font-weight: 800; }
.navy .eyebrow::before { background: var(--yellow); }
.navy h2 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 40px;
  line-height: 1.06;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.navy h2 .accent { color: var(--yellow); }
.navy p { color: var(--navy-muted); }

/* --------------------------------------------------------------------------
   8. STRONA GŁÓWNA
   -------------------------------------------------------------------------- */
.hero { position: relative; max-width: var(--container); margin: 0 auto; padding: 76px 28px 80px; }
.hero__glow {
  position: absolute;
  top: -40px;
  right: -120px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(201, 162, 90, .16), rgba(201, 162, 90, .02) 62%, transparent 70%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: .5px;
  margin: 0 0 22px;
  text-transform: uppercase;
}
.hero h1 .accent { color: var(--gold); }
.hero__lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 480px;
  margin: 0 0 10px;
}
.hero__lead strong { color: var(--ink); }
.hero__lead strong.gold { color: var(--gold); }
.hero__script { font-size: 34px; margin: 0 0 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__photo-wrap { position: relative; justify-self: center; }
.hero__photo-bg {
  position: absolute;
  inset: -18px -18px 24px -18px;
  border-radius: 220px 220px 26px 26px;
  background: linear-gradient(160deg, #efe6d5, #e6dcc8);
}
.hero__photo {
  position: relative;
  width: 380px;
  height: 470px;
  border-radius: 210px 210px 20px 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(60, 50, 30, .22);
  border: 1px solid var(--line-strong);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; display: block; }
.hero__badge {
  position: absolute;
  right: -26px;
  bottom: 22px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--ink);
  color: #f6f1e6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  box-shadow: 0 16px 34px rgba(34, 32, 27, .35);
  border: 2px solid var(--gold-light);
}
.hero__badge-check { color: var(--gold-light); font-size: 22px; line-height: 1; margin-bottom: 8px; }
.hero__badge-text {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1.5;
  text-transform: uppercase;
}

.trust {
  background: var(--bg-warm);
  border-top: 1px solid rgba(168, 129, 74, .18);
  border-bottom: 1px solid rgba(168, 129, 74, .18);
}
.trust__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 34px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.trust__item { display: flex; align-items: center; gap: 14px; font-size: 14px; font-weight: 600; line-height: 1.35; }
.trust__item::before {
  content: "✓";
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.step {
  position: relative;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(244, 180, 0, .22);
  border-radius: 18px;
  padding: 30px 24px;
  transition: transform .3s, border-color .3s;
}
.step:hover { transform: translateY(-6px); border-color: var(--yellow); }
.step--done { background: rgba(244, 180, 0, .12); border-color: var(--yellow); }
.step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 18px;
}
.step h3 {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.step p { font-size: 14px; color: var(--navy-muted); line-height: 1.6; margin: 0; }
.step--done .step__num { font-size: 24px; }
.step--done p { color: #e4ebf5; }

.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 24px;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.feature:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(60, 50, 30, .10); }
.feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--surface-alt);
  margin-bottom: 18px;
}
.feature h3 {
  font-size: 15.5px;
  font-weight: 800;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: .6px;
}
.feature p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin: 0; }

.teaser {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: var(--navy);
  color: var(--navy-text);
  display: grid;
  grid-template-columns: 1fr .85fr;
  box-shadow: 0 26px 60px rgba(22, 35, 63, .28);
}
.teaser__body { padding: 56px 52px; }
.teaser h2 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 36px;
  line-height: 1.06;
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.teaser h2 .accent { color: var(--yellow); }
.teaser p { font-size: 15.5px; color: var(--navy-muted); line-height: 1.65; max-width: 420px; margin: 0 0 26px; }
.teaser__points { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 30px; }
.teaser__points span { display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; }
.teaser__points span::before { content: "✓"; color: var(--yellow); }
.teaser .eyebrow { color: var(--yellow); font-weight: 800; letter-spacing: 3px; }
.teaser__media { position: relative; min-height: 380px; }
.teaser__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.teaser__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy) 0%, rgba(22, 35, 63, .35) 32%, transparent 60%);
}

/* --------------------------------------------------------------------------
   9. USŁUGI
   -------------------------------------------------------------------------- */
.meister { margin-top: 50px; }
.meister__head { max-width: var(--container); margin: 0 auto; padding: 82px 28px 30px; text-align: center; }
.meister__head h2 { margin: 0 0 16px; }
.meister__head p { font-size: 16px; line-height: 1.65; max-width: 640px; margin: 0 auto; }
.meister__body { max-width: var(--container); margin: 0 auto; padding: 20px 28px 82px; }

.panel { background: rgba(255, 255, 255, .05); border-radius: var(--radius-card); padding: 32px 30px; }
.panel--ok { border: 1px solid rgba(90, 190, 120, .4); }
.panel--no { border: 1px solid rgba(226, 110, 110, .4); }
.panel h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.panel--ok h3 { color: #7fd79b; }
.panel--no h3 { color: #eda0a0; }
.panel__badge {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.panel--ok .panel__badge { background: var(--green); }
.panel--no .panel__badge { background: var(--red); font-size: 15px; }
.panel ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.panel li { display: flex; gap: 11px; font-size: 14.5px; color: #dbe3ef; line-height: 1.5; }
.panel li::before { font-weight: 800; flex: none; }
.panel--ok li::before { content: "✓"; color: #5fce89; }
.panel--no li::before { content: "✕"; color: #e07a7a; }

.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 26px;
  box-shadow: 0 10px 26px rgba(60, 50, 30, .06);
}
.info-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--surface-alt);
  margin-bottom: 18px;
}
.info-card h2, .info-card h3 { font-size: 17px; font-weight: 800; margin: 0 0 10px; font-family: var(--font-body); }
.info-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin: 0; }

.address {
  background: var(--ink);
  color: #f6f1e6;
  border-radius: 24px;
  padding: 54px 44px;
  text-align: center;
  border: 2px solid var(--gold-light);
  box-shadow: 0 24px 54px rgba(34, 32, 27, .24);
}
.address__pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--ink);
  font-size: 26px;
  margin-bottom: 20px;
}
.address h2 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 38px;
  line-height: 1.05;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.address h2 .accent { color: var(--gold-light); }
.address__tag {
  display: inline-block;
  background: rgba(201, 162, 90, .16);
  border: 1px solid rgba(201, 162, 90, .5);
  color: #e9d9b4;
  font-weight: 700;
  font-size: 14.5px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  margin: 14px 0 0;
}

.gewerbe {
  background: var(--surface);
  border: 1px solid rgba(168, 129, 74, .18);
  border-radius: var(--radius-card);
  padding: 34px 30px;
  box-shadow: 0 12px 30px rgba(60, 50, 30, .06);
}
.gewerbe h2, .gewerbe h3 { font-size: 18px; font-weight: 800; margin: 0 0 6px; font-family: var(--font-body); }
.gewerbe__sub { font-size: 13px; color: var(--gold); font-weight: 700; margin: 0 0 20px; }
.gewerbe__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.gewerbe__list li { display: flex; gap: 9px; font-size: 14px; color: var(--text-soft); }
.gewerbe__list li::before { content: "•"; color: var(--gold); font-weight: 800; }
.gewerbe .script { font-size: 22px; margin: 22px 0 0; }

.checklist { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 14px; }
.checklist li { display: flex; gap: 12px; font-size: 14.5px; color: var(--text-soft); line-height: 1.45; }
.checklist li::before {
  content: "✓";
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

/* --------------------------------------------------------------------------
   10. O NAS
   -------------------------------------------------------------------------- */
.owner { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: center; }
.owner__photo-wrap { position: relative; justify-self: center; }
.owner__photo-bg {
  position: absolute;
  inset: -16px -16px 22px -16px;
  border-radius: 200px 200px 24px 24px;
  background: linear-gradient(160deg, #efe6d5, #e6dcc8);
}
.owner__photo {
  position: relative;
  width: 360px;
  height: 460px;
  border-radius: 190px 190px 20px 20px;
  overflow: hidden;
  box-shadow: 0 28px 56px rgba(60, 50, 30, .22);
  border: 1px solid var(--line-strong);
}
.owner__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 14%; display: block; }
.owner h2 { font-size: 40px; margin: 0 0 8px; }
.owner .script { font-size: 30px; margin: 0 0 22px; }
.owner p { font-size: 16px; color: var(--text-soft); line-height: 1.75; margin: 0 0 16px; }
.owner p:last-of-type { margin-bottom: 24px; }
.pills { display: flex; flex-wrap: wrap; gap: 12px; }
.pills span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid rgba(168, 129, 74, .28);
  border-radius: var(--radius-pill);
  padding: 9px 16px;
  font-size: 13.5px;
  font-weight: 600;
}
.pills span::before { content: "✓"; color: var(--gold); }

.stats::before { width: 34%; }
.stats__inner { max-width: var(--container-narrow); margin: 0 auto; padding: 60px 28px; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat__num { font-family: var(--font-head); font-size: 52px; font-weight: 700; color: var(--yellow); line-height: 1; }
.stat p { font-size: 14px; color: var(--navy-muted); margin: 10px 0 0; line-height: 1.4; }

/* --------------------------------------------------------------------------
   11. KONTAKT
   -------------------------------------------------------------------------- */
.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: 32px; align-items: start; }

.contact__info {
  background: var(--ink);
  color: #f1ece0;
  border-radius: 24px;
  padding: 44px 38px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 46px rgba(34, 32, 27, .22);
}
.contact__info::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 6px;
  background: var(--gold-light);
}
.contact__info h2 { font-size: 30px; margin: 0 0 8px; }
.contact__info .script { font-size: 26px; color: var(--gold-light); margin: 0 0 30px; }
.contact__rows { display: flex; flex-direction: column; gap: 22px; }
.contact__row { display: flex; align-items: center; gap: 16px; text-decoration: none; color: #f1ece0; }
.contact__row:hover { color: var(--gold-light); }
.contact__row-icon {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 162, 90, .16);
  border: 1px solid rgba(201, 162, 90, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 19px;
}
.contact__row-label {
  display: block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8f8776;
}
.contact__row-value { font-size: 16px; font-weight: 600; }
.contact__hours { margin-top: 34px; padding-top: 26px; border-top: 1px solid rgba(201, 162, 90, .22); }
.contact__hours-title {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8f8776;
  margin: 0 0 12px;
}
.contact__hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14.5px;
  color: #d7d0c1;
  margin-bottom: 8px;
}
.contact__hours-row:last-child { margin-bottom: 0; }
.contact__hours-row strong { font-weight: 700; color: #f1ece0; }

.form-card {
  background: var(--surface);
  border: 1px solid rgba(168, 129, 74, .18);
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: 0 20px 46px rgba(60, 50, 30, .08);
}
.form-card h2 { font-size: 30px; margin: 0 0 6px; }
.form-card__sub { font-size: 14.5px; color: var(--text-muted); margin: 0 0 26px; }

.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-soft);
  margin-bottom: 7px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid rgba(168, 129, 74, .28);
  border-radius: 12px;
  font-size: 15px;
  background: #fbf8f2;
  color: var(--ink);
  font-family: var(--font-body);
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; line-height: 1.5; }
.field select { cursor: pointer; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(168, 129, 74, .15);
}
.field input::placeholder,
.field textarea::placeholder { color: #a49d8f; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field-row .field { margin-bottom: 0; }

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 22px;
}
.consent input { flex: none; width: 17px; height: 17px; margin-top: 1px; accent-color: var(--gold); }

/* honeypot — niewidoczne pole pułapka na boty */
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-msg { border-radius: 10px; padding: 10px 14px; font-size: 13.5px; margin: 0 0 16px; }
.form-msg--error { background: #fbeaea; color: var(--red); border: 1px solid rgba(192, 57, 43, .3); }
.form-note { text-align: center; font-size: 12.5px; color: #8f8776; margin: 16px 0 0; }
.form-note a { font-weight: 700; }

.form-success { text-align: center; padding: 36px 10px; }
.form-success__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #eaf6ee;
  color: var(--green);
  font-size: 34px;
  margin-bottom: 20px;
}
.form-success h2 { font-size: 32px; margin: 0 0 10px; }
.form-success p {
  font-size: 16px;
  color: #5a544a;
  line-height: 1.6;
  margin: 0 auto 26px;
  max-width: 400px;
}

.quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 680px) { .quick-grid { grid-template-columns: 1fr; } }

.quick-card {
  text-decoration: none;
  background: var(--surface);
  border: 1px solid rgba(168, 129, 74, .18);
  border-radius: 18px;
  padding: 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 26px rgba(60, 50, 30, .05);
  transition: transform .3s, box-shadow .3s;
}
a.quick-card:hover { transform: translateY(-5px); box-shadow: 0 18px 38px rgba(60, 50, 30, .12); }
.quick-card__icon {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
}
.quick-card strong { display: block; font-size: 15px; font-weight: 800; color: var(--ink); }
.quick-card small { font-size: 13px; color: var(--text-muted); }
.quick-card--navy {
  background: var(--navy);
  color: var(--navy-text);
  border: none;
  box-shadow: 0 10px 26px rgba(22, 35, 63, .16);
}
.quick-card--navy .quick-card__icon { background: rgba(244, 180, 0, .16); color: var(--yellow); }
.quick-card--navy strong { color: var(--navy-text); }
.quick-card--navy small { color: var(--navy-muted); }

/* --------------------------------------------------------------------------
   12. STRONY TEKSTOWE (Impressum, prywatność, 404)
   -------------------------------------------------------------------------- */
.prose { max-width: 780px; margin: 0 auto; padding: 64px 28px 84px; }
.prose h2 { font-family: var(--font-head); font-weight: 600; font-size: 30px; margin: 40px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 17px; font-weight: 800; margin: 26px 0 8px; }
.prose p, .prose li { font-size: 15.5px; line-height: 1.75; color: var(--text-soft); }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 8px; }
.prose__note {
  background: #fdf6e6;
  border: 1px dashed var(--gold);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text-soft);
  margin: 0 0 32px;
}
.prose__fill { background: rgba(168, 129, 74, .14); padding: 1px 6px; border-radius: 4px; font-weight: 700; }

/* --------------------------------------------------------------------------
   13. ANIMACJE POJAWIANIA SIĘ
   -------------------------------------------------------------------------- */
/* .js dodaje skrypt w <head> — bez JS treść jest po prostu widoczna */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.22, .61, .36, 1), transform .7s cubic-bezier(.22, .61, .36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   14. RESPONSYWNOŚĆ
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .owner { grid-template-columns: 1fr; gap: 34px; }
  .teaser { grid-template-columns: 1fr; }
  .grid--split { grid-template-columns: 1fr; }
  .grid--3, .grid--4, .trust__inner, .stats__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .contact { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 820px) {
  .nav { display: none; }
  .burger { display: flex; }
  .logo__sub { display: none; }
}

@media (max-width: 680px) {
  .section, .hero, .navy__inner, .meister__head, .meister__body,
  .band__inner, .trust__inner, .stats__inner, .footer__top,
  .footer__bottom-inner, .page-hero__inner, .prose {
    padding-left: 20px;
    padding-right: 20px;
  }
  .grid--2, .grid--3, .grid--4, .trust__inner, .stats__grid, .footer__top,
  .gewerbe__list, .field-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 40px; }
  .hero__photo { width: 280px; height: 350px; }
  .hero__badge { width: 118px; height: 118px; right: -10px; }
  .page-hero h1, .section-head h2, .band h2 { font-size: 34px; }
  .navy h2, .teaser h2, .address h2, .owner h2 { font-size: 27px; }
  .owner__photo { width: 100%; max-width: 340px; height: auto; aspect-ratio: 3 / 4; margin: 0 auto; }
  .teaser__body { padding: 40px 26px; }
  .form-card, .contact__info { padding: 32px 24px; }
  .address { padding: 40px 24px; }
}
