/* =========================================================
   U GÓRALA — Olkusz | wood store
   Design tokens + global styles
   ========================================================= */

:root {
  /* Wood palette — warm, authentic, not orange-y */
  --bark:        #1F140A;
  --wood-dark:   #3A2418;
  --wood:        #5C3A1F;
  --amber:       #A0631E;   /* primary accent */
  --amber-warm:  #C9874A;
  --tan:         #D9B68A;
  --cream:       #F2E8D2;
  --cream-soft:  #F7EFDC;
  --paper:       #FBF7EC;
  --white:       #FFFFFF;
  --moss:        #4D5D3A;   /* deep forest */
  --moss-light:  #6E8154;
  --ink:         #1A1108;
  --muted:       #6F5C44;
  --line:        #D6C5A2;
  --line-soft:   #E6D7B6;

  /* Type */
  --serif: "Spectral", "Source Serif Pro", Georgia, serif;
  --sans:  "Manrope", "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Rhythm */
  --container: 1240px;
  --container-narrow: 880px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 4px;
  --radius-lg: 14px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(31, 20, 10, 0.06);
  --shadow-md: 0 10px 30px rgba(31, 20, 10, 0.12);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--wood); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--amber); }

/* Type scale */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--bark);
  letter-spacing: -0.01em;
  line-height: 1.15;
  text-wrap: balance;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.4rem); line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1.1rem; font-family: var(--sans); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }

p { margin: 0 0 1em; text-wrap: pretty; }
p strong { color: var(--bark); }

/* ============== LAYOUT ============== */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.narrow    { width: 100%; max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--gutter); }

section { padding: clamp(60px, 8vw, 110px) 0; }
section + section { border-top: 1px solid var(--line-soft); }

/* Decorative eyebrow */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--amber); margin: 0 0 16px;
}
.eyebrow::before {
  content: ""; width: 32px; height: 1px; background: var(--amber);
}

/* ============== TOP BAR ============== */
.topbar {
  background: var(--bark); color: var(--cream);
  font-size: 13.5px; padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px 24px; }
.topbar a { color: var(--cream); text-decoration: none; }
.topbar a:hover { color: var(--amber-warm); }
.topbar .tb-left, .topbar .tb-right { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.topbar .tb-item { display: inline-flex; align-items: center; gap: 6px; }

/* ============== HEADER / NAV ============== */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
  position: sticky; top: 0; z-index: 50;
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding-top: 14px; padding-bottom: 14px;
}
.brand {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; color: var(--bark);
}
.brand .mark {
  width: 48px; height: 48px;
  background: var(--bark); color: var(--cream);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 24px; font-style: italic; font-weight: 600;
  border-radius: 50%;
  position: relative;
}
.brand .mark::after {
  content: ""; position: absolute; inset: 3px;
  border: 1px solid var(--amber-warm); border-radius: 50%;
}
.brand-text { line-height: 1.1; }
.brand-text .name {
  font-family: var(--serif); font-weight: 600; font-size: 22px; color: var(--bark);
  display: block;
}
.brand-text .tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--amber); display: block;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  text-decoration: none; color: var(--bark);
  padding: 10px 14px; border-radius: 6px;
  font-weight: 500; font-size: 15.5px;
  transition: background 120ms, color 120ms;
}
.nav a:hover, .nav a.active { background: var(--cream); color: var(--wood); }
.nav .dropdown { position: relative; }
.nav .dropdown > a::after {
  content: "▾"; font-size: 13px; margin-left: 6px; opacity: 0.7;
  display: inline-block; transform: translateY(-1px);
  transition: transform 180ms;
}
.nav .dropdown:hover > a::after,
.nav .dropdown:focus-within > a::after { transform: translateY(-1px) rotate(180deg); opacity: 1; }

/* Drawer header + backdrop ukryte domyslnie na desktop (pokazuja sie tylko w mobile media query) */
.drawer-head { display: none; }
.nav-backdrop { display: none; }
.nav .dropdown-menu {
  position: absolute; top: 100%; left: 0;
  background: var(--paper); border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: 8px; min-width: 280px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 140ms, transform 140ms, visibility 140ms;
  border-radius: 8px;
}
.nav .dropdown:hover .dropdown-menu,
.nav .dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav .dropdown-menu a { display: block; padding: 9px 12px; font-size: 14.5px; }

.cta-call {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--amber); color: var(--paper);
  padding: 11px 18px; border-radius: 999px;
  text-decoration: none; font-weight: 600; font-size: 15px;
  transition: background 120ms;
}
.cta-call:hover { background: var(--wood); color: var(--paper); }

.nav-toggle {
  display: none;
  background: transparent; border: 1px solid var(--line);
  width: 44px; height: 44px; border-radius: 8px;
  cursor: pointer; padding: 0;
}
.nav-toggle span { display:block; width:20px; height:2px; background: var(--bark); margin: 4px auto; }

@media (max-width: 980px) {
  .nav { display: none; }
  .nav-toggle { display: block; }

  /* Backdrop */
  .nav-backdrop {
    display: block;
    position: fixed; inset: 0;
    background: rgba(31, 20, 10, 0.55);
    backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
    opacity: 0; visibility: hidden;
    transition: opacity 220ms, visibility 220ms;
    z-index: 60;
  }
  .site-header.open .nav-backdrop { opacity: 1; visibility: visible; }

  /* Slide-in drawer */
  .site-header.open .nav {
    display: flex; flex-direction: column;
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(86vw, 380px);
    background: var(--paper);
    box-shadow: -20px 0 60px rgba(31, 20, 10, 0.25);
    padding: 22px 22px 28px;
    gap: 4px;
    z-index: 70;
    overflow-y: auto;
    overscroll-behavior: contain;
    animation: drawerIn 280ms cubic-bezier(.2,.7,.3,1) both;
  }
  @keyframes drawerIn {
    from { transform: translateX(100%); }
    to   { transform: translateX(0); }
  }

  /* Drawer header (close + brand text) */
  .drawer-head {
    display: none;
    align-items: center; justify-content: space-between;
    padding: 4px 4px 18px;
    border-bottom: 1px solid var(--line-soft);
    margin-bottom: 14px;
  }
  .site-header.open .drawer-head { display: flex; }
  .drawer-head .label {
    font-family: var(--serif); font-style: italic;
    font-size: 18px; color: var(--bark);
  }
  .drawer-close {
    background: transparent; border: 1px solid var(--line);
    width: 40px; height: 40px; border-radius: 50%;
    cursor: pointer; font-size: 20px; color: var(--bark);
    display: grid; place-items: center;
    transition: background 120ms, color 120ms;
  }
  .drawer-close:hover { background: var(--amber); color: var(--paper); border-color: var(--amber); }

  /* Bigger, legible nav items */
  .site-header.open .nav > a,
  .site-header.open .nav > .dropdown > a {
    display: block;
    padding: 16px 14px;
    font-size: 18px;
    font-weight: 500;
    color: var(--bark);
    border-radius: 10px;
    border-bottom: 1px solid var(--line-soft);
  }
  .site-header.open .nav > a:last-of-type,
  .site-header.open .nav > .dropdown:last-of-type > a { border-bottom: 0; }
  .site-header.open .nav > a:hover,
  .site-header.open .nav > a.active { background: var(--cream); color: var(--wood); }
  .site-header.open .nav > a.active { color: var(--amber); }

  /* Dropdown: tap to expand inside drawer */
  .site-header.open .nav .dropdown {
    position: static;
    border-bottom: 1px solid var(--line-soft);
  }
  .site-header.open .nav .dropdown > a {
    position: relative;
    border-bottom: 0;
    color: var(--bark); font-size: 18px; font-weight: 500;
    text-transform: none; letter-spacing: normal;
    padding: 16px 14px;
    cursor: pointer;
  }
  .site-header.open .nav .dropdown > a::after {
    display: inline-block; content: "";
    width: 10px; height: 10px;
    border-right: 2px solid var(--bark);
    border-bottom: 2px solid var(--bark);
    transform: rotate(45deg);
    position: absolute; right: 22px; top: 50%;
    margin-top: -7px;
    transition: transform 200ms;
    font-size: 0;
  }
  .site-header.open .nav .dropdown.expanded > a::after {
    transform: rotate(-135deg);
    margin-top: -3px;
  }
  .site-header.open .nav .dropdown-menu {
    position: static; box-shadow: none; border: 0;
    background: var(--cream-soft);
    min-width: 0; display: none;
    padding: 6px 6px 10px;
    border-radius: 10px;
    margin: 0 0 10px;
    transform: none; opacity: 1; visibility: visible;
  }
  .site-header.open .nav .dropdown.expanded .dropdown-menu { display: flex; flex-direction: column; }
  .site-header.open .nav .dropdown-menu a {
    display: block; padding: 11px 14px;
    font-size: 15.5px; color: var(--bark);
    border-radius: 6px; line-height: 1.35;
  }
  .site-header.open .nav .dropdown-menu a:hover {
    background: var(--paper); color: var(--wood);
  }

  /* "Jak dojechać?" button bigger in drawer */
  .site-header.open .nav .cta-call {
    margin-top: 18px;
    padding: 16px 22px;
    font-size: 17px;
    justify-content: center;
    width: 100%;
  }

  /* Hide drawer footer (phones moved to topbar / map modal) */
  .drawer-foot { display: none; }
  .site-header.open .drawer-foot { display: none; }

  /* Lock body scroll when drawer open */
  body.no-scroll { overflow: hidden; }

  .topbar .tb-right { display: none; }

  /* Hamburger animation to X */
  .nav-toggle {
    position: relative; z-index: 80;
    transition: background 200ms;
  }
  .nav-toggle span {
    transition: transform 220ms, opacity 200ms;
    transform-origin: center;
  }
  .site-header.open .nav-toggle { background: transparent; border-color: transparent; }
  .site-header.open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .site-header.open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-header.open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}

/* ============== HERO ============== */
.hero {
  position: relative;
  background: var(--bark);
  color: var(--cream);
  overflow: hidden;
}
.hero .hero-bg {
  position: absolute; inset: 0; opacity: 0.42;
  background-size: cover; background-position: center;
  filter: saturate(110%) contrast(105%);
}
.hero .hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(31,20,10,0.85) 0%, rgba(31,20,10,0.55) 40%, rgba(31,20,10,0.3) 100%);
}
.hero .container { position: relative; z-index: 2; padding-top: clamp(70px, 10vw, 130px); padding-bottom: clamp(70px, 10vw, 130px); }
.hero h1 { color: var(--paper); max-width: 18ch; }
.hero h1 em {
  font-style: italic; color: var(--amber-warm); font-weight: 400;
}
.hero .lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--cream-soft); max-width: 60ch; margin-top: 24px;
  line-height: 1.6;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px;
  text-decoration: none; font-weight: 600; font-size: 16px;
  border: 1px solid transparent; transition: all 140ms;
  cursor: pointer;
}
.btn-primary { background: var(--amber); color: var(--paper); }
.btn-primary:hover { background: var(--amber-warm); color: var(--bark); }
.btn-secondary { background: transparent; color: var(--cream); border-color: var(--cream); }
.btn-secondary:hover { background: var(--cream); color: var(--bark); }
.btn-dark { background: var(--bark); color: var(--paper); }
.btn-dark:hover { background: var(--wood); }
.btn-ghost { background: transparent; color: var(--bark); border-color: var(--line); }
.btn-ghost:hover { background: var(--cream); border-color: var(--amber); }

.hero-meta {
  position: relative; z-index: 2; border-top: 1px solid rgba(242, 232, 210, 0.18);
  padding: 22px 0;
}
.hero-meta .container { display: flex; flex-wrap: wrap; gap: 28px 44px; align-items: center; }
.hero-meta .mi { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--cream-soft); }
.hero-meta .mi strong { color: var(--paper); font-weight: 600; }
.hero-meta .mi svg { color: var(--amber-warm); }

/* page-hero (non-home) */
.page-hero {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.page-hero .container {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(40px, 6vw, 80px);
  align-items: center; padding-top: clamp(50px, 7vw, 90px); padding-bottom: clamp(50px, 7vw, 90px);
}
.page-hero h1 { max-width: 16ch; }
.page-hero .lead { font-size: 1.12rem; color: var(--muted); max-width: 56ch; line-height: 1.65; }
.page-hero .hero-img {
  aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--wood-dark); box-shadow: var(--shadow-md);
  position: relative;
}
.page-hero .hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* Hero ikona zamiast zdjecia (gdy nie ma fizycznego obrazka produktu) */
.page-hero .hero-img--icon {
  background: linear-gradient(135deg, var(--wood-dark) 0%, var(--wood) 45%, var(--amber) 100%);
  border-radius: var(--radius-lg);
  display: grid; place-items: center;
  position: relative; overflow: hidden;
}
.page-hero .hero-img--icon::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(255, 200, 100, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 240, 200, 0.18) 0%, transparent 45%);
  pointer-events: none;
}
.hero-icon-card {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  padding: 32px;
  color: var(--cream);
}
.hero-icon-card svg {
  width: 120px; height: 120px;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
}
.hero-icon-label {
  font-family: var(--serif); font-style: italic;
  font-size: 1.2rem; text-align: center;
  color: var(--paper); opacity: 0.95;
}
.page-hero .breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.page-hero .breadcrumb a { color: var(--muted); }
.page-hero .breadcrumb a:hover { color: var(--amber); }
.page-hero .breadcrumb span { margin: 0 6px; opacity: 0.5; }

@media (max-width: 780px) {
  .page-hero .container { grid-template-columns: 1fr; }
  .page-hero .hero-img { aspect-ratio: 5/4; max-height: 420px; }
}

/* ============== GRIDS / CARDS ============== */
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.card-grid.cols-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.cat-card {
  background: var(--paper); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); overflow: hidden;
  text-decoration: none; color: var(--ink);
  display: flex; flex-direction: column;
  transition: transform 200ms, box-shadow 200ms, border-color 200ms;
  position: relative;
}
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--amber); }
.cat-card .img {
  aspect-ratio: 4/3; background: var(--wood-dark); overflow: hidden;
}
.cat-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms; }
.cat-card:hover .img img { transform: scale(1.04); }
.cat-card .body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.cat-card h3 { margin: 0 0 8px; color: var(--bark); }
.cat-card p { font-size: 15px; color: var(--muted); margin: 0 0 16px; }
.cat-card .arrow {
  margin-top: auto; font-weight: 600; color: var(--amber); font-size: 14.5px;
  display: inline-flex; align-items: center; gap: 6px;
}

/* Local links grid - cross-link do per-city pages */
.local-links-section { padding-top: clamp(40px, 5vw, 60px); padding-bottom: clamp(40px, 5vw, 60px); }
.local-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 32px;
}
.local-card {
  background: var(--paper); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); padding: 24px;
  text-decoration: none; color: var(--ink);
  transition: transform 200ms, box-shadow 200ms, border-color 200ms;
  display: flex; flex-direction: column;
}
.local-card:hover {
  transform: translateY(-3px); border-color: var(--amber);
  box-shadow: var(--shadow-md);
}
.local-card h3 {
  font-family: var(--serif); font-size: 1.25rem; color: var(--bark);
  margin: 0 0 6px;
}
.local-card p {
  font-size: 14.5px; color: var(--muted); margin: 0;
}
.local-card--primary {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-warm) 100%);
  border-color: var(--amber);
  color: var(--paper);
  grid-column: span 2;
  box-shadow: 0 12px 30px rgba(160, 99, 30, 0.3);
}
.local-card--primary h3 { color: var(--paper); font-size: 1.45rem; }
.local-card--primary p { color: rgba(251, 247, 236, 0.92); }
.local-card-eyebrow {
  display: inline-block;
  font-family: var(--serif); font-style: italic; font-size: 0.95rem;
  color: var(--paper); opacity: 0.95;
  margin-bottom: 8px;
}
@media (max-width: 720px) {
  .local-card--primary { grid-column: span 1; }
}

/* Cat-card wariant z ikona zamiast zdjecia (np. Opal) */
.cat-card--icon .cat-icon {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--wood-dark) 0%, var(--wood) 50%, var(--amber) 100%);
  display: grid; place-items: center;
  position: relative; overflow: hidden;
}
.cat-card--icon .cat-icon::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(255, 200, 100, 0.25) 0%, transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(255, 240, 200, 0.18) 0%, transparent 40%);
  pointer-events: none;
}
.cat-card--icon .cat-icon svg {
  width: 72px; height: 72px; color: var(--cream); position: relative; z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  transition: transform 400ms;
}
.cat-card--icon:hover .cat-icon svg {
  transform: scale(1.08) translateY(-2px);
}

/* USP / value blocks */
.usp-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px 40px;
}
.usp {
  position: relative; padding-top: 64px;
}
.usp .num {
  position: absolute; top: 0; left: 0;
  font-family: var(--serif); font-size: 14px; font-weight: 600;
  color: var(--amber); letter-spacing: 0.15em;
}
.usp .icon {
  position: absolute; top: 0; right: 0;
  width: 44px; height: 44px;
  color: var(--amber);
}
.usp h3 { margin: 0 0 10px; font-size: 1.25rem; }
.usp p { color: var(--muted); margin: 0; font-size: 15.5px; line-height: 1.6; }

/* Feature alternating */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px);
  align-items: center; margin: 0 0 clamp(60px, 8vw, 110px);
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse .feature-text { order: 2; }
.feature-row .feature-img {
  aspect-ratio: 5/4; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--wood-dark);
}
.feature-row .feature-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 820px) {
  .feature-row { grid-template-columns: 1fr; }
  .feature-row.reverse .feature-text { order: 0; }
}

/* Sections backgrounds */
.bg-cream { background: var(--cream); }
.bg-cream-soft { background: var(--cream-soft); }
.bg-dark { background: var(--bark); color: var(--cream); }
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: var(--paper); }
.bg-dark p { color: var(--cream-soft); }
.bg-moss { background: var(--moss); color: var(--cream); }
.bg-moss h2, .bg-moss h3 { color: var(--paper); }

/* Reviews */
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.review {
  background: var(--paper); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); padding: 28px 26px;
  position: relative;
}
.review .stars { color: var(--amber); margin-bottom: 12px; letter-spacing: 2px; }
.review .quote {
  font-family: var(--serif); font-style: italic; font-size: 1.1rem; line-height: 1.55;
  color: var(--bark); margin: 0 0 14px;
}
.review .who { font-size: 14px; color: var(--muted); }

/* ============== TYPOGRAPHY HELPERS ============== */
.lead-text {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  line-height: 1.65;
  color: var(--muted);
  max-width: 60ch;
}
.section-header { margin-bottom: clamp(36px, 5vw, 60px); }
.section-header.center { text-align: center; }
.section-header.center .eyebrow,
.section-header.center .lead-text { margin-left: auto; margin-right: auto; }

/* Content prose (for category & info pages) */
.prose { max-width: 760px; }
.prose h2 { margin-top: 1.6em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.4em; font-size: 1.3rem; }
.prose ul { padding-left: 1.2em; margin: 0 0 1.2em; }
.prose ul li { margin-bottom: 6px; }
.prose .callout {
  background: var(--cream); border-left: 3px solid var(--amber);
  padding: 20px 24px; margin: 30px 0; border-radius: 4px;
}
.prose .callout p:last-child { margin: 0; }

/* FAQ */
.faq details {
  border-bottom: 1px solid var(--line-soft);
  padding: 18px 0;
}
.faq details:first-of-type { border-top: 1px solid var(--line-soft); }
.faq summary {
  cursor: pointer; font-weight: 600; font-size: 1.05rem;
  color: var(--bark);
  list-style: none; padding-right: 36px; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: -2px;
  font-size: 22px; color: var(--amber); font-weight: 400;
  transition: transform 200ms;
}
.faq details[open] summary::after { content: "−"; }
.faq details > p { margin: 12px 0 0; color: var(--muted); }

/* Spec tables / dim lists */
.spec-list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px 24px; list-style: none; padding: 0; margin: 18px 0 24px;
}
.spec-list li {
  background: var(--paper); border: 1px solid var(--line-soft);
  padding: 14px 18px; border-radius: 6px; font-size: 15px;
  display: flex; align-items: baseline; gap: 10px;
}
.spec-list li::before {
  content: ""; width: 6px; height: 6px; background: var(--amber);
  border-radius: 50%; flex: none; transform: translateY(-2px);
}

/* Two-col layout for category pages */
.two-col {
  display: grid; grid-template-columns: 1fr 320px;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.two-col aside {
  position: sticky; top: 100px;
  background: var(--cream); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); padding: 28px 26px;
}
.two-col aside h4 { margin: 0 0 14px; font-size: 15px; }
.two-col aside p { font-size: 14.5px; color: var(--muted); margin-bottom: 14px; }
.two-col aside .phone {
  display: block; font-family: var(--serif); font-size: 1.5rem; color: var(--bark);
  text-decoration: none; margin: 6px 0; font-weight: 500;
}
.two-col aside .phone:hover { color: var(--amber); }
.two-col aside .hours {
  font-size: 13px; color: var(--muted); margin-top: 14px;
  border-top: 1px solid var(--line-soft); padding-top: 14px;
}
@media (max-width: 920px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col aside { position: static; }
}

/* Photo strip / gallery */
.photo-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.photo-strip .ps {
  aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--wood-dark);
}
.photo-strip .ps img { width: 100%; height: 100%; object-fit: cover; }

/* Service areas */
.areas {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px;
}
.areas .pill {
  background: var(--paper); border: 1px solid var(--line);
  padding: 7px 14px; border-radius: 999px;
  font-size: 13.5px; color: var(--bark);
}

/* Pill jako link do per-city page */
.areas a.pill,
.areas .pill--link {
  background: var(--amber) !important; border-color: var(--amber-warm) !important;
  color: var(--paper) !important; text-decoration: none;
  font-weight: 600;
  transition: background 200ms, transform 120ms, box-shadow 200ms;
  box-shadow: 0 4px 14px rgba(160, 99, 30, 0.35);
}
.areas a.pill:hover,
.areas .pill--link:hover {
  background: var(--amber-warm) !important; transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(160, 99, 30, 0.5);
}

/* Pill "tutaj jesteśmy" (Olkusz) */
.areas .pill--here {
  font-weight: 700;
}

/* CTA strip */
.cta-strip {
  background: var(--bark); color: var(--cream);
  padding: clamp(50px, 7vw, 80px) 0;
  text-align: center;
}
.cta-strip h2 { color: var(--paper); margin-bottom: 14px; }
.cta-strip p { color: var(--cream-soft); max-width: 60ch; margin: 0 auto 28px; font-size: 1.05rem; }
.cta-strip .actions { display: inline-flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* CTA strip with embedded map */
.cta-strip--map { text-align: left; padding: clamp(56px, 6vw, 84px) 0; }
.cta-strip--map .cta-grid {
  display: grid; gap: 44px;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: stretch;
}
.cta-strip--map .cta-text { display: flex; flex-direction: column; }
.cta-strip--map .cta-eyebrow {
  display: inline-block; color: var(--amber-warm);
  font-family: var(--serif); font-style: italic;
  font-size: 1.05rem; letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.cta-strip--map .cta-text h2 {
  text-align: left; margin: 0 0 16px;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}
.cta-strip--map .cta-text > p {
  color: var(--cream-soft); max-width: none;
  margin: 0 0 22px; text-align: left;
}
.cta-strip--map .cta-addr {
  display: flex; flex-direction: column; gap: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--amber);
  padding: 14px 18px; margin-bottom: 26px;
  border-radius: 0 8px 8px 0;
}
.cta-strip--map .cta-addr strong { color: var(--paper); font-size: 16px; font-weight: 600; }
.cta-strip--map .cta-addr span { color: var(--cream-soft); font-size: 14px; }
.cta-strip--map .actions {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-start;
  margin-top: auto;
}
.cta-strip--map .cta-map {
  display: flex; flex-direction: column; gap: 14px;
  min-height: 380px;
}
.cta-strip--map .cta-map iframe {
  width: 100%; flex: 1; min-height: 340px;
  border: 0; border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  filter: saturate(1.05);
}
.cta-strip--map .btn-route {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  background: var(--amber); color: var(--paper);
  padding: 16px 24px; border-radius: 12px;
  text-decoration: none; font-weight: 600; font-size: 15.5px;
  letter-spacing: 0.01em;
  transition: background 200ms, transform 120ms, box-shadow 200ms;
  box-shadow: 0 8px 20px rgba(160, 99, 30, 0.35);
}
.cta-strip--map .btn-route:hover {
  background: var(--amber-warm); transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(160, 99, 30, 0.45);
}
.cta-strip--map .btn-route svg { flex-shrink: 0; }

@media (max-width: 900px) {
  .cta-strip--map .cta-grid {
    grid-template-columns: 1fr; gap: 28px;
  }
  .cta-strip--map { text-align: center; }
  .cta-strip--map .cta-text h2 { text-align: center; }
  .cta-strip--map .cta-text > p { text-align: center; }
  .cta-strip--map .actions { justify-content: center; }
  .cta-strip--map .cta-addr {
    border-left: 0; border-top: 3px solid var(--amber);
    border-radius: 0 0 10px 10px; align-items: center;
  }
  .cta-strip--map .cta-map { min-height: 320px; }
  .cta-strip--map .cta-map iframe { min-height: 280px; }
}

/* ============== FOOTER ============== */
.site-footer {
  background: var(--bark); color: var(--cream);
  padding: 70px 0 30px;
}
.site-footer .container { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer h4 { color: var(--amber-warm); font-size: 13px; letter-spacing: 0.18em; margin-bottom: 18px; }
.site-footer a { color: var(--cream); text-decoration: none; opacity: 0.85; }
.site-footer a:hover { color: var(--amber-warm); opacity: 1; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 8px; font-size: 14.5px; }
.site-footer .brand { color: var(--cream); margin-bottom: 18px; }
.site-footer .brand .mark { background: var(--paper); color: var(--bark); }
.site-footer .brand .name { color: var(--paper); }
.site-footer .nap { font-size: 14px; line-height: 1.7; color: var(--cream-soft); }
.site-footer .nap strong { color: var(--paper); }
.site-footer .legal {
  grid-column: 1 / -1; border-top: 1px solid rgba(242, 232, 210, 0.18);
  margin-top: 40px; padding-top: 24px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px;
  font-size: 12.5px; color: rgba(242, 232, 210, 0.55);
}
@media (max-width: 820px) {
  .site-footer .container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .site-footer .container { grid-template-columns: 1fr; }
}

/* Contact page */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 6vw, 70px);
  align-items: start;
}
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info dl { margin: 0; }
.contact-info dt {
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--amber); margin-top: 22px;
}
.contact-info dt:first-child { margin-top: 0; }
.contact-info dd { margin: 6px 0 0; font-size: 1.05rem; color: var(--bark); line-height: 1.55; }
.contact-info dd a { color: var(--bark); text-decoration: none; }
.contact-info dd a:hover { color: var(--amber); }
.map-embed {
  aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line);
}
.map-embed iframe, .map-embed img { width: 100%; height: 100%; border: 0; display: block; }

/* Contact form */
.form { display: grid; gap: 16px; }
.form label { font-size: 13px; font-weight: 600; color: var(--bark); display: block; margin-bottom: 6px; letter-spacing: 0.03em; }
.form input, .form textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line);
  border-radius: 8px; font: inherit; background: var(--paper);
  color: var(--ink);
}
.form input:focus, .form textarea:focus { outline: 2px solid var(--amber); outline-offset: 1px; border-color: var(--amber); }
.form textarea { min-height: 130px; resize: vertical; }

/* Blog grid */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.post {
  background: var(--paper); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); overflow: hidden; text-decoration: none; color: var(--ink);
  display: flex; flex-direction: column;
  transition: transform 200ms, box-shadow 200ms, border-color 200ms;
}
.post:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--amber); }
.post .img { aspect-ratio: 16/10; background: var(--wood-dark); overflow: hidden; }
.post .img img { width: 100%; height: 100%; object-fit: cover; }
.post .body { padding: 24px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.post .cat { font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--amber); margin-bottom: 8px; }
.post h3 { margin: 0 0 10px; font-size: 1.2rem; line-height: 1.25; }
.post p { font-size: 14.5px; color: var(--muted); margin: 0 0 14px; }
.post .meta { font-size: 13px; color: var(--muted); margin-top: auto; }

/* Stats / numbers */
.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 22px 36px; margin-top: 28px;
}
.stat .num {
  font-family: var(--serif); font-size: 3.2rem; line-height: 1; color: var(--amber);
  font-weight: 500; letter-spacing: -0.02em;
}
.stat .lbl { font-size: 14px; color: var(--muted); margin-top: 6px; line-height: 1.4; }
.bg-dark .stat .num { color: var(--amber-warm); }
.bg-dark .stat .lbl { color: var(--cream-soft); }

/* Ornament divider */
.ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin: 40px 0;
}
.ornament::before, .ornament::after {
  content: ""; height: 1px; background: var(--line); flex: 1; max-width: 120px;
}
.ornament span {
  color: var(--amber); font-size: 14px;
}

/* Small utility */
.no-list { list-style: none; padding: 0; margin: 0; }
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; } .mt-4 { margin-top: 28px; } .mt-6 { margin-top: 42px; }

/* ============== MAP MODAL ============== */
.map-modal {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(31, 20, 10, 0.78);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; transition: opacity 200ms;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.map-modal.open { display: flex; opacity: 1; }
.map-modal-card {
  background: var(--paper); border-radius: var(--radius-lg);
  width: 100%; max-width: 920px; max-height: 90vh;
  display: flex; flex-direction: column; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  transform: translateY(20px); transition: transform 240ms cubic-bezier(.2,.7,.3,1);
}
.map-modal.open .map-modal-card { transform: translateY(0); }
.map-modal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; border-bottom: 1px solid var(--line-soft);
  gap: 16px;
}
.map-modal-head .title { font-family: var(--serif); font-size: 1.4rem; color: var(--bark); font-weight: 500; margin: 0; }
.map-modal-head .addr { font-size: 14px; color: var(--muted); margin: 2px 0 0; }
.map-modal-close {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--cream); border: 1px solid var(--line);
  cursor: pointer; font-size: 20px; color: var(--bark);
  display: grid; place-items: center; flex: none;
  transition: background 120ms, color 120ms;
}
.map-modal-close:hover { background: var(--amber); color: var(--paper); border-color: var(--amber); }
.map-modal-body {
  flex: 1; min-height: 0; position: relative;
  background: var(--wood-dark);
}
.map-modal-body iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }
.map-modal-foot {
  padding: 18px 24px;
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
  border-top: 1px solid var(--line-soft);
  background: var(--cream-soft);
}
.map-modal-foot .hint { font-size: 13.5px; color: var(--muted); margin-right: auto; }
@media (max-width: 600px) {
  .map-modal { padding: 0; align-items: stretch; }
  .map-modal-card { max-height: 100vh; border-radius: 0; max-width: 100%; }
  .map-modal-head .title { font-size: 1.15rem; }
  .map-modal-foot .hint { display: none; }
}

/* topbar address as clickable button */
.topbar .tb-address {
  background: transparent; border: 0; cursor: pointer;
  color: inherit; font: inherit;
  padding: 0; display: inline-flex; align-items: center; gap: 6px;
}
.topbar .tb-address:hover { color: var(--amber-warm); text-decoration: underline; text-underline-offset: 3px; }

/* hero CTAs reorder helper */
.cta-pill-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
}

/* Print */
@media print {
  .topbar, .site-header, .site-footer, .cta-strip, .map-modal { display: none; }
}
