/* =========================================================
   Drzewiej — design system (editorial-serif, ciepły rzemieślniczy)
   Paleta: primary #3D2B1F | accent #8B5E3C | bg cream
   Fonty: Fraunces (serif display) + DM Sans (body)
   ========================================================= */

/* --- Tokeny lokalne -------------------------------------- */
:root {
  --color-primary:    #3D2B1F;
  --color-primary600: #2E1F15;
  --color-accent:     #8B5E3C;
  --color-accentHover:#7A5233;
  --color-accentText: #FFFFFF;
  --color-bg:         #FDFAF6;
  --color-surface:    #F5F0E8;
  --color-surface2:   #EDE7DC;
  --color-border:     #D6CBBF;
  --text-strong:      #2C1D12;
  --text-body:        #5A4233;
  --text-muted:       #9E8878;
  --text-warm-light:  #F5F0E8;

  --font-heading: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --fs-base:  16px;
  --fs-sm:    14px;
  --fs-lg:    18px;
  --fs-xl:    22px;
  --fs-2xl:   28px;
  --fs-3xl:   36px;
  --fs-4xl:   52px;
  --fs-hero:  clamp(2.6rem, 6vw + 1rem, 4.8rem);

  --lh-heading: 1.05;
  --lh-body:    1.65;
  --tracking-heading: -0.025em;

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --radius-pill:999px;

  --space-1: 4px; --space-2: 8px; --space-3: 12px;
  --space-4: 16px; --space-5: 24px; --space-6: 32px;
  --space-7: 48px; --space-8: 64px; --space-9: 96px;
  --section-gap: 80px;

  --shadow-sm: 0 1px 3px rgba(61,43,31,.08);
  --shadow-md: 0 6px 24px rgba(61,43,31,.12);
  --shadow-lg: 0 16px 48px rgba(61,43,31,.16);
  --motion-dur: 200ms;
  --motion-ease: cubic-bezier(.2,.7,.2,1);
}

/* --- Reset ----------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden; /* L-007: overflow-x na html, nigdy na body */
}
body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  color: var(--text-body);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
input, button, textarea, select { font: inherit; color: inherit; }

/* --- Typografia ------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-style: italic;
  line-height: var(--lh-heading);
  letter-spacing: var(--tracking-heading);
  color: var(--text-strong);
  text-wrap: balance;
  font-weight: 700;
}
h1 { font-size: var(--fs-hero); }
h2 { font-size: clamp(1.55rem, 3.2vw, 2.1rem); }
h3 { font-size: var(--fs-xl); font-style: normal; font-weight: 600; }
p  { max-width: 65ch; }
.muted { color: var(--text-muted); }

/* --- Layout ---------------------------------------------- */
.container {
  width: 100%; max-width: 1120px;
  margin-inline: auto;
  padding-inline: var(--space-5);
}
.section { padding-block: var(--section-gap); }

/* L-018: blok nagłówka JEDNO wyrównanie — każde dziecko dostaje margin-inline:auto */
.sec-head { text-align: center; }
.sec-head > * { margin-inline: auto; max-width: 70ch; }
.sec-head > h2 { max-width: 28ch; }

.sec-head--left { text-align: left; }
.sec-head--left > * { margin-inline: 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body); font-style: normal;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem; /* L-005 */
}

/* --- Grid ------------------------------------------------ */
.grid { display: grid; gap: var(--space-6); }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
.stack > * + * { margin-top: var(--space-4); }
.cluster { display: flex; flex-wrap: wrap; gap: var(--space-3); align-items: center; }

/* --- Przyciski ------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  min-height: 52px; padding: 0 var(--space-6);
  border-radius: var(--radius-pill); border: 2px solid transparent;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  cursor: pointer; text-align: center;
  transition: transform var(--motion-dur) var(--motion-ease),
              background var(--motion-dur) var(--motion-ease),
              box-shadow var(--motion-dur) var(--motion-ease);
  text-decoration: none;
}
.btn-primary {
  background: var(--color-accent);
  color: var(--color-accentText);
  border-color: var(--color-accent);
}
.btn-primary:hover {
  background: var(--color-accentHover);
  border-color: var(--color-accentHover);
  transform: translateY(-1px); box-shadow: var(--shadow-md);
}
.btn-primary:active  { transform: translateY(0); }
.btn-primary:disabled{ opacity:.5; cursor:not-allowed; transform:none; }
.btn-ghost {
  background: transparent; border-color: var(--color-border); color: var(--text-strong);
}
.btn-ghost:hover { border-color: var(--color-accent); color: var(--color-accent); }
.btn-outline-light {
  background: transparent; border-color: rgba(245,240,232,.4); color: var(--text-warm-light);
}
.btn-outline-light:hover { border-color: var(--text-warm-light); }

.btn-tel {
  display: inline-flex; align-items: center; gap: .4em;
  min-height: 44px; padding: 0 var(--space-4);
  border-radius: var(--radius-pill);
  background: var(--color-accent); color: #fff;
  font-weight: 700; font-size: 0.9rem;
  border: 2px solid var(--color-accent);
  transition: background var(--motion-dur);
}
.btn-tel:hover { background: var(--color-accentHover); border-color: var(--color-accentHover); }

/* --- HEADER (content-driven, L-015) ---------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253,250,246,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  max-width: 1120px; margin-inline: auto;
  padding-inline: var(--space-5); padding-block: 14px;
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
}
.site-logo {
  font-family: var(--font-heading); font-style: italic;
  font-size: 1.45rem; font-weight: 800;
  color: var(--text-strong); white-space: nowrap; line-height: 1;
}
.site-logo span { color: var(--color-accent); }
.logo-sub {
  font-size: 0.7rem; font-family: var(--font-body); font-style: normal;
  font-weight: 500; color: var(--text-muted);
  letter-spacing: 0.04em; display: none;
}
@media (min-width: 480px) { .logo-sub { display: block; } }
.logo-wrap { display: flex; flex-direction: column; gap: 2px; }

.header-nav {
  display: none; flex-direction: column;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--color-bg); border-bottom: 1px solid var(--color-border);
  padding: var(--space-5); gap: var(--space-3);
}
.header-nav.open { display: flex; }
.header-nav a {
  font-size: 1rem; font-weight: 500; color: var(--text-body);
  padding: var(--space-2) 0; border-bottom: 1px solid var(--color-border);
}
.header-nav a:last-child { border-bottom: none; }
.header-nav a:hover { color: var(--color-accent); }

@media (min-width: 768px) {
  .header-nav {
    display: flex; flex-direction: row;
    position: static; padding: 0; border: none;
    background: transparent; gap: var(--space-5); align-items: center;
  }
  .header-nav a { font-size: 0.88rem; padding: 0; border: none; }
}

.header-cta { display: flex; align-items: center; gap: var(--space-3); flex-shrink: 0; }

/* Hamburger */
.nav-toggle {
  display: flex; flex-direction: column;
  background: none; border: none; cursor: pointer;
  padding: var(--space-2); min-height: 48px; min-width: 48px;
  align-items: center; justify-content: center;
}
.nav-toggle .bar {
  display: block; width: 22px; height: 2px;
  background: var(--text-strong); position: relative;
  transition: transform .2s, opacity .2s;
}
.nav-toggle .bar + .bar { margin-top: 5px; }
.nav-toggle.active .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active .bar:nth-child(2) { opacity: 0; }
.nav-toggle.active .bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
@media (min-width: 768px) { .nav-toggle { display: none; } }

/* --- HERO (archetyp: editorial-serif) ------------------- */
.hero {
  background: var(--color-surface);
  padding-block: clamp(var(--space-8), 10vw, 112px);
  position: relative; overflow: hidden;
}
/* Subtelna tekstura — makro słojów drewna — photo_1 bez twarzy (L-010) */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('images/photo_1.jpg') center 40%/cover no-repeat;
  opacity: 0.06; pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 1;
  max-width: 1120px; margin-inline: auto; padding-inline: var(--space-5);
}

/* editorial-serif: lewy blok, cienka linia */
.hero-kicker {
  display: inline-block;
  font-family: var(--font-body); font-style: normal;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-5); /* L-005 */
}

/* Rotator 2 linii (L-017: ≥9-10 s interwał) */
.hero-headline {
  font-family: var(--font-heading); font-style: italic;
  font-weight: 800; font-size: var(--fs-hero);
  color: var(--text-strong);
  line-height: 1.0; letter-spacing: -0.03em;
  max-width: 18ch;
}
.hero-line-fixed { display: block; }
.hero-rotating-wrap {
  display: inline-block; overflow: hidden;
  vertical-align: bottom; height: 1.05em;
}
.hero-rotating {
  display: flex; flex-direction: column;
  animation: heroRotate 12s ease-in-out infinite;
}
.hero-rotating span { color: var(--color-accent); }
@keyframes heroRotate {
  0%   { transform: translateY(0);      }
  30%  { transform: translateY(0);      }
  40%  { transform: translateY(-100%);  }
  70%  { transform: translateY(-100%);  }
  80%  { transform: translateY(-200%);  } /* jeśli 2 opcje → loop */
  100% { transform: translateY(-200%);  }
}
/* 2 opcje rotacji (interwał każdej ≥9-10 s) */
.hero-rotating span:nth-child(1) { } /* stół dębowy */
.hero-rotating span:nth-child(2) { } /* schody drewniane */
@media (prefers-reduced-motion: reduce) {
  .hero-rotating { animation: none; }
}

/* Cienka linia separatora — znak editorial-serif */
.hero-divider {
  width: 80px; height: 2px;
  background: var(--color-accent);
  margin: var(--space-6) 0;
  transition: width .8s var(--motion-ease);
}
.hero-inner.visible .hero-divider { width: 120px; }

.hero-lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-body);
  max-width: 52ch; line-height: 1.7;
  margin-bottom: var(--space-7);
}
/* L-009: wyśrodkowanie lead — NIE stosujemy, hero jest left-aligned editorial */
.hero-actions {
  display: flex; flex-wrap: wrap; gap: var(--space-4); align-items: center;
}
.hero-rating {
  font-size: 0.85rem; color: var(--text-muted); font-weight: 500;
}
.hero-rating strong { color: var(--text-strong); }
.hero-stars { color: #B45309; letter-spacing: .08em; }

/* --- Sekcja: Realizacje (fx-kolaz) ---------------------- */
.realizacje-section { background: var(--color-bg); }
.kolaz-grid {
  display: grid; gap: var(--space-3);
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 200px;
}
@media (min-width: 600px) {
  .kolaz-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 220px;
  }
  .kolaz-a { grid-column: 1 / 6;  grid-row: 1 / 3; }
  .kolaz-b { grid-column: 6 / 10; grid-row: 1 / 2; }
  .kolaz-c { grid-column: 10 /13; grid-row: 1 / 2; }
  .kolaz-d { grid-column: 6 / 10; grid-row: 2 / 3; }
  .kolaz-e { grid-column: 10 /13; grid-row: 2 / 3; }
}
.kolaz-item {
  border-radius: var(--radius-md); overflow: hidden; position: relative;
}
.kolaz-item img, .kolaz-item .media-frame {
  width: 100%; height: 100%;
}
.kolaz-item img { object-fit: cover; transition: transform .5s var(--motion-ease); }
.kolaz-item:hover img { transform: scale(1.05); }

/* Media frame placeholder */
.media-frame {
  background: var(--color-surface2);
  border-radius: var(--radius-md);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: var(--space-3);
  border: 2px dashed var(--color-border);
  color: var(--text-muted); font-size: 0.82rem; text-align: center;
  padding: var(--space-4); min-height: 160px;
}
.media-frame-icon { font-size: 2rem; opacity: .35; }

/* --- Sekcja: Oferta -------------------------------------- */
.oferta-section { background: var(--color-surface); }
.offer-cards-grid {
  display: grid; gap: var(--space-6);
}
@media (min-width: 768px) {
  .offer-cards-grid { grid-template-columns: repeat(3, 1fr); }
}
.offer-card {
  background: var(--color-bg); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: box-shadow var(--motion-dur) var(--motion-ease), transform var(--motion-dur) var(--motion-ease);
}
.offer-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.offer-card__media {
  aspect-ratio: 4/3; overflow: hidden;
  background: var(--color-surface2);
}
.offer-card__media img { width: 100%; height: 100%; object-fit: cover; }
.offer-card__body { padding: var(--space-5) var(--space-6) var(--space-6); flex: 1; display: flex; flex-direction: column; gap: var(--space-3); }
.offer-card__tag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--color-accent);
  font-family: var(--font-body); font-style: normal;
}
.offer-card__title {
  font-family: var(--font-heading); font-style: italic;
  font-size: 1.25rem; font-weight: 700; color: var(--text-strong); line-height: 1.2;
}
.offer-card__desc { font-size: 0.9rem; color: var(--text-body); flex: 1; max-width: 44ch; }
.offer-card__link {
  display: inline-flex; align-items: center; gap: .35em;
  color: var(--color-accent); font-weight: 600; font-size: 0.9rem;
  margin-top: var(--space-4); font-style: normal;
}
.offer-card__link:hover { text-decoration: underline; }

/* --- Sekcja: Jak pracujemy ------------------------------- */
.proces-section { background: var(--color-primary); color: var(--text-warm-light); }
.proces-section .sec-head .eyebrow { color: rgba(245,240,232,.6); }
.proces-section h2 { color: var(--text-warm-light); }
.proces-section .sec-lead { color: rgba(245,240,232,.75); }
.proces-steps { display: flex; flex-direction: column; gap: 0; margin-top: var(--space-8); }
.proces-step {
  display: flex; gap: var(--space-5); align-items: flex-start;
  padding: var(--space-6) 0; border-bottom: 1px solid rgba(255,255,255,.1);
}
.proces-step:last-child { border-bottom: none; }
@media (min-width: 768px) {
  .proces-steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
  .proces-step { padding: var(--space-7); border-bottom: none; border-right: 1px solid rgba(255,255,255,.1); }
  .proces-step:nth-child(even) { border-right: none; }
  .proces-step:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.1); }
}
.proces-num {
  font-family: var(--font-heading); font-style: italic;
  font-size: 2.8rem; font-weight: 800; color: var(--color-accent);
  line-height: 1; min-width: 2ch; flex-shrink: 0;
}
.proces-text h3 {
  font-family: var(--font-body); font-style: normal;
  font-size: 1.05rem; font-weight: 700; color: var(--text-warm-light); margin-bottom: var(--space-2);
}
.proces-text p { font-size: 0.9rem; color: rgba(245,240,232,.75); max-width: 44ch; }

/* --- Sekcja: Materiały ----------------------------------- */
.materialy-section { background: var(--color-bg); }
.materialy-intro {
  display: grid; gap: var(--space-8);
  align-items: center;
}
@media (min-width: 768px) {
  .materialy-intro { grid-template-columns: 1fr 1fr; }
}
.materialy-img {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3; background: var(--color-surface2);
}
.materialy-img img { width: 100%; height: 100%; object-fit: cover; }
.material-chips { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-5); }
.material-chip {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--color-surface); border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  font-size: 0.88rem; font-weight: 500; color: var(--text-strong);
  transition: background var(--motion-dur), border-color var(--motion-dur);
}
.material-chip:hover { background: var(--color-surface2); border-color: var(--color-accent); }
.chip-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }

/* --- Sekcja: Opinie -------------------------------------- */
.opinie-section { background: var(--color-surface); }
.rating-badge-wrap { display: flex; justify-content: center; margin-bottom: var(--space-8); }
.rating-badge {
  display: inline-flex; align-items: center; gap: var(--space-5);
  background: var(--color-primary); color: var(--text-warm-light);
  padding: var(--space-5) var(--space-7); border-radius: var(--radius-lg);
}
.rating-badge-num { font-family: var(--font-heading); font-style: italic; font-size: 2.8rem; font-weight: 800; }
.rating-badge-detail { display: flex; flex-direction: column; gap: 4px; }
.rating-badge-stars { color: #D97706; font-size: 1.1rem; letter-spacing: .1em; }
.rating-badge-label { font-size: 0.78rem; opacity: .65; }
.reviews-grid {
  display: grid; gap: var(--space-5);
}
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: var(--color-bg); border-radius: var(--radius-lg);
  padding: var(--space-6); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: var(--space-4);
  border-left: 3px solid var(--color-accent);
}
.review-stars { color: #B45309; font-size: 1rem; }
.review-quote {
  font-family: var(--font-heading); font-style: italic;
  font-size: 1.05rem; font-weight: 600;
  color: var(--text-strong); line-height: 1.55; max-width: 44ch;
}
.review-author { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }
.review-source { font-size: 0.75rem; color: var(--text-muted); opacity: .7; }

/* --- FAQ akordeon ---------------------------------------- */
.faq-section { background: var(--color-bg); }
.faq-list { max-width: 720px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-question {
  width: 100%; text-align: left; padding: var(--space-5) 0;
  background: none; border: none;
  display: flex; justify-content: space-between; align-items: center; gap: var(--space-4);
  cursor: pointer; font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  color: var(--text-strong); min-height: 52px;
}
/* zakaz chevronów (dir zasady) — + / − */
.faq-icon {
  flex-shrink: 0; width: 28px; height: 28px;
  border-radius: 50%; border: 2px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 300; line-height: 1;
  color: var(--color-accent);
  transition: background var(--motion-dur), border-color var(--motion-dur), transform var(--motion-dur);
}
.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--color-accent); border-color: var(--color-accent); color: #fff;
  transform: rotate(45deg);
}
.faq-answer { overflow: hidden; max-height: 0; padding-bottom: 0; transition: max-height .35s ease, padding-bottom .35s; }
.faq-answer.open { max-height: 400px; padding-bottom: var(--space-5); }
.faq-answer p { font-size: 0.95rem; color: var(--text-body); max-width: 65ch; }

/* --- Obszar dojazdu -------------------------------------- */
.obszar-section { background: var(--color-surface); }
.obszar-chips { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.obszar-chip {
  padding: var(--space-2) var(--space-4);
  background: var(--color-bg); border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: 0.9rem; font-weight: 500; color: var(--text-strong);
}
.obszar-chip--primary {
  background: var(--color-accent); color: #fff; border-color: var(--color-accent);
}

/* --- Pre-footer CTA -------------------------------------- */
.prefooter {
  background: var(--color-primary); color: var(--text-warm-light);
  padding-block: var(--section-gap); text-align: center;
}
/* L-018: prefooter .sec-head — wyśrodkowanie z max-width + auto-margines */
.prefooter .prefooter-head { text-align: center; }
.prefooter .prefooter-head > * { margin-inline: auto; }
.prefooter h2 {
  font-family: var(--font-heading); font-style: italic;
  color: var(--text-warm-light);
  font-size: clamp(1.6rem, 4vw, 2.6rem); max-width: 28ch;
  margin-inline: auto; margin-bottom: var(--space-4);
}
.prefooter p { opacity: .75; max-width: 50ch; margin-inline: auto; margin-bottom: var(--space-7); }
.prefooter .btn-primary { background: var(--color-accent); border-color: var(--color-accent); }
.prefooter .tel-link {
  color: rgba(245,240,232,.7); font-size: 0.9rem;
  display: block; margin-top: var(--space-4);
}
.prefooter .tel-link a { color: var(--text-warm-light); font-weight: 700; }

/* --- Footer NAP ------------------------------------------ */
.site-footer {
  background: var(--color-primary600);
  color: rgba(245,240,232,.65); padding-block: var(--space-8);
  font-size: 0.875rem;
}
.footer-inner {
  max-width: 1120px; margin-inline: auto; padding-inline: var(--space-5);
  display: grid; gap: var(--space-7);
}
@media (min-width: 768px) { .footer-inner { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-logo {
  font-family: var(--font-heading); font-style: italic;
  font-size: 1.55rem; font-weight: 800; color: var(--text-warm-light);
}
.footer-logo span { color: var(--color-accent); }
.footer-tagline { font-size: 0.78rem; opacity: .5; margin-top: var(--space-2); }
.footer-col h4 {
  font-family: var(--font-body); font-style: normal;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(245,240,232,.4); margin-bottom: var(--space-4);
}
.footer-col p, .footer-col a { color: rgba(245,240,232,.65); line-height: 1.9; display: block; }
.footer-col a:hover { color: var(--text-warm-light); }
.footer-bottom {
  max-width: 1120px; margin-inline: auto; padding-inline: var(--space-5);
  margin-top: var(--space-7); padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 0.78rem; color: rgba(245,240,232,.35);
  display: flex; flex-wrap: wrap; gap: var(--space-4); justify-content: space-between;
}

/* --- Sticky mobile CTA (L-004) --------------------------- */
.mobile-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--color-accent);
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-3) var(--space-5);
  transform: translateY(110%);
  transition: transform .35s var(--motion-ease);
  gap: var(--space-3);
}
.mobile-cta.show { transform: translateY(0); }
@media (min-width: 768px) { .mobile-cta { display: none; } }
.mobile-cta a {
  color: #fff; font-weight: 700; font-size: 0.95rem;
  display: flex; align-items: center; gap: .35em;
}
.mobile-cta-label { color: rgba(255,255,255,.75); font-size: 0.78rem; }

/* --- Reveal (scroll-triggered) --------------------------- */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .55s var(--motion-ease), transform .55s var(--motion-ease);
}
[data-reveal].visible { opacity: 1; transform: none; }
[data-stagger] > * {
  opacity: 0; transform: translateY(20px);
  transition: opacity .45s var(--motion-ease), transform .45s var(--motion-ease);
}
[data-stagger] > *.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-stagger] > * { opacity: 1 !important; transform: none !important; }
}

/* --- Podstrony: .page-hero (L-018) ----------------------- */
.page-hero { background: var(--color-surface); padding-block: var(--space-9) var(--space-8); }
/* L-018: page-hero JEDNO wyrównanie + auto-margines */
.page-hero > .container { text-align: center; }
.page-hero > .container > * { margin-inline: auto; }
.page-hero > .container h1 { max-width: 22ch; }
.page-hero > .container p  { max-width: 58ch; margin-top: var(--space-4); }
.breadcrumb {
  font-size: 0.78rem; color: var(--text-muted);
  display: flex; gap: .5em; align-items: center; flex-wrap: wrap; justify-content: center;
  margin-bottom: var(--space-5);
}
.breadcrumb a { color: var(--color-accent); }
.breadcrumb-sep { opacity: .4; }

/* --- NAP contact card ------------------------------------ */
.contact-card {
  background: var(--color-surface); border-radius: var(--radius-lg);
  padding: var(--space-7); display: flex; flex-direction: column; gap: var(--space-5);
}
.contact-row { display: flex; align-items: flex-start; gap: var(--space-4); }
.contact-icon {
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  background: var(--color-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #fff; flex-shrink: 0;
}
.contact-label { font-size: 0.72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 2px; }
.contact-value { font-weight: 600; color: var(--text-strong); font-size: 1rem; }
.contact-value a { color: var(--color-accent); }
.contact-value a:hover { text-decoration: underline; }

/* --- Utilities ------------------------------------------- */
.text-center { text-align: center; }
.mt-2 { margin-top: var(--space-5); }
.mt-3 { margin-top: var(--space-6); }
.sec-lead { font-size: 1.05rem; color: var(--text-body); max-width: 58ch; margin-top: var(--space-4); }
