*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:      #2d6a4f;
  --green-dark: #1b4332;
  --green-light:#d8f3dc;
  --amber:      #e9c46a;
  --amber-dark: #c9a227;
  --text:       #1a1a1a;
  --muted:      #6b7280;
  --bg:         #f9f6f0;
  --white:      #ffffff;
  --line:       #e5e7eb;
  --radius:     12px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: var(--green); }

.demo-bar {
  background: var(--amber);
  color: var(--green-dark);
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
}

/* ── NAV ── */
nav {
  background: rgba(249, 246, 240, 0.93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(45, 106, 79, 0.14);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  padding-top: 16px;
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.nav-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.nav-tabs a {
  color: #6d7a6f;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 4px 14px;
  border-right: 1px solid rgba(45, 106, 79, 0.16);
}
.nav-tabs a:last-child { border-right: 0; }
.nav-tabs a:hover { color: var(--green-dark); }
.nav-tabs a.is-on { color: var(--green-dark); font-weight: 600; }
.nav-logo {
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green-dark);
  text-decoration: none;
}
.nav-logo span { color: var(--amber-dark); }
.nav-kicker {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6d7a6f;
}
.nav-search { display: flex; gap: 8px; max-width: 320px; margin-left: auto; }
.nav-search input {
  flex: 1;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
}
.nav-search button {
  background: var(--green);
  color: var(--white);
  border: 0;
  padding: 9px 18px;
  border-radius: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
}

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.wrap-wide { max-width: 1180px; }

.is-home .nav-search { display: none; }
.is-home .nav-inner { justify-content: center; }
.v2-mast {
  text-align: center;
  padding: 10px 20px 16px;
}
.v2-mast-brand {
  font-family: 'Lora', serif;
  font-size: clamp(1.55rem, 3.4vw, 2.15rem);
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-decoration: none;
  display: inline-block;
}
.v2-mast-brand:hover { color: var(--green); }
.v2-mast-sub {
  margin-top: 2px;
  font-size: 0.92rem;
  color: #4a564d;
}
.is-home-pack { display: flex; flex-direction: column; }
.v2-home {
  padding-top: 10px;
  padding-bottom: 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.v2-maplink {
  font-size: 13px;
  margin: 10px 0 12px;
  flex-shrink: 0;
  text-align: center;
}
.v2-cats-h {
  font-family: 'Lora', serif;
  color: var(--green-dark);
  font-size: 1.35rem;
  margin: 18px 0 12px;
  font-weight: 600;
}
.is-rozklad #pl-map { height: 560px; flex: none; }
.is-rozklad .v2-board { min-height: 560px; flex: none; }

.v2-fold {
  height: calc(100dvh - 58px);
  max-height: calc(100dvh - 58px);
  display: flex;
  flex-direction: column;
  padding-top: 6px;
  padding-bottom: 10px;
  overflow: hidden;
}
.v2-hero-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 0;
  text-align: center;
  padding: 8px 0 18px;
}
.v2-hero { padding: 0; flex-shrink: 0; text-align: center; width: 100%; }
.v2-hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(1.44rem, 2.82vw, 2.22rem);
  line-height: 1.2;
  font-weight: 600;
  color: var(--green-dark);
  margin: 0 auto 10px;
  max-width: none;
  white-space: nowrap;
}
.v2-lead {
  font-size: clamp(0.98rem, 1.62vw, 1.26rem);
  line-height: 1.35;
  color: #4a564d;
  margin: 0 auto;
  max-width: none;
  white-space: nowrap;
}
.v2-search {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(45, 106, 79, 0.18);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(27, 67, 50, 0.05), 0 8px 24px -14px rgba(27, 67, 50, 0.2);
  max-width: 720px;
  width: 100%;
  margin: 18px auto 0;
  overflow: hidden;
  flex-shrink: 0;
}
.is-home .v2-search {
  max-width: 864px;
  margin-top: 22px;
  border-radius: 17px;
}
.v2-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 16px;
  background: transparent;
}
.is-home .v2-search input {
  padding: 17px 22px;
  font-size: 19px;
}
.v2-search button {
  padding: 10px 20px;
  margin: 6px;
  background: var(--green);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: 0;
  border-radius: 9px;
  cursor: pointer;
}
.is-home .v2-search button {
  padding: 12px 24px;
  margin: 7px;
  font-size: 18px;
}
.v2-wni-alt {
  font-size: 12.5px;
  color: #6d7a6f;
  margin: 6px 0 8px;
  flex-shrink: 0;
}
.v2-maphead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.v2-maphead h1, .v2-maphead h2 {
  font-family: 'Lora', serif;
  font-size: 1.35rem;
  color: var(--green-dark);
  margin-bottom: 4px;
  font-weight: 600;
}
.v2-maphead p { margin: 0; font-size: 14px; color: #4a564d; }
.v2-src {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: #8a6d1f;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.v2-board {
  background: #fff;
  border: 1px solid rgba(45, 106, 79, 0.16);
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(27, 67, 50, 0.05), 0 22px 54px -36px rgba(27, 67, 50, 0.4);
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(220px, 1fr);
  grid-template-rows: minmax(0, 1fr);
  gap: 0;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.v2-mapcell {
  min-width: 0;
  min-height: 0;
  padding: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
}
#pl-map {
  width: 100%;
  flex: 1;
  min-height: 220px;
  height: auto;
  border-radius: 11px;
  background: linear-gradient(160deg, #f4f7f3, #f8f4ea);
  border: 1px solid rgba(45, 106, 79, 0.1);
  overflow: hidden;
}
#pl-tip {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transition: opacity .1s;
  background: #1b4332;
  color: #fff;
  font-size: 12.5px;
  padding: 6px 10px;
  border-radius: 7px;
  white-space: nowrap;
  z-index: 5;
}
.v2-listcell {
  min-width: 0;
  min-height: 0;
  padding: 12px 16px 12px 4px;
  border-left: 1px solid rgba(45, 106, 79, 0.1);
  overflow: auto;
}
.v2-listlabel {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6d7a6f;
  margin: 0 0 12px 10px;
}
.v2-updated {
  font-size: 12.5px;
  color: #6d7a6f;
  line-height: 1.5;
  margin: 16px 10px 0;
  padding-top: 14px;
  border-top: 1px solid rgba(45, 106, 79, 0.1);
}
.reg { fill: #e6efe8; stroke: #f9f6f0; stroke-width: 1.2; cursor: pointer; transition: fill .12s; }
.reg:hover, .reg.on { fill: #2d6a4f; }
.lbl { font-size: 10.5px; fill: #35473c; pointer-events: none; font-weight: 500; }
.row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 7px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.row:hover, .row.on { background: #eaf1ec; }
.row .n { font-family: 'IBM Plex Mono', monospace; font-size: 12.5px; color: #7c8a80; margin-left: auto; }
.v2-cta { background: #1b4332; color: #e7efe9; }
.v2-cta-inner {
  padding-top: 22px;
  padding-bottom: 22px;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.v2-cta h2 { font-family: 'Lora', serif; font-size: 1.35rem; color: #fff; margin: 0 0 8px; max-width: 640px; line-height: 1.25; }
.v2-cta p { margin: 0; font-size: 13.5px; line-height: 1.45; color: #c5d6cb; max-width: 640px; }
.v2-cta-btn {
  padding: 11px 18px;
  background: var(--amber);
  color: #3d2f06;
  font-size: 14px;
  font-weight: 600;
  border-radius: 9px;
  text-decoration: none;
  text-align: center;
  max-width: 240px;
  flex-shrink: 0;
}
.v2-foot {
  border-top: 1px solid rgba(45, 106, 79, 0.14);
  background: #f4f1e9;
}
.v2-foot .wrap-wide, .v2-foot .wrap {
  padding-top: 28px;
  padding-bottom: 28px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: #6d7a6f;
  line-height: 1.6;
}
.v2-board .mapa { height: 100%; min-height: 280px; margin: 0; border: 0; border-radius: 11px; }
.mapa-short { height: 260px !important; margin: 12px 0 8px; border-radius: 11px; }
.woj-board { height: min(560px, calc(100vh - 180px)); min-height: 420px; }
.v2-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  flex: none;
  margin-top: auto;
  align-content: start;
}
.v2-tile {
  background: #fff;
  border: 1px solid rgba(45, 106, 79, 0.16);
  border-radius: 8px;
  padding: 16px 10px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  min-width: 0;
  min-height: 96px;
}
.v2-tile:hover { background: #eaf1ec; color: inherit; }
.kat-ico {
  width: 29px;
  height: 29px;
  flex-shrink: 0;
  color: #8b6f55;
  margin-top: 1px;
}
.v2-tile-copy { min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.v2-tile-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px;
}
.v2-tile-n {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: #6d7a6f;
  white-space: nowrap;
}
.v2-tile-l { font-size: 13px; font-weight: 600; color: var(--green-dark); line-height: 1.2; }
.v2-tile-d { font-size: 12px; color: #4a564d; line-height: 1.35; }

.crumbs { font-size: 0.85rem; color: var(--muted); padding: 20px 0 0; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

.blog-head { padding: 10px 0 18px; }
.blog-head h1 {
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--green-dark);
  font-weight: 600;
}
.blog-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  padding-bottom: 48px;
}
.blog-card {
  background: #fff;
  border: 1px solid rgba(45, 106, 79, 0.16);
  border-radius: 16px;
  padding: 22px 24px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 180px;
  box-shadow: 0 1px 2px rgba(27, 67, 50, 0.04);
}
.blog-card:hover { background: #eaf1ec; color: inherit; }
.blog-kicker {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6d7a6f;
  margin-bottom: 10px;
}
.blog-card h2 {
  font-family: 'Lora', serif;
  font-size: 1.25rem;
  line-height: 1.28;
  color: var(--green-dark);
  font-weight: 600;
  margin: 0 0 10px;
}
.blog-card p { font-size: 0.95rem; color: #4a564d; line-height: 1.45; margin: 0; flex: 1; }
.blog-more { margin-top: 16px; font-weight: 600; font-size: 0.9rem; color: var(--green); }
.blog-card--feat { grid-column: 1 / span 4; grid-row: span 2; min-height: 280px; }
.blog-card--feat h2 { font-size: 1.75rem; }
.blog-card--tall { grid-column: 5 / span 2; grid-row: span 2; }
.blog-card--mid { grid-column: span 3; min-height: 200px; }
.blog-card--sml { grid-column: span 2; }
.blog-card--wide { grid-column: span 4; }
.blog-card--ad { background: #f7f1e4; border-color: rgba(139, 111, 85, 0.28); }
.blog-card--ad:hover { background: #f1e8d4; }
.blog-card--ad .blog-kicker { color: #8b6f55; }

/* ── FARM HEADER ── */
header.farm {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 16px;
}
.farm-cat {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.farm-cat.filled { background: var(--green); color: var(--white); }
header.farm h1 {
  font-family: 'Lora', serif;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 10px;
}
.farm-loc { color: var(--muted); font-size: 1.05rem; }

/* ── WNI ── */
.wni {
  margin-top: 24px;
  background: var(--bg);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  padding: 20px 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.wni-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.wni-num {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: .02em;
}
.wni-btn {
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 12px 22px;
  border-radius: 8px;
}
.wni-note { font-size: 0.85rem; color: var(--muted); margin-top: 12px; width: 100%; }

/* ── BLOCKS ── */
.block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-top: 20px;
}
.block h1, .block h2 {
  font-family: 'Lora', serif;
  font-size: 1.25rem;
  color: var(--green-dark);
  margin-bottom: 16px;
}
.block h1 { font-size: 1.55rem; }
.block p { color: var(--muted); font-size: 0.97rem; }
.block p + p { margin-top: 12px; }

dl.facts { display: grid; grid-template-columns: 200px 1fr; gap: 12px 20px; }
dl.facts dt { font-weight: 600; font-size: 0.92rem; }
dl.facts dd { color: var(--muted); font-size: 0.95rem; }
.code {
  font-family: ui-monospace, monospace;
  background: var(--bg);
  padding: 1px 7px;
  border-radius: 4px;
  font-size: 0.88rem;
  color: var(--green-dark);
}

/* ── CLAIM (dark) ── */
.claim { background: var(--green-dark); color: var(--white); border: 0; }
.claim h2 { color: var(--white); }
.claim p { color: rgba(255,255,255,0.78); }
.missing {
  list-style: none;
  margin: 18px 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px 24px;
}
.missing li { color: rgba(255,255,255,0.72); font-size: 0.94rem; padding-left: 26px; position: relative; }
.missing li::before { content: "—"; position: absolute; left: 0; color: var(--amber); font-weight: 700; }
.claim-btn {
  display: inline-block;
  background: var(--amber);
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 10px;
}
.claim-help { font-size: 0.88rem; margin-top: 14px; }
.claim-help a { color: var(--amber); }

/* ── NEARBY TILES ── */
.nearby { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; margin-top: 6px; }
.nearby a {
  display: block;
  background: var(--bg);
  border-radius: 8px;
  padding: 16px 18px;
  text-decoration: none;
  border: 1px solid var(--line);
}
.nearby .n { font-family: 'Lora', serif; font-size: 1.35rem; font-weight: 700; color: var(--green-dark); }
.nearby .t { font-size: 0.9rem; color: var(--muted); }

/* ── SOURCE / FOOTER ── */
.source {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--white);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 20px;
}
.source strong { color: var(--text); }
footer { text-align: center; color: var(--muted); font-size: 0.85rem; padding: 48px 24px 40px; }
footer a { color: var(--muted); }

/* ── FILLED PROFILE ── */
.verified {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-top: 14px;
}
.contact-bar {
  margin-top: 24px;
  background: var(--green-dark);
  border-radius: 10px;
  padding: 22px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}
.contact-bar .phone-label { font-size: 0.8rem; color: rgba(255,255,255,0.7); letter-spacing: .06em; text-transform: uppercase; }
.contact-bar .phone { font-family: 'Lora', serif; font-size: 1.8rem; font-weight: 700; color: var(--white); }
.contact-bar .call {
  background: var(--amber);
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 9px;
}

.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; }
.shot {
  aspect-ratio: 4/3;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green-light), var(--amber));
  display: flex;
  align-items: flex-end;
  padding: 10px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-dark);
}

table.products { width: 100%; border-collapse: collapse; }
table.products th {
  text-align: left;
  font-size: 0.78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 0 10px;
  border-bottom: 1px solid var(--line);
}
table.products td { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 0.95rem; vertical-align: top; }
table.products tr:last-child td { border-bottom: 0; }
table.products .pname { font-weight: 600; }
table.products .pdesc { color: var(--muted); font-size: 0.88rem; }
table.products .pprice { font-weight: 700; color: var(--green-dark); white-space: nowrap; }
.season { font-size: 0.85rem; color: var(--muted); white-space: nowrap; }
.badge-now {
  background: var(--green);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 6px;
}

.pickup { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.pickup div { background: var(--bg); border-radius: 8px; padding: 18px 20px; border: 1px solid var(--line); }
.pickup h3 { font-size: 0.95rem; color: var(--green-dark); margin-bottom: 6px; }
.pickup p { font-size: 0.9rem; }

.map-stub {
  height: 220px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 62% 45%, rgba(45,106,79,.22) 0 14px, transparent 15px),
    linear-gradient(180deg, #eef4ee, #e2ece4);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 4px;
}

/* ── LISTING PAGE ── */
.hero-list {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: var(--white);
  padding: 48px 24px 44px;
}
.hero-list .wrap { padding: 0 24px; }
.hero-list h1 {
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 4.5vw, 2.7rem);
  line-height: 1.18;
  margin-bottom: 12px;
}
.hero-list p.lead { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 620px; }
.stats { display: flex; flex-wrap: wrap; gap: 36px; margin-top: 28px; }
.stats div .k { font-family: 'Lora', serif; font-size: 2rem; font-weight: 700; color: var(--amber); line-height: 1; }
.stats div .v { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-top: 4px; }

.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.filters a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--green-dark);
}
.filters a.on { background: var(--green); color: var(--white); border-color: var(--green); }

.farm-list { list-style: none; }
.farm-list li { border-bottom: 1px solid var(--line); padding: 20px 0; }
.farm-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.farm-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: baseline; justify-content: space-between; }
.farm-row h3 { font-size: 1.05rem; color: var(--green-dark); }
.farm-row h3 a { text-decoration: none; color: inherit; }
.farm-row h3 a:hover { text-decoration: underline; }
.farm-meta { font-size: 0.88rem; color: var(--muted); margin-top: 3px; }
.farm-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }
.tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
  background: var(--bg);
  color: var(--muted);
  border: 1px solid var(--line);
}
.tag.full { background: var(--green-light); color: var(--green-dark); border-color: var(--green-light); }
.tag.phone { background: var(--green); color: var(--white); border-color: var(--green); }

.gminy { columns: 3; column-gap: 28px; }
.gminy a { display: block; text-decoration: none; padding: 6px 0; font-size: 0.93rem; }
.gminy a span { color: var(--muted); }

.promo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.promo {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 18px;
  background: var(--bg);
}
.promo .ad { font-size: 0.7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.promo h3 { font-size: 1rem; color: var(--green-dark); margin-bottom: 6px; }
.promo p { font-size: 0.88rem; color: var(--muted); }
.promo a { display: inline-block; margin-top: 10px; font-weight: 600; font-size: 0.9rem; }

.srch {
  display: flex; gap: 8px; max-width: 560px; margin-top: 24px;
}
.srch input {
  flex: 1; padding: 14px 16px; border: 0; border-radius: 10px;
  font-family: inherit; font-size: 1rem;
}
.srch button {
  background: var(--amber); color: var(--green-dark); border: 0;
  font-weight: 700; padding: 14px 22px; border-radius: 10px; cursor: pointer;
}

.mapa {
  height: 520px;
  width: 100%;
  margin-top: 16px;
  border-radius: 10px;
  border: 1px solid var(--line);
  z-index: 1;
}
.mapa.leaflet-container { font: inherit; }
.leaflet-container img { max-width: none !important; max-height: none !important; }
.leaflet-tile { opacity: 1 !important; }
.leaflet-popup-content ul { margin: 8px 0 0 1.1em; padding: 0; }
.leaflet-popup-content li { margin: 4px 0; }

.aeo {
  background: var(--green-light);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-top: 20px;
}
.aeo .q { font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
.prose h2 { font-size: 1.2rem; color: var(--green-dark); margin: 22px 0 8px; }
.prose h3 { font-size: 1.05rem; color: var(--green-dark); margin: 16px 0 6px; }
.prose p { margin: 0 0 12px; }
.prose ul, .prose ol { margin: 0 0 12px 1.2em; }
.prose li { margin: 4px 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 12px 0 16px; font-size: 0.92rem; }
.prose th, .prose td { text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { font-size: 0.78rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.prose code { background: var(--bg); padding: 1px 6px; border-radius: 4px; font-size: 0.88em; }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 20px 0; }

.inquiry label { display: block; font-weight: 600; font-size: 0.88rem; margin: 12px 0 4px; }
.inquiry select {
  width: 100%; padding: 10px 12px; border: 1px solid var(--line);
  border-radius: 8px; font-family: inherit; background: #fff;
}
.inquiry input, .inquiry textarea {
  width: 100%; padding: 10px 12px; border: 1px solid var(--line);
  border-radius: 8px; font-family: inherit;
}
.inquiry button {
  margin-top: 16px; background: var(--amber); color: var(--green-dark);
  border: 0; font-weight: 700; padding: 12px 22px; border-radius: 8px; cursor: pointer;
}

.plaque {
  max-width: 720px; margin: 40px auto; padding: 48px;
  border: 6px solid var(--green-dark); text-align: center; background: #fff;
}
.plaque h1 { font-family: Lora, serif; font-size: 2rem; margin: 12px 0; }
@media print { nav, .demo-bar, footer, .no-print { display: none !important; } .plaque { border-width: 4px; } }

@media (max-height: 780px) {
  .v2-hero h1 { font-size: 1.86rem; margin-bottom: 10px; }
  .v2-lead { font-size: 1.2rem; }
  .is-home .v2-search { margin-top: 17px; }
}
@media (min-width: 901px) {
  body.is-home {
    height: 100dvh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  body.is-home .v2-mast,
  body.is-home nav,
  body.is-home .v2-cta { flex-shrink: 0; }
  body.is-home .nav-inner { padding-top: 14px; padding-bottom: 10px; }
  .is-home-pack {
    flex: 1;
    min-height: 0;
    height: auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  body.is-home .v2-foot { display: none; }
}
@media (max-width: 900px) {
  .v2-fold { height: auto; max-height: none; overflow: visible; }
  .is-home-pack { height: auto; overflow: visible; }
  .v2-tiles { grid-template-columns: repeat(2, 1fr); margin-top: 18px; }
  .v2-tile { min-height: 0; }
  .v2-hero-block { padding: 18px 0 10px; }
  .blog-bento { grid-template-columns: 1fr; }
  .blog-card--feat, .blog-card--tall, .blog-card--mid, .blog-card--sml, .blog-card--wide {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 0;
  }
  .v2-board { grid-template-columns: 1fr; flex: none; }
  .v2-listcell { border-left: 0; border-top: 1px solid rgba(45, 106, 79, 0.1); max-height: 260px; }
  #pl-map { height: 320px; flex: none; }
  .v2-board .mapa { height: 320px; min-height: 320px; }
  .woj-board { max-height: none; }
}
@media (max-width: 640px) {
  .nav-search { display: none; }
  .v2-hero h1, .v2-lead { white-space: normal; }
  header.farm, .block { padding: 24px 20px; }
  dl.facts { grid-template-columns: 1fr; gap: 4px; }
  dl.facts dd { margin-bottom: 10px; }
  .gminy { columns: 1; }
  .stats { gap: 24px; }
}
