/* ==========================================================================
   MEBLE ULAN — style.css
   Stolarstwo, meble na wymiar, pomiary, montaże — Domaszewnica 129A
   Metodyka: Mobile First (320px -> 768px -> 1200px)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400..800&family=Public+Sans:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

/* --------------------------------------------------------------------------
   1. ZMIENNE / DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Marka — czerń dębowa: ciepła, prawie czarna (hue ~42, lekki brązowy podton) */
  --brand-h: 42;
  --color-brand-900: oklch(0.14 0.018 var(--brand-h));
  --color-brand-800: oklch(0.19 0.022 var(--brand-h));
  --color-brand-700: oklch(0.24 0.026 var(--brand-h));
  --color-brand-600: oklch(0.30 0.03 var(--brand-h));
  --color-brand-500: oklch(0.38 0.032 var(--brand-h));
  --color-brand-300: oklch(0.64 0.025 var(--brand-h));
  --color-brand-100: oklch(0.91 0.012 var(--brand-h));

  /* Drewno — ciepły brąz jako drugorzędny akcent (hue ~50) */
  --wood-h: 50;
  --color-wood-800: oklch(0.28 0.06 var(--wood-h));
  --color-wood-700: oklch(0.37 0.075 var(--wood-h));
  --color-wood-500: oklch(0.50 0.095 var(--wood-h));
  --color-wood-300: oklch(0.70 0.07 var(--wood-h));

  /* Akcent — świecący bursztyn/złoto (hue ~72) do CTA telefonicznych */
  --accent-h: 72;
  --color-accent-700: oklch(0.60 0.15 var(--accent-h));
  --color-accent-600: oklch(0.70 0.16 var(--accent-h));
  --color-accent-500: oklch(0.78 0.15 var(--accent-h));
  --color-accent-400: oklch(0.86 0.12 var(--accent-h));

  /* Czerwony akcent marki — zgodny z prawdziwym szyldem "Meble Ulan" */
  --color-signage-red: oklch(0.47 0.19 24);
  --color-signage-red-dark: oklch(0.38 0.17 24);

  /* Neutralne — tintowane w stronę czerni dębowej */
  --color-surface: oklch(0.985 0.005 var(--brand-h));
  --color-surface-2: oklch(0.96 0.008 var(--brand-h));
  --color-surface-3: oklch(0.90 0.012 var(--brand-h));
  --color-ink: oklch(0.18 0.016 var(--brand-h));
  --color-ink-soft: oklch(0.38 0.02 var(--brand-h));
  --color-border: oklch(0.85 0.015 var(--brand-h));

  /* Typografia */
  --font-display: 'Bricolage Grotesque', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Public Sans', 'Segoe UI', system-ui, sans-serif;

  --fs-sm: clamp(0.85rem, 0.82rem + 0.15vw, 0.95rem);
  --fs-base: clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
  --fs-lg: clamp(1.25rem, 1.15rem + 0.5vw, 1.6rem);
  --fs-xl: clamp(1.75rem, 1.5rem + 1.2vw, 2.6rem);
  --fs-2xl: clamp(2.3rem, 1.8rem + 2.4vw, 4rem);
  --fs-3xl: clamp(2.8rem, 2rem + 4vw, 5.5rem);

  /* Odstępy — skala 4pt */
  --space-2xs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 22px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

/* --------------------------------------------------------------------------
   2. RESET
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { min-height: 100dvh; }
img, picture { max-width: 100%; display: block; }
input, button, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --------------------------------------------------------------------------
   3. BAZA
   -------------------------------------------------------------------------- */
body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--color-ink);
  background: var(--color-surface);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--color-brand-900);
  line-height: 1.08;
  letter-spacing: -0.01em;
  font-weight: 700;
}
h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-lg); font-weight: 600; }

p { max-width: 62ch; color: var(--color-ink-soft); }

.material-icons { font-family: 'Material Icons'; font-weight: normal; font-style: normal;
  display: inline-block; line-height: 1; vertical-align: middle;
  -webkit-font-smoothing: antialiased; }

.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-wood-700);
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--color-accent-600);
}

section { padding-block: var(--space-3xl); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0; padding: 0; margin: -1px;
}

/* skip link */
.skip-link {
  position: absolute; top: -100px; left: var(--space-md);
  background: var(--color-brand-900); color: var(--color-surface);
  padding: var(--space-sm) var(--space-md); border-radius: var(--radius-sm);
  z-index: 999; transition: top 0.25s var(--ease-out-quart);
}
.skip-link:focus { top: var(--space-md); }

/* focus visibility (WCAG) */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--color-accent-500);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* --------------------------------------------------------------------------
   4. PRZYCISKI TELEFONICZNE — GŁÓWNY MECHANIZM KONWERSJI
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-base);
  padding: 16px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s var(--ease-out-expo), background-color 0.25s ease;
  white-space: nowrap;
}

.btn-call {
  background: var(--color-accent-600);
  color: var(--color-brand-900);
  box-shadow: 0 8px 24px -6px oklch(0.60 0.16 72 / 0.55);
}
.btn-call .material-icons {
  background: var(--color-brand-900);
  color: var(--color-accent-400);
  border-radius: 50%;
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 19px;
  animation: pulse-ring 2.4s ease-in-out infinite;
}
.btn-call:hover, .btn-call:focus-visible {
  background: var(--color-accent-500);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 32px -8px oklch(0.60 0.16 72 / 0.65);
}
.btn-call:active { transform: translateY(0) scale(0.98); }

.btn-ghost {
  background: transparent;
  color: var(--color-surface);
  border: 2px solid oklch(1 0 0 / 0.35);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: oklch(1 0 0 / 0.1);
  border-color: oklch(1 0 0 / 0.6);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-brand-800);
  border: 2px solid var(--color-brand-300);
}
.btn-outline:hover, .btn-outline:focus-visible {
  border-color: var(--color-brand-700);
  background: var(--color-brand-100);
  transform: translateY(-2px);
}

@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0 oklch(0.68 0.16 72 / 0.5); }
  50% { box-shadow: 0 0 0 8px oklch(0.68 0.16 72 / 0); }
}

.phone-numbers {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
@media (min-width: 560px) {
  .phone-numbers { flex-direction: row; flex-wrap: wrap; }
}

/* pływający przycisk telefonu — mobile */
.float-call {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 500;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-accent-600);
  color: var(--color-brand-900);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px -6px oklch(0.55 0.16 72 / 0.6);
  animation: float-pulse 2.6s ease-in-out infinite;
  transition: transform 0.3s var(--ease-out-expo);
}
.float-call .material-icons { font-size: 28px; }
.float-call:hover { transform: scale(1.08); }
@keyframes float-pulse {
  0%, 100% { box-shadow: 0 10px 28px -6px oklch(0.55 0.16 72 / 0.6), 0 0 0 0 oklch(0.68 0.16 72 / 0.45); }
  50% { box-shadow: 0 10px 28px -6px oklch(0.55 0.16 72 / 0.6), 0 0 0 12px oklch(0.68 0.16 72 / 0); }
}
@media (min-width: 1200px) { .float-call { display: none; } }

/* --------------------------------------------------------------------------
   5. HEADER / NAWIGACJA
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 400;
  background: oklch(0.985 0.006 var(--brand-h) / 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-md);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--color-brand-900);
}
.site-header .logo { color: var(--color-signage-red); }
.site-header .logo small { color: var(--color-wood-700); }

.logo-mark {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: linear-gradient(155deg, var(--color-brand-700), var(--color-brand-900));
  color: var(--color-accent-400);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.logo small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-wood-700);
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  background: var(--color-brand-900);
  color: var(--color-surface);
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }

.main-nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(86vw, 360px);
  height: 100dvh;
  background: var(--color-brand-900);
  padding: var(--space-3xl) var(--space-xl) var(--space-xl);
  transform: translateX(100%);
  transition: transform 0.45s var(--ease-out-expo);
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  overflow-y: auto;
}
.main-nav.is-open { transform: translateX(0); }

.nav-close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  background: oklch(1 0 0 / 0.1);
  color: var(--color-surface);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.nav-links a {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid oklch(1 0 0 / 0.12);
  transition: color 0.25s ease, padding-left 0.25s ease;
}
.nav-links a:hover, .nav-links a:focus-visible, .nav-links a[aria-current="page"] {
  color: var(--color-accent-400);
  padding-left: var(--space-xs);
}
.nav-links .material-icons { opacity: 0.5; font-size: 20px; }

.nav-backdrop {
  position: fixed; inset: 0;
  background: oklch(0.15 0.03 var(--brand-h) / 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 390;
}
.nav-backdrop.is-visible { opacity: 1; pointer-events: auto; }

@media (min-width: 1024px) {
  .main-nav {
    position: static;
    width: auto; height: auto;
    background: transparent;
    padding: 0;
    transform: none;
    flex-direction: row;
    align-items: center;
    gap: var(--space-2xl);
  }
  .nav-close { display: none; }
  .nav-links { flex-direction: row; gap: var(--space-xl); }
  .nav-links a {
    color: var(--color-ink);
    font-size: var(--fs-base);
    border-bottom: none;
    padding-bottom: 0;
  }
  .nav-links a:hover, .nav-links a:focus-visible, .nav-links a[aria-current="page"] {
    color: var(--color-brand-700);
    padding-left: 0;
  }
  .nav-links .material-icons { display: none; }
  .nav-backdrop { display: none; }
}

/* --------------------------------------------------------------------------
   6. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: radial-gradient(120% 100% at 15% 0%, var(--color-brand-700) 0%, var(--color-brand-900) 55%, var(--color-brand-900) 100%);
  color: var(--color-surface);
  padding-block: var(--space-3xl) var(--space-4xl);
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  right: -10%;
  bottom: -20%;
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(circle, oklch(0.68 0.16 72 / 0.18), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  gap: var(--space-2xl);
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: oklch(1 0 0 / 0.08);
  border: 1px solid oklch(1 0 0 / 0.16);
  padding: var(--space-xs) var(--space-md);
  border-radius: 999px;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-accent-400);
  margin-bottom: var(--space-lg);
}
.hero h1 {
  color: var(--color-surface);
  margin-bottom: var(--space-lg);
}
.hero h1 .accent { color: var(--color-accent-400); }
.hero-lead {
  color: oklch(0.92 0.01 var(--brand-h));
  font-size: var(--fs-lg);
  max-width: 46ch;
  margin-bottom: var(--space-xl);
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}
@media (min-width: 560px) { .hero-actions { flex-direction: row; flex-wrap: wrap; align-items: center; } }

.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  border-top: 1px solid oklch(1 0 0 / 0.14);
  padding-top: var(--space-lg);
}
.hero-fact strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  color: var(--color-accent-400);
}
.hero-fact span { font-size: var(--fs-sm); color: oklch(0.85 0.015 var(--brand-h)); }

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(155deg, var(--color-wood-700), var(--color-wood-800));
  border: 1px solid oklch(1 0 0 / 0.12);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual-tag {
  position: absolute;
  left: var(--space-lg);
  bottom: var(--space-lg);
  background: var(--color-surface);
  color: var(--color-brand-900);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-sm);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  box-shadow: 0 12px 30px -10px oklch(0.15 0.03 var(--brand-h) / 0.5);
}

@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; align-items: center; }
}

/* --------------------------------------------------------------------------
   7. SEKCJE OGÓLNE
   -------------------------------------------------------------------------- */
.section-head {
  max-width: 60ch;
  margin-bottom: var(--space-2xl);
}
.section-head h2 { margin-top: var(--space-sm); }

.band-dark {
  background: var(--color-brand-900);
  color: var(--color-surface);
}
.band-dark h2 { color: var(--color-surface); }
.band-dark p { color: oklch(0.85 0.015 var(--brand-h)); }
.band-dark .eyebrow { color: var(--color-accent-400); }
.band-dark .eyebrow::before { background: var(--color-accent-500); }

.band-wood {
  background: linear-gradient(135deg, var(--color-wood-700), var(--color-wood-800));
  color: var(--color-surface);
}
.band-wood h2, .band-wood h3 { color: var(--color-surface); }
.band-wood p { color: oklch(0.92 0.02 var(--wood-h)); }

/* USP grid */
.usp-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .usp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .usp-grid { grid-template-columns: repeat(4, 1fr); } }

.usp-item {
  padding-top: var(--space-lg);
  border-top: 2px solid var(--color-brand-300);
}
.usp-item .material-icons {
  font-size: 30px;
  color: var(--color-wood-500);
  margin-bottom: var(--space-md);
}
.usp-item h3 { margin-bottom: var(--space-xs); }
.usp-item p { font-size: var(--fs-sm); }

/* Oferta — proces 4 kroków */
.process-list {
  display: grid;
  gap: var(--space-lg);
  counter-reset: step;
}
@media (min-width: 768px) { .process-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .process-list { grid-template-columns: repeat(4, 1fr); } }

.process-item {
  position: relative;
  background: var(--color-surface-2);
  border-radius: var(--radius-md);
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
}
.process-item::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 800;
  color: var(--color-accent-600);
  display: block;
  margin-bottom: var(--space-md);
}
.process-item h3 { margin-bottom: var(--space-xs); font-size: var(--fs-base); }
.process-item p { font-size: var(--fs-sm); margin: 0; }

/* Karty usług (oferta.html) */
.service-block {
  display: grid;
  gap: var(--space-xl);
  padding-block: var(--space-2xl);
  border-bottom: 1px solid var(--color-border);
}
.service-block:last-of-type { border-bottom: none; }
@media (min-width: 900px) {
  .service-block { grid-template-columns: 0.9fr 1.1fr; align-items: center; }
  .service-block.is-reverse { direction: rtl; }
  .service-block.is-reverse > * { direction: ltr; }
}
.service-media {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--color-brand-100), var(--color-surface-3));
  border: 1px solid var(--color-border);
  overflow: hidden;
}
.service-media img { width: 100%; height: 100%; object-fit: cover; }
.service-number {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  color: var(--color-brand-300);
  font-weight: 800;
  line-height: 1;
  margin-bottom: var(--space-sm);
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-block: var(--space-lg);
}
.service-list li {
  display: flex;
  gap: var(--space-sm);
  font-size: var(--fs-sm);
  color: var(--color-ink-soft);
}
.service-list .material-icons { color: var(--color-wood-500); font-size: 20px; }

/* --------------------------------------------------------------------------
   PLACEHOLDERY ZDJĘĆ — zastępują puste src="" eleganckim, zaprojektowanym
   symbolem "miejsce na zdjęcie" zamiast złamanej ikony obrazka.
   Znikają automatycznie (JS), gdy tylko src zostanie uzupełnione realnym plikiem.
   -------------------------------------------------------------------------- */
img[src=""] { display: none; }

.media-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  text-align: center;
  padding: var(--space-md);
  color: var(--color-wood-500);
  background-image: repeating-linear-gradient(135deg, transparent 0 14px, oklch(1 0 0 / 0.05) 14px 28px);
}
.media-placeholder .material-icons { font-size: 38px; opacity: 0.55; }
.media-placeholder .label {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 600;
  opacity: 0.65;
  max-width: 22ch;
}

.service-media { position: relative; }
.gallery-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-surface-3);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out-quart);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute; inset: auto 0 0 0;
  padding: var(--space-md);
  background: linear-gradient(0deg, oklch(0.15 0.03 var(--brand-h) / 0.82), transparent);
  color: var(--color-surface);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 600;
}

/* Kontakt / mapa */
.contact-grid {
  display: grid;
  gap: var(--space-2xl);
}
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1fr 1.15fr; align-items: start; } }

.info-card {
  background: var(--color-surface-2);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.info-row {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}
.info-row .material-icons {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-brand-900);
  color: var(--color-accent-400);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}
.info-row h3 { font-size: var(--fs-base); margin-bottom: 2px; }
.info-row p { margin: 0; font-size: var(--fs-sm); }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  aspect-ratio: 4/3;
}
@media (min-width: 640px) { .map-frame { aspect-ratio: 16/10; } }
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.map-note {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  margin-top: var(--space-md);
  font-size: var(--fs-sm);
  color: var(--color-ink-soft);
}
.map-note .material-icons { color: var(--color-wood-500); font-size: 20px; }

/* Godziny */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table td { padding: var(--space-sm) 0; border-bottom: 1px solid var(--color-border); font-size: var(--fs-sm); }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--color-brand-800); }

/* CTA finalne */
.cta-band {
  background: var(--color-brand-900);
  color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, oklch(0.68 0.16 72 / 0.22), transparent 60%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: var(--color-surface); margin-bottom: var(--space-sm); }
.cta-band p { color: oklch(0.85 0.015 var(--brand-h)); margin-inline: auto; margin-bottom: var(--space-xl); }
.cta-band .phone-numbers { justify-content: center; }

/* --------------------------------------------------------------------------
   8. STOPKA
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--color-brand-900);
  color: oklch(0.82 0.015 var(--brand-h));
}
.footer-top {
  display: grid;
  gap: var(--space-xl);
  padding-block: var(--space-3xl) var(--space-xl);
  border-bottom: 1px solid oklch(1 0 0 / 0.1);
}
@media (min-width: 768px) { .footer-top { grid-template-columns: 1.2fr 1fr 1fr; } }
.footer-brand p { color: oklch(0.75 0.012 var(--brand-h)); font-size: var(--fs-sm); margin-top: var(--space-sm); }
.footer-heading {
  font-family: var(--font-display);
  color: var(--color-surface);
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-md);
}
.footer-links { display: flex; flex-direction: column; gap: var(--space-sm); font-size: var(--fs-sm); }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--color-accent-400); }

.footer-seo {
  padding-block: var(--space-lg);
  font-size: 0.72rem;
  line-height: 1.9;
  color: oklch(0.55 0.015 var(--brand-h));
  border-bottom: 1px solid oklch(1 0 0 / 0.08);
}
.footer-seo span:not(:last-child)::after { content: '•'; margin-inline: var(--space-xs); color: oklch(0.4 0.01 var(--brand-h)); }
.footer-seo a { color: oklch(0.6 0.015 var(--brand-h)); }
.footer-seo a:hover { color: var(--color-accent-400); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding-block: var(--space-lg);
  font-size: var(--fs-sm);
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; } }

/* --------------------------------------------------------------------------
   9. COOKIE BANNER
   -------------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: var(--space-md); right: var(--space-md); bottom: var(--space-md);
  max-width: 620px;
  margin-inline: auto;
  background: var(--color-brand-900);
  color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: 0 20px 50px -12px oklch(0.15 0.03 var(--brand-h) / 0.5);
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transform: translateY(140%);
  transition: transform 0.5s var(--ease-out-expo);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner p { color: oklch(0.85 0.015 var(--brand-h)); font-size: var(--fs-sm); margin: 0; }
.cookie-actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; }
.cookie-actions button {
  flex: 1;
  min-width: 120px;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-sm);
  cursor: pointer;
}
#cookie-accept { background: var(--color-accent-600); color: var(--color-brand-900); }
#cookie-decline { background: transparent; color: var(--color-surface); border: 1px solid oklch(1 0 0 / 0.3); }

/* --------------------------------------------------------------------------
   10. ANIMACJE WEJŚCIA (scroll reveal) — intensywne, jak zażyczono
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

[data-reveal-scale] {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
[data-reveal-scale].is-visible { opacity: 1; transform: scale(1); }

[data-reveal-left] {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.85s var(--ease-out-expo), transform 0.85s var(--ease-out-expo);
}
[data-reveal-left].is-visible { opacity: 1; transform: translateX(0); }

[data-reveal-right] {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.85s var(--ease-out-expo), transform 0.85s var(--ease-out-expo);
}
[data-reveal-right].is-visible { opacity: 1; transform: translateX(0); }

.stagger > * { transition-delay: calc(var(--i, 0) * 90ms); }

@keyframes fade-in-down {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow { animation: fade-in-down 0.7s var(--ease-out-expo) both; }

/* wood-grain texture accent divider */
.grain-divider {
  height: 6px;
  background: repeating-linear-gradient(90deg,
    var(--color-wood-500) 0 18px,
    var(--color-wood-700) 18px 36px);
  background-size: 200% 100%;
  animation: grain-shift 12s linear infinite;
}
@keyframes grain-shift {
  from { background-position: 0 0; }
  to { background-position: -200% 0; }
}
