@charset "UTF-8";
/* =============================================================================
   site.css — charakter marki OSK "ZDZIS" Rafal Perz
   Paleta: primary #2547D0 (granat), accent #EAB308 (zolty), jasne tlo
   Styl: electric-pop / playful-pop, card-flow, offset-card hero
   Fonty: Poppins (display) + Work Sans (body) — seedem ciepły-przyjazny
   Uwaga: tokens.css definiuje zmienne. Site.css NADPISUJE --font-heading/--font-body
   i dodaje warstwe brand. NIE zmienia kolorow z tokens.css.
   ============================================================================= */

/* --- Fonty Google ---------------------------------------------------------- */
/* Poppins 700,800 (headings) + Work Sans 400,600 (body) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700;800&family=Work+Sans:wght@400;600&display=swap');

/* --- Nadpisanie fontow z tokens.css ---------------------------------------- */
:root {
  --font-heading: 'Poppins', system-ui, sans-serif;
  --font-body: 'Work Sans', system-ui, sans-serif;
}

/* eyebrow--ruled: accent (#EAB308) na jasnym tle = kontrast 1.78 (L-024/L-027 FAIL)
   Nadpisujemy na primary (#2547D0) = kontrast 5.9 na #FFF (WCAG AA) */
.section-white .eyebrow--ruled,
.section-surface .eyebrow--ruled,
main > section:not(.cta-section):not(.stats-bar) .eyebrow--ruled {
  color: var(--color-primary);
}

/* --- Brand: Logotyp tekstowy w headerze ------------------------------------ */
.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(14px, 3vw, 18px);
  color: var(--color-primary);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand-name span {
  color: var(--color-accent);
}
.brand-tagline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* --- Header CTA link ------------------------------------------------------ */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-accent);
  color: var(--color-accentText);
  font-weight: 700;
  font-size: var(--fs-sm);
  padding: 0 16px;
  min-height: 40px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
  transition: background var(--motion-dur) var(--motion-ease),
              transform var(--motion-dur) var(--motion-ease);
  white-space: nowrap;
  text-decoration: none;
}
.header-cta:hover {
  background: var(--color-accentHover);
  transform: translateY(-1px);
}

/* --- HERO offset-card ------------------------------------------------------ */
/* Archetype: offset-card — plywajaca karta na bloku koloru (primary) */
.hero {
  position: relative;
  background: var(--color-primary);
  overflow: hidden;
  padding: 0;
}
.hero::before {
  /* dekoracyjne tlo: ukosne pole */
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: var(--color-accent);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.12;
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  padding: clamp(48px, 8vw, 96px) 0;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
}
.hero__text {
  display: grid;
  gap: var(--space-5);
  align-content: start;
}
.hero .eyebrow {
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0;
}
.hero h1 {
  font-size: clamp(32px, 7vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  text-wrap: balance;
  /* solid color fallback dla kontrastu — bez text-shadow który bleeduje */
  color: #ffffff;
}
/* styles.css linia 124 definiuje .hero p.lead { color: var(--text-body) } — nadpisujemy
   z wyższą specyficznością. #fff na primary #2547D0 = kontrast 5.9 (WCAG AA pass) */
.hero p.lead,
.hero .lead {
  font-size: var(--fs-lg);
  color: #ffffff !important;
  max-width: 46ch;
}
.hero .hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}
.hero .btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-accent);
  color: var(--color-accentText);
  font-weight: 700;
  font-size: var(--fs-lg);
  padding: 0 var(--space-6);
  min-height: 56px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--motion-dur) var(--motion-ease),
              transform var(--motion-dur) var(--motion-ease),
              box-shadow var(--motion-dur) var(--motion-ease);
  white-space: nowrap;
}
.hero .btn-hero:hover {
  background: var(--color-accentHover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(234,179,8,0.35);
}
.hero .btn-hero:active { transform: translateY(0); }
.hero .btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: var(--fs-base);
  padding: 0 var(--space-5);
  min-height: 48px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.3);
  text-decoration: none;
  transition: border-color var(--motion-dur) var(--motion-ease),
              color var(--motion-dur) var(--motion-ease);
}
.hero .btn-ghost-light:hover {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}

/* Trust bar w hero */
.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-trust .stars-row {
  display: flex;
  gap: 3px;
}
.hero-trust .stars-row svg {
  width: 18px;
  height: 18px;
  fill: var(--color-accent);
}
.hero-trust .trust-label {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}

/* Karta float — prawa kolumna hero */
.hero__card {
  position: relative;
}
.hero-offset-card {
  background: #fff;
  border-radius: 24px;
  padding: var(--space-6);
  box-shadow: 0 24px 64px rgba(0,0,0,0.22);
  position: relative;
  display: grid;
  gap: var(--space-4);
  /* offset efekt */
  transform: rotate(1.5deg);
  transition: transform 0.4s var(--motion-ease);
}
.hero-offset-card:hover {
  transform: rotate(0deg) scale(1.01);
}
.hero-offset-card .card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-primary100);
  color: var(--color-primary);
  font-weight: 700;
  font-size: var(--fs-sm);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: fit-content;
}
.hero-offset-card .card-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--fs-xl);
  color: var(--text-strong);
  line-height: 1.2;
}
.hero-offset-card .card-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: var(--space-3);
}
.hero-offset-card .card-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-base);
  color: var(--text-body);
  font-weight: 600;
}
.hero-offset-card .card-list li::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
  display: block;
  /* SVG checkmark wewnatrz */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23111' d='M15.3 6.3a1 1 0 0 0-1.4 0L8.5 11.6 6.1 9.3a1 1 0 1 0-1.4 1.4l3 3a1 1 0 0 0 1.4 0l6-6a1 1 0 0 0 0-1.4z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}
.hero-offset-card .card-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: var(--fs-lg);
  padding: 12px var(--space-5);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background var(--motion-dur) var(--motion-ease);
  justify-content: center;
}
.hero-offset-card .card-phone:hover {
  background: var(--color-primary600);
}
.hero-offset-card .card-phone svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: currentColor;
}

/* --- Pasek liczb ----------------------------------------------------------- */
.stats-bar {
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-7) 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-5);
  text-align: center;
}
.stat-item {
  display: grid;
  gap: var(--space-2);
  justify-items: center;
}
.stat-item .stat-val {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(28px, 5vw, 44px);
  color: var(--color-accent);
  line-height: 1;
}
.stat-item .stat-label {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

/* --- Sekcje brandowe ------------------------------------------------------- */
.section-white  { background: var(--color-bg); }
.section-surface{ background: var(--color-surface); }
.section-primary{ background: var(--color-primary); color: #fff; }
.section-primary h2,
.section-primary h3 { color: #fff; }

/* --- Kafle "Dlaczego my" --------------------------------------------------- */
.why-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.why-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: grid;
  gap: var(--space-3);
  box-shadow: var(--shadow-sm);
  transition: transform var(--motion-dur) var(--motion-ease),
              box-shadow var(--motion-dur) var(--motion-ease);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--color-primary100);
  display: grid;
  place-items: center;
}
.why-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--color-primary);
}
.why-card h3 {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--text-strong);
  margin: 0;
}
.why-card p {
  font-size: var(--fs-base);
  color: var(--text-body);
  margin: 0;
  max-width: 100%;
}

/* --- Karty kursow ---------------------------------------------------------- */
.courses-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.course-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-rows: auto 1fr auto;
  transition: transform var(--motion-dur) var(--motion-ease),
              box-shadow var(--motion-dur) var(--motion-ease);
}
.course-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.course-card__head {
  background: var(--color-primary);
  padding: var(--space-5) var(--space-5) var(--space-4);
  display: grid;
  gap: var(--space-2);
}
.course-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-accent);
  color: var(--color-accentText);
  font-weight: 700;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
}
.course-card__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--fs-xl);
  color: #fff;
  margin: 0;
  line-height: 1.15;
}
.course-card__body {
  padding: var(--space-5);
  display: grid;
  gap: var(--space-3);
}
.course-card__body p {
  font-size: var(--fs-base);
  color: var(--text-body);
  max-width: 100%;
}
.course-card__features {
  list-style: none;
  padding: 0;
  display: grid;
  gap: var(--space-2);
}
.course-card__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  color: var(--text-body);
  font-weight: 600;
}
.course-card__features li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}
.course-card__footer {
  padding: var(--space-4) var(--space-5);
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.course-card__price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--fs-xl);
  color: var(--color-primary);
}
.course-card__price small {
  font-size: var(--fs-sm);
  font-weight: 400;
  color: var(--text-muted);
  display: block;
  font-family: var(--font-body);
}
.course-card .btn-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-accent);
  color: var(--color-accentText);
  font-weight: 700;
  font-size: var(--fs-sm);
  padding: 0 var(--space-4);
  min-height: 44px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--motion-dur) var(--motion-ease);
}
.course-card .btn-call:hover { background: var(--color-accentHover); }
.course-card .btn-call svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* --- Kroki kursu ----------------------------------------------------------- */
.steps-list {
  display: grid;
  gap: var(--space-5);
  counter-reset: steps;
  position: relative;
}
@media (min-width: 768px) {
  .steps-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.step-item {
  display: grid;
  gap: var(--space-3);
  padding: var(--space-5);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  counter-increment: steps;
}
.step-item::before {
  content: counter(steps);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 48px;
  line-height: 1;
  color: var(--color-primary100);
  position: absolute;
  top: var(--space-4);
  right: var(--space-5);
  pointer-events: none;
}
.step-item h3 {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--text-strong);
  margin: 0;
  position: relative;
}
.step-item p {
  font-size: var(--fs-base);
  color: var(--text-body);
  max-width: 100%;
  margin: 0;
  position: relative;
}

/* --- Opinie ---------------------------------------------------------------- */
.reviews-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.review-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: grid;
  gap: var(--space-4);
  box-shadow: var(--shadow-sm);
  position: relative;
}
/* cudzyslow dekoracyjny przez CSS, bez emoji */
.review-card::before {
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 64px;
  line-height: 1;
  color: var(--color-primary100);
  position: absolute;
  top: 12px;
  left: 20px;
  pointer-events: none;
  user-select: none;
}
.review-card blockquote {
  font-size: var(--fs-base);
  color: var(--text-body);
  font-style: italic;
  padding-top: var(--space-5);
  margin: 0;
  max-width: 100%;
  line-height: 1.7;
}
.review-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-border);
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.review-card__name {
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--text-strong);
}
.review-card__stars {
  display: flex;
  gap: 2px;
  margin-top: 2px;
}
.review-card__stars svg {
  width: 14px;
  height: 14px;
  fill: var(--color-accent);
}

/* ocena zbiorcza (bez licznika) */
.review-summary {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  flex-wrap: wrap;
}
.review-summary__score {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 48px;
  color: var(--color-primary);
  line-height: 1;
}
.review-summary__stars {
  display: flex;
  gap: 4px;
  align-items: center;
}
.review-summary__stars svg {
  width: 22px;
  height: 22px;
  fill: var(--color-accent);
}
.review-summary__text {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  font-weight: 600;
}

/* --- CTA sekcja ------------------------------------------------------------ */
.cta-section {
  background: var(--color-primary);
  padding: var(--space-9) 0;
  text-align: center;
}
.cta-section h2 { color: #fff; }
.cta-section p.lead {
  color: rgba(255,255,255,0.8);
  max-width: 52ch;
  margin-inline: auto;
}
.cta-phone-big {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(22px, 5vw, 36px);
  /* #fff na primary-blend = kontrast >7 (WCAG AAA) — L-028 */
  color: #ffffff;
  text-decoration: none;
  padding: var(--space-4) var(--space-7);
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(255,255,255,0.35);
  transition: background var(--motion-dur) var(--motion-ease),
              border-color var(--motion-dur) var(--motion-ease);
  letter-spacing: 0.02em;
}
.cta-phone-big:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.6);
}
.cta-phone-big svg {
  width: 28px;
  height: 28px;
  fill: var(--color-accent);
  flex-shrink: 0;
}

/* --- Sekcja foto (flota/auto) ---------------------------------------------- */
.fleet-section { background: var(--color-surface); }

/* --- Stopka ---------------------------------------------------------------- */
.site-footer {
  background: var(--color-neutral900);
  color: rgba(255,255,255,0.75);
  padding-block: var(--space-8);
}
.site-footer .footer-grid {
  display: grid;
  gap: var(--space-7);
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.site-footer .footer-brand .brand-name {
  color: #fff;
  margin-bottom: var(--space-3);
  display: block;
}
.site-footer .footer-brand p {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.55);
  max-width: 32ch;
  margin: 0;
}
.site-footer h4 {
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-4);
}
.site-footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: var(--fs-sm);
  transition: color var(--motion-dur) var(--motion-ease);
}
.site-footer a:hover { color: var(--color-accent); }
.footer-links {
  display: grid;
  gap: var(--space-2);
}
.footer-nap-list {
  display: grid;
  gap: var(--space-3);
  list-style: none;
  padding: 0;
}
.footer-nap-list li {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-nap-list li svg {
  width: 16px;
  height: 16px;
  fill: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-bottom {
  margin-top: var(--space-7);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.4);
  max-width: 100%;
  margin: 0;
}

/* --- Sticky mobile CTA ----------------------------------------------------- */
.mobile-cta {
  background: var(--color-primary);
  border-top: none;
  box-shadow: 0 -4px 20px rgba(37,71,208,0.22);
}
.mobile-cta .btn {
  background: var(--color-accent);
  color: var(--color-accentText);
  font-weight: 700;
  border-radius: var(--radius-pill);
}
.mobile-cta .btn:hover { background: var(--color-accentHover); }

/* --- Podstrony hero (H1 duzy naglowek) ------------------------------------- */
.page-hero {
  background: var(--color-primary);
  padding: clamp(48px, 6vw, 80px) 0 clamp(40px, 5vw, 64px);
}
.page-hero .eyebrow { color: var(--color-accent); }
.page-hero h1 {
  color: #fff;
  font-size: clamp(28px, 5vw, 48px);
}
.page-hero .lead {
  color: rgba(255,255,255,0.8);
  font-size: var(--fs-lg);
  max-width: 52ch;
}

/* --- Tabela cennik --------------------------------------------------------- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-base);
  table-layout: fixed;
}
.price-table th,
.price-table td {
  padding: var(--space-4) var(--space-5);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  overflow-wrap: break-word;
}
.price-table th {
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.price-table th:last-child,
.price-table td:last-child {
  text-align: right;
}
.price-table tbody tr:nth-child(even) { background: var(--color-surface); }
.price-table tbody tr:hover { background: var(--color-primary100); }
.price-table .price-val {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary);
  font-size: var(--fs-lg);
}
.price-note {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}
.price-badge-raty {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-accent);
  color: var(--color-accentText);
  font-weight: 700;
  font-size: var(--fs-sm);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
}

/* --- FAQ ------------------------------------------------------------------- */
.faq-intro-box {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-7);
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
}
.faq-intro-box p { max-width: 100%; margin: 0; }

/* --- Formularz kontakt ----------------------------------------------------- */
.contact-grid {
  display: grid;
  gap: var(--space-7);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1.4fr;
  }
}
.contact-info-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: grid;
  gap: var(--space-5);
  align-content: start;
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.contact-row svg {
  width: 22px;
  height: 22px;
  fill: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-row strong {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 2px;
}
.contact-row p, .contact-row a {
  font-size: var(--fs-base);
  color: var(--text-body);
  margin: 0;
  max-width: 100%;
}
.contact-row a { color: var(--color-primary); font-weight: 600; }
.contact-row a:hover { text-decoration: underline; }

.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.contact-form-wrap h2 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-5);
}
.form-stack { display: grid; gap: var(--space-4); }
.rodo-note {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 100%;
  line-height: 1.5;
  margin: 0;
}
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: var(--space-7);
}
.map-embed iframe {
  width: 100%;
  height: 360px;
  border: none;
  display: block;
}

/* --- Galeria realizacje ----------------------------------------------------- */
.gallery-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.gallery-grid .media-frame {
  --media-ratio: 4 / 3;
  border-radius: var(--radius-md);
}

/* --- O nas ----------------------------------------------------------------- */
.about-grid {
  display: grid;
  gap: var(--space-7);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.values-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: var(--space-3);
}
.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: var(--fs-base);
  color: var(--text-body);
}
.values-list li::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23111' d='M15.3 6.3a1 1 0 0 0-1.4 0L8.5 11.6 6.1 9.3a1 1 0 1 0-1.4 1.4l3 3a1 1 0 0 0 1.4 0l6-6a1 1 0 0 0 0-1.4z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 1px;
}

/* --- Breadcrumb ------------------------------------------------------------ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.65);
  flex-wrap: wrap;
  padding-bottom: var(--space-3);
}
.breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* --- Utility -------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mt-6 { margin-top: var(--space-6); }
.gap-2 { gap: var(--space-2); }
.placeholder-note {
  display: inline-block;
  background: #FEF9C3;
  color: #92400E;
  font-size: var(--fs-sm);
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px dashed #D97706;
}
.data-to-replace {
  background: #FEF3C7;
  border: 1px dashed #F59E0B;
  border-radius: var(--radius-sm);
  padding: 2px 6px;
  font-style: italic;
  color: #92400E;
}
