/* ==========================================================================
   Strona firmy sprzątającej — arkusz stylów
   Paleta: beż / oliwkowa zieleń
   ========================================================================== */

:root {
  /* --- kolory --- */
  --beige-50:  #fcfaf6;
  --beige-100: #f6f1e7;
  --beige-200: #ece3d3;
  --beige-300: #ddd0b8;
  --green-900: #182038;
  --green-800: #24304f;
  --green-700: #2f3f6b;
  --green-600: #3f5188;
  --green-500: #4b5f9e;
  --green-200: #d5dced;
  --ink:       #1f2330;
  --muted:     #656b78;
  --line:      #e3dbc9;
  --white:     #ffffff;
  --gold:      #b08d4f;

  /* --- typografia --- */
  --font-head: "Fraunces", "Georgia", "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  /* --- kształty --- */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 26px;
  --shadow-sm: 0 2px 8px rgba(35, 40, 31, .06);
  --shadow-md: 0 10px 30px rgba(35, 40, 31, .09);
  --shadow-lg: 0 24px 60px rgba(35, 40, 31, .13);

  /* --- siatka --- */
  --wrap: 1140px;
  --pad: clamp(1.1rem, 4vw, 2rem);
  --section: clamp(3.5rem, 8vw, 6.5rem);
}

*, *::before, *::after { box-sizing: border-box; }

/* bez niebieskiego błysku przy dotknięciu na telefonie */
a, button, label, summary, input, select { -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--beige-50);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  color: var(--green-900);
  margin: 0 0 .6em;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); }
h2 { font-size: clamp(1.75rem, 4.2vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2.4vw, 1.4rem); }

p { margin: 0 0 1.1em; }
a { color: var(--green-700); }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section { padding-block: var(--section); }
.section--beige { background: var(--beige-100); }
.section--green {
  background: var(--green-800);
  color: var(--beige-100);
}
.section--green h2, .section--green h3 { color: var(--beige-50); }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: .9rem;
}
.section--green .eyebrow { color: var(--green-200); }

.lead {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: var(--muted);
  max-width: 62ch;
}
.section--green .lead { color: rgba(246, 241, 231, .82); }

.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* --------------------------------------------------------------- przyciski */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.6rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  font-size: .98rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, background-color .2s ease, box-shadow .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--green-700);
  color: var(--beige-50);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--green-800); box-shadow: var(--shadow-md); }

.btn--ghost {
  background: transparent;
  border-color: var(--green-700);
  color: var(--green-800);
}
.btn--ghost:hover { background: var(--green-700); color: var(--beige-50); }

.btn--light {
  background: var(--beige-100);
  color: var(--green-800);
}
.btn--light:hover { background: var(--white); }

.btn--wa { background: #2c9e57; color: #fff; }
.btn--wa:hover { background: #26894b; }

.btn--lg { padding: 1.05rem 2.1rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

/* ------------------------------------------------------------------ nagłówek */

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(252, 250, 246, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header__bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  color: var(--green-900);
  margin-right: auto;
}
.logo__mark {
  width: 40px; height: 40px;
  flex: none;
  border-radius: 12px;
  background: var(--green-700);
  color: var(--beige-100);
  display: grid;
  place-items: center;
}
.logo__mark svg { width: 22px; height: 22px; }
.logo__name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.22rem;
  line-height: 1.1;
  display: block;
}
.logo__tag {
  display: block;
  font-size: .7rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav { display: flex; align-items: center; gap: .35rem; }
.nav a {
  padding: .55rem .85rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
  font-size: .96rem;
  font-weight: 500;
  transition: background-color .18s ease, color .18s ease;
}
.nav a:hover { background: var(--beige-200); }
.nav a[aria-current="page"] { color: var(--green-700); font-weight: 700; }

.header__cta { display: flex; align-items: center; gap: .6rem; }

.header__phone {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--green-800);
  white-space: nowrap;
}
.header__phone svg { width: 17px; height: 17px; }

.burger {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.burger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--green-800);
  position: relative;
  transition: background-color .2s ease;
}
.burger span::before, .burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px; height: 2px;
  background: var(--green-800);
  transition: transform .25s ease;
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 940px) {
  .burger { display: grid; }
  .header__phone span { display: none; }
  .header__cta .btn { display: none; }
  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: .2rem;
    padding: .8rem var(--pad) 1.4rem;
    background: var(--beige-50);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: .8rem .9rem; font-size: 1.05rem; }
  .nav .btn { margin-top: .5rem; }
}

/* ---------------------------------------------------------------------- hero */

.hero {
  position: relative;
  padding-block: clamp(3rem, 7vw, 5.5rem) clamp(3.5rem, 8vw, 6rem);
  background:
    radial-gradient(1000px 500px at 82% -10%, var(--green-200) 0%, transparent 60%),
    linear-gradient(180deg, var(--beige-100), var(--beige-50));
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; } }

.hero h1 { margin-bottom: .5em; }
.hero h1 em {
  font-style: normal;
  color: var(--green-600);
  position: relative;
  white-space: nowrap;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: .06em;
  height: .28em;
  background: var(--green-200);
  border-radius: 4px;
  z-index: -1;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}
.hero__badges li {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .9rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .87rem;
  font-weight: 600;
  color: var(--green-800);
  box-shadow: var(--shadow-sm);
}
.hero__badges svg { width: 15px; height: 15px; color: var(--green-600); }

/* karta „wycena w 5 minut” obok hero */
.quote-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: var(--shadow-lg);
}
.quote-card h3 { margin-bottom: .35em; }
.quote-card p { font-size: .95rem; color: var(--muted); }

.field { margin-bottom: 1rem; }
.field > label {
  display: block;
  font-size: .87rem;
  font-weight: 600;
  margin-bottom: .35rem;
  color: var(--green-800);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: .8rem .95rem;
  font: inherit;
  font-size: .98rem;
  color: var(--ink);
  background: var(--beige-50);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(102, 144, 108, .18);
}
.field__hint { font-size: .8rem; color: var(--muted); margin: .35rem 0 0; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------- pasek zaufania */

.trust {
  background: var(--green-800);
  color: var(--beige-100);
  padding-block: 1.4rem;
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
@media (max-width: 760px) { .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; } }
.trust__num {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 600;
  display: block;
  color: var(--white);
}
.trust__lbl { font-size: .84rem; color: rgba(246, 241, 231, .75); }

/* --------------------------------------------------------------------- karty */

.grid {
  display: grid;
  gap: 1.3rem;
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-200); }
.card h3 { margin-bottom: .4em; }
.card p { color: var(--muted); font-size: .96rem; margin-bottom: 1rem; }
.card > *:last-child { margin-bottom: 0; }
.card__link {
  margin-top: auto;
  font-weight: 600;
  font-size: .94rem;
  text-decoration: none;
  color: var(--green-700);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.card__link::after { content: "→"; transition: transform .18s ease; }
.card:hover .card__link::after { transform: translateX(4px); }

.icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--beige-100);
  color: var(--green-700);
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
}
.icon svg { width: 26px; height: 26px; }
.card:hover .icon { background: var(--green-200); }

.ticks { list-style: none; padding: 0; margin: 0; }
.ticks li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: .55rem;
  font-size: .96rem;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: .45em;
  width: 1.1rem; height: 1.1rem;
  border-radius: 50%;
  background: var(--green-200) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233d5a41' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.section--green .ticks li::before { background-color: var(--green-600); }

/* --------------------------------------------------------------- kroki „jak to działa” */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
  counter-reset: step;
}
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

.step { position: relative; padding-top: 3.4rem; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 0; left: 0;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--beige-200);
  color: var(--green-800);
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
}
.section--green .step::before { background: var(--green-600); color: var(--beige-50); }
.step h3 { font-size: 1.1rem; margin-bottom: .3em; }
.step p { font-size: .93rem; color: var(--muted); margin: 0; }
.section--green .step p { color: rgba(246, 241, 231, .78); }

/* ------------------------------------------------------------------- opinie */

.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.7rem;
  box-shadow: var(--shadow-sm);
}
.quote__stars { color: var(--gold); letter-spacing: .12em; font-size: .95rem; margin-bottom: .7rem; }
.quote p { font-size: 1rem; color: var(--ink); }
.quote__who { display: flex; align-items: center; gap: .7rem; margin-top: 1.1rem; }
.quote__ava {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green-200);
  color: var(--green-800);
  display: grid;
  place-items: center;
  font-weight: 700;
  flex: none;
}
.quote__name { font-weight: 600; font-size: .94rem; line-height: 1.3; }
.quote__meta { font-size: .82rem; color: var(--muted); }

/* -------------------------------------------------------------------- cennik */

.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.9rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.price-card--featured {
  border-color: var(--green-600);
  box-shadow: var(--shadow-md);
  position: relative;
}
.price-card--featured::after {
  content: "Najczęściej wybierane";
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--green-700);
  color: var(--beige-50);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card__amount {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--green-800);
  line-height: 1;
}
.price-card__unit { font-size: .9rem; color: var(--muted); margin-bottom: 1.2rem; display: block; }
.price-card .ticks { margin-bottom: 1.6rem; }
.price-card .btn { margin-top: auto; }

.table-wrap { overflow-x: auto; border-radius: var(--r-md); border: 1px solid var(--line); background: var(--white); }
table { width: 100%; border-collapse: collapse; min-width: 520px; }
th, td { text-align: left; padding: .95rem 1.2rem; border-bottom: 1px solid var(--line); font-size: .96rem; }
th { background: var(--beige-100); font-weight: 700; color: var(--green-800); }
tbody tr:last-child td { border-bottom: 0; }
td:last-child, th:last-child { text-align: right; white-space: nowrap; font-weight: 600; }

/* --------------------------------------------------------------- kalkulator */

.calc {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 1.6rem;
  align-items: start;
}
@media (max-width: 860px) { .calc { grid-template-columns: 1fr; } }

.calc__panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.3rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
}

.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  position: relative;
  display: inline-flex;
}
.chip input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
  margin: 0;
}
.chip span {
  padding: .6rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--beige-50);
  font-size: .93rem;
  font-weight: 600;
  color: var(--ink);
  transition: all .18s ease;
}
.chip input:checked + span {
  background: var(--green-700);
  border-color: var(--green-700);
  color: var(--beige-50);
}
.chip input:focus-visible + span { box-shadow: 0 0 0 3px rgba(102, 144, 108, .3); }

.range-row { display: flex; align-items: center; gap: 1rem; }
.range-row input[type="range"] { flex: 1; accent-color: var(--green-600); }
.range-val {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green-800);
  min-width: 5.5ch;
  text-align: right;
}

.calc__result {
  background: var(--green-800);
  color: var(--beige-100);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 3vw, 2rem);
  position: sticky;
  top: 100px;
}
.calc__result h3 { color: var(--beige-50); font-size: 1.1rem; }
.calc__price {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 6vw, 3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.05;
  margin: .3rem 0 .1rem;
}
.calc__note { font-size: .85rem; color: rgba(246, 241, 231, .72); }
.calc__lines { list-style: none; padding: 1.1rem 0 0; margin: 1.1rem 0 1.4rem; border-top: 1px solid rgba(246, 241, 231, .2); }
.calc__lines li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: .9rem;
  padding: .3rem 0;
  color: rgba(246, 241, 231, .85);
}

/* ----------------------------------------------------------------------- FAQ */

.faq { max-width: 820px; margin-inline: auto; }
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: .8rem;
  overflow: hidden;
}
.faq summary {
  padding: 1.15rem 3.2rem 1.15rem 1.4rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  list-style: none;
  color: var(--green-900);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 1.3rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--green-600);
  line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq details[open] summary { background: var(--beige-100); }
.faq__body { padding: 1.2rem 1.4rem; border-top: 1px solid var(--line); }
.faq__body p:last-child { margin-bottom: 0; }
.faq__body { color: var(--muted); font-size: .97rem; }

/* -------------------------------------------------------------------- kontakt */

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-item {
  display: flex;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-item:last-of-type { border-bottom: 0; }
.contact-item__ico {
  width: 44px; height: 44px;
  flex: none;
  border-radius: 12px;
  background: var(--beige-200);
  color: var(--green-700);
  display: grid;
  place-items: center;
}
.contact-item__ico svg { width: 21px; height: 21px; }
.contact-item h3 { font-size: 1rem; margin-bottom: .15em; }
.contact-item p, .contact-item a { margin: 0; font-size: .97rem; color: var(--muted); text-decoration: none; }
.contact-item a:hover { color: var(--green-700); text-decoration: underline; }
.contact-item strong { color: var(--ink); font-size: 1.05rem; }

.form-note {
  padding: 1rem 1.2rem;
  border-radius: var(--r-sm);
  font-size: .93rem;
  margin-top: 1rem;
}
.form-note--ok { background: var(--green-200); color: var(--green-900); }
.form-note--err { background: #f7e2d8; color: #8a3b16; }

.areas { display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; margin: 0; list-style: none; }
.areas li {
  padding: .45rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 500;
}
.section--green .areas li { background: rgba(252, 250, 246, .1); border-color: rgba(252, 250, 246, .22); color: var(--beige-100); }

/* ----------------------------------------------------------------------- CTA */

.cta-band {
  background: var(--green-800);
  color: var(--beige-100);
  border-radius: var(--r-lg);
  padding: clamp(2rem, 5vw, 3.4rem);
  text-align: center;
}
.cta-band h2 { color: var(--beige-50); }
.cta-band p { color: rgba(246, 241, 231, .82); max-width: 55ch; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; margin-top: 1.6rem; }

/* -------------------------------------------------------------------- stopka */

.footer {
  background: var(--green-900);
  color: rgba(246, 241, 231, .74);
  padding-block: clamp(2.5rem, 6vw, 4rem) 1.5rem;
  font-size: .93rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 780px) { .footer__grid { grid-template-columns: 1fr; gap: 1.8rem; } }
.footer h4 {
  color: var(--beige-50);
  font-family: var(--font-body);
  font-size: .82rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: .5rem; }
.footer a { color: rgba(246, 241, 231, .74); text-decoration: none; }
.footer a:hover { color: var(--beige-50); text-decoration: underline; }
.footer .logo { color: var(--beige-50); margin-bottom: 1rem; }
.footer .logo__mark { background: var(--green-600); }
.footer .logo__tag { color: rgba(246, 241, 231, .6); }
.footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(246, 241, 231, .15);
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  justify-content: space-between;
  font-size: .85rem;
  color: rgba(246, 241, 231, .55);
}

/* --------------------------------------------------------- pasek mobilny CTA */

.mobile-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 70;
  display: none;
  gap: .6rem;
  padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(252, 250, 246, .96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}
.mobile-bar .btn { flex: 1; padding: .8rem 1rem; font-size: .95rem; }
@media (max-width: 700px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 76px; }
}

/* -------------------------------------------------------------- nagłówek strony */

.page-head {
  background: linear-gradient(180deg, var(--beige-100), var(--beige-50));
  padding-block: clamp(2.5rem, 6vw, 4.2rem) clamp(2rem, 5vw, 3rem);
  border-bottom: 1px solid var(--line);
}
.crumbs { font-size: .85rem; color: var(--muted); margin-bottom: .8rem; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--green-700); text-decoration: underline; }

/* -------------------------------------------------------------- animacje */

/* Elementy chowamy tylko wtedy, gdy JavaScript działa (klasa .js na <html>).
   Bez JS treść jest normalnie widoczna — nic się nie „gubi". */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.js .reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
