/* Inter — hostowany LOKALNIE (RODO: brak transferu IP do Google Fonts) */
@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:100 900;src:url('fonts/inter-latin-ext.woff2') format('woff2');unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;}
@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:100 900;src:url('fonts/inter-latin.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}

/* ===================================================================
   Baza Firm Poznań — szablon "Immersive / editorial"
   Granat + złoto (heraldyka Poznania) · oversized typo · katalog firm
   Mobile-first, jeden motyw.
   =================================================================== */

:root {
  --blue:      #14365c;
  --blue-d:    #0a2138;
  --blue-l:    #2f6db0;
  --cyan:      #18b9a6;
  --blue-soft: #eaf1f8;
  --blue-line: #cfddec;
  --accent:    #e6a92e;
  --accent-d:  #c1851b;
  --ink:       #0f1d2b;
  --body:      #44505d;
  --muted:     #6a7682;
  --line:      #e6e9ee;
  --bg:        #f4f6fa;
  --card:      #ffffff;
  --night:     #0a1726;
  --night-2:   #11233a;

  --grad:  linear-gradient(115deg, #2f6db0 0%, #14365c 55%, #18b9a6 110%);
  --grad-warm: linear-gradient(120deg, #e6a92e, #f4cb63);

  --r-sm: 12px;
  --r:    18px;
  --r-lg: 28px;

  --sh-1: 0 2px 4px rgba(10,30,50,.05), 0 8px 22px rgba(10,30,50,.06);
  --sh-2: 0 6px 14px rgba(10,30,50,.08), 0 22px 48px rgba(10,30,50,.14);
  --sh-3: 0 14px 34px rgba(11,79,138,.20), 0 30px 70px rgba(10,30,50,.22);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --wrap: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --hdr: 70px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, iframe { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.1; font-weight: 900; letter-spacing: -.025em; }
ul, ol { padding-left: 1.25em; }
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 3px solid var(--blue-l); outline-offset: 3px; border-radius: 4px; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-thumb { background: #c4ced8; border-radius: 8px; border: 3px solid var(--bg); }

/* ============ Layout ============ */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.wrap.narrow { max-width: 820px; }
.center { text-align: center; }
.section { padding: 70px 0; }
.section-alt { background: var(--card); }
.muted { color: var(--muted); }

.section-head { max-width: 680px; margin: 0 auto 44px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head h2 { font-size: clamp(28px, 5vw, 46px); margin: 12px 0 14px; }
.section-head p { color: var(--muted); font-size: 17px; }

.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase; color: var(--accent-d);
}
.eyebrow-light { color: #ffc89e; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  font-weight: 800; font-size: 15px; border-radius: 999px; border: 0;
  padding: 13px 26px; white-space: nowrap; font-family: inherit;
  transition: transform .2s var(--ease), background .2s, box-shadow .2s, color .2s;
}
.btn:hover { text-decoration: none; }
.btn-cta { background: var(--accent); color: #fff; box-shadow: 0 8px 22px rgba(255,122,61,.40); }
.btn-cta:hover { background: var(--accent-d); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(255,122,61,.50); }
.btn-cta:active { transform: translateY(0); }
.btn-lg { padding: 16px 34px; font-size: 16px; }

/* ============ Header ============ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.site-header.is-scrolled { box-shadow: 0 4px 22px rgba(10,30,50,.08); }
.site-header.transparent {
  position: fixed; left: 0; right: 0;
  background: transparent; border-color: transparent;
}
.site-header.transparent.is-scrolled {
  background: rgba(255,255,255,.97);
  border-color: var(--line);
  box-shadow: 0 4px 22px rgba(10,30,50,.10);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--hdr); }
.logo { display: inline-flex; align-items: center; gap: 12px; font-size: 24px; font-weight: 900; color: var(--ink); letter-spacing: -.035em; line-height: 1; }
.logo:hover { text-decoration: none; }
.logo-mark { width: 48px; height: 31px; flex-shrink: 0; display: block; transition: transform .35s var(--ease); }
.logo:hover .logo-mark { transform: translateY(-2px); }
.logo-txt { color: inherit; }
.logo-tld { color: var(--accent); }
.transparent:not(.is-scrolled) .logo { color: #fff; }
.logo-light { color: #fff; }

.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a { color: var(--ink); font-weight: 600; padding: 9px 15px; border-radius: 10px; transition: background .15s, color .15s; }
.site-nav a:hover { background: var(--blue-soft); color: var(--blue); text-decoration: none; }
.transparent:not(.is-scrolled) .site-nav a { color: #fff; }
.transparent:not(.is-scrolled) .site-nav a:hover { background: rgba(255,255,255,.16); color: #fff; }
.site-nav a.btn-cta, .transparent:not(.is-scrolled) .site-nav a.btn-cta { color: #fff; margin-left: 8px; }
.site-nav a.btn-cta:hover { background: var(--accent-d); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 9px; background: none; }
.nav-toggle span { width: 25px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s var(--ease); }
.transparent:not(.is-scrolled) .nav-toggle span { background: #fff; }

/* ============ Home hero ============ */
.home-hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: 94vh; display: flex; align-items: center;
  padding: calc(var(--hdr) + 40px) 0 90px;
  background: var(--blue-d); color: #fff;
}
.home-hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; z-index: -2;
  transform: scale(1.08);
  filter: blur(2px) brightness(.74) saturate(.92);
}
.home-hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 85% at 22% 8%, rgba(25,194,201,.16), transparent 58%),
    linear-gradient(180deg, rgba(6,20,38,.72) 0%, rgba(6,20,38,.66) 42%, rgba(6,20,38,.90) 100%);
}
.hero-blob {
  position: absolute; width: 60vw; height: 60vw; max-width: 760px; max-height: 760px;
  right: -16vw; top: -14vw; z-index: -1; border-radius: 50%; filter: blur(30px);
  background: radial-gradient(circle at 30% 30%, rgba(28,143,214,.5), transparent 62%);
  animation: float 14s ease-in-out infinite;
}
@keyframes float { 50% { transform: translate(-26px, 30px) scale(1.06); } }

.home-hero-inner { position: relative; max-width: 880px; }
.hero-kicker {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .04em;
  color: #fff; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.22);
  padding: 8px 16px; border-radius: 999px; backdrop-filter: blur(4px);
}
.home-hero h1 {
  color: #fff; font-size: clamp(42px, 9vw, 104px); font-weight: 900;
  letter-spacing: -.04em; line-height: .98; margin: 22px 0 20px;
  text-shadow: 0 6px 40px rgba(0,0,0,.35);
}
.home-hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, #6fe3e8, #ffb24d);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.home-hero .lead {
  color: rgba(255,255,255,.92); font-size: clamp(16px, 2.2vw, 21px);
  max-width: 620px; line-height: 1.55;
}

.hero-search {
  display: flex; align-items: center; gap: 8px;
  max-width: 620px; margin: 34px 0 0;
  background: rgba(255,255,255,.97); padding: 8px 8px 8px 20px;
  border-radius: 999px; box-shadow: var(--sh-3);
}
.hero-search-ic { font-size: 17px; opacity: .5; flex-shrink: 0; }
.hero-search input {
  flex: 1; border: 0; outline: 0; font-size: 16px; padding: 13px 6px;
  background: transparent; color: var(--ink); min-width: 0; font-family: inherit;
}
.hero-search .btn-cta { flex-shrink: 0; }

.hero-meta { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 30px; font-size: 14px; color: rgba(255,255,255,.85); }
.hero-meta b { font-size: 24px; font-weight: 900; color: #fff; margin-right: 6px; }
.hero-credit { position: absolute; right: 22px; bottom: 16px; z-index: 2; margin: 0; }
.hero-credit .credit { color: rgba(255,255,255,.55); font-size: 11px; }
.hero-credit .credit a { color: rgba(255,255,255,.78); }

.hero-scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.5);
  border-radius: 14px; z-index: 2;
}
.hero-scroll span {
  position: absolute; left: 50%; top: 8px; width: 4px; height: 8px;
  background: #fff; border-radius: 2px; transform: translateX(-50%);
  animation: scrolldot 1.7s var(--ease) infinite;
}
@keyframes scrolldot { 50% { transform: translate(-50%, 12px); opacity: .3; } }

/* ============ Marquee ============ */
.marquee { overflow: hidden; background: var(--night); color: #fff; padding: 16px 0; }
.marquee-track { display: flex; width: max-content; animation: marquee 36s linear infinite; }
.marquee-row { display: flex; align-items: center; }
.marquee-row span {
  font-size: 19px; font-weight: 800; letter-spacing: -.01em;
  padding: 0 22px; white-space: nowrap; color: rgba(255,255,255,.92);
}
.marquee-row .dot { color: var(--cyan); font-size: 11px; padding: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ Region board (index) ============ */
.region-board { display: grid; gap: 22px; }
.tile-media { position: absolute; inset: 0; overflow: hidden; background: var(--grad); }
.tile-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.region-feat:hover .tile-media img, .region-tile:hover .tile-media img { transform: scale(1.07); }
.no-img .tile-media img { display: none; }
.no-img .tile-media::after { content: "🏞️"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 54px; }

.region-feat, .region-tile {
  position: relative; isolation: isolate; overflow: hidden; color: #fff;
  border-radius: var(--r-lg); box-shadow: var(--sh-1);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.region-feat::after, .region-tile::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(190deg, rgba(8,22,40,.12) 0%, rgba(8,22,40,.18) 45%, rgba(8,22,40,.82) 100%);
}
.region-feat:hover, .region-tile:hover { transform: translateY(-6px); box-shadow: var(--sh-3); text-decoration: none; }

.region-feat { min-height: 380px; display: flex; align-items: flex-end; }
.region-feat .tile-body { position: relative; z-index: 2; padding: 40px; max-width: 620px; }
.region-feat h3 { color: #fff; font-size: clamp(30px, 5vw, 52px); margin: 12px 0 10px; text-shadow: 0 2px 20px rgba(0,0,0,.3); }
.region-feat p { color: rgba(255,255,255,.9); font-size: 16px; max-width: 540px; }

.region-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.region-tile { min-height: 320px; display: flex; align-items: flex-end; }
.region-tile .tile-body { position: relative; z-index: 2; padding: 22px; width: 100%; }
.region-tile h3 { color: #fff; font-size: 24px; margin: 4px 0 0; text-shadow: 0 2px 14px rgba(0,0,0,.35); }

.tile-chip {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  font-size: 12px; font-weight: 800; color: var(--ink);
  background: rgba(255,255,255,.95); padding: 6px 13px; border-radius: 999px;
  box-shadow: 0 3px 10px rgba(0,0,0,.18);
}
.region-feat .tile-chip {
  position: static; display: inline-block; margin-bottom: 6px;
  background: var(--grad-warm); color: #fff;
}
.tile-meta { font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.8); }
.tile-cta {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 14px;
  font-weight: 800; font-size: 14.5px; color: #fff;
}
.tile-cta i { font-style: normal; transition: transform .25s var(--ease); }
.region-feat:hover .tile-cta i, .region-tile:hover .tile-cta i { transform: translateX(6px); }
.region-tile .tile-cta {
  max-height: 0; opacity: 0; margin-top: 0; overflow: hidden;
  transition: max-height .3s var(--ease), opacity .3s, margin-top .3s;
}
.region-tile:hover .tile-cta, .region-tile:focus-visible .tile-cta { max-height: 40px; opacity: 1; margin-top: 12px; }
.no-results { text-align: center; color: var(--muted); margin-top: 34px; }

/* ============ Dark feature section ============ */
.section-dark { background: var(--night); color: #c4cfda; position: relative; }
.section-dark h2 { color: #fff; }
.feature-grid, .steps {
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.feature {
  background: var(--night-2); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r); padding: 30px;
  transition: transform .22s var(--ease), border-color .22s;
}
.feature:hover { transform: translateY(-5px); border-color: rgba(255,255,255,.20); }
.feature-icon {
  width: 56px; height: 56px; border-radius: 16px; font-size: 27px;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad); margin-bottom: 16px;
}
.feature h3 { color: #fff; font-size: 19px; margin-bottom: 8px; }
.feature p { font-size: 14.5px; color: #9fb0bf; }

/* ============ Steps ============ */
.steps { counter-reset: s; }
.step {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r); padding: 30px; box-shadow: var(--sh-1);
  transition: transform .22s var(--ease), box-shadow .22s;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--sh-2); }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 50px; height: 50px; border-radius: 16px;
  background: var(--grad); color: #fff; font-weight: 900; font-size: 17px;
  margin-bottom: 16px; box-shadow: 0 8px 20px rgba(11,79,138,.28);
}
.step h3 { font-size: 19px; margin-bottom: 7px; }
.step p { font-size: 14.5px; color: var(--muted); }

/* ============ CTA ============ */
.cta {
  position: relative; overflow: hidden; color: #fff;
  background: var(--night); border-radius: var(--r-lg); padding: 52px;
  display: flex; gap: 30px; align-items: center; justify-content: space-between;
  flex-wrap: wrap; box-shadow: var(--sh-2);
}
.cta::before {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 380px; height: 380px; border-radius: 50%; background: var(--grad); opacity: .35;
  filter: blur(20px);
}
.cta > * { position: relative; }
.cta h2 { color: #fff; font-size: clamp(22px, 3.2vw, 34px); }
.cta p { color: rgba(255,255,255,.82); margin-top: 10px; max-width: 560px; }

/* ============ Region hero ============ */
.region-hero {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--blue-d) center/cover no-repeat;
  color: #fff; padding: calc(var(--hdr) + 56px) 0 70px;
}
.region-hero .hero-blob { z-index: 0; opacity: .5; }
.region-hero .wrap { position: relative; z-index: 1; }
.region-hero h1 {
  color: #fff; font-size: clamp(34px, 6.5vw, 64px); font-weight: 900;
  letter-spacing: -.035em; margin: 16px 0; max-width: 16ch;
  text-shadow: 0 4px 28px rgba(0,0,0,.34);
}
.region-hero .lead { color: rgba(255,255,255,.93); font-size: 18.5px; max-width: 680px; }
.region-hero .stats-bar {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 18px;
  max-width: 720px; margin: 34px 0 0;
}
.stat strong { display: block; font-size: clamp(26px,4.5vw,38px); font-weight: 900; color: #fff; line-height: 1; }
.stat span { font-size: 13px; color: rgba(255,255,255,.8); }
.region-hero .hero-credit { position: static; margin-top: 24px; }
.region-hero .credit { color: rgba(255,255,255,.58); font-size: 11.5px; }
.region-hero .credit a { color: rgba(255,255,255,.8); }

/* ============ Breadcrumb ============ */
.breadcrumb { font-size: 13px; color: var(--muted); padding: 24px 0 0; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { margin: 0 7px; opacity: .55; }
.breadcrumb [aria-current] { color: var(--ink); font-weight: 600; }
.breadcrumb-light, .breadcrumb-light a { color: rgba(255,255,255,.75); }
.breadcrumb-light [aria-current] { color: #fff; }

/* ============ Article hero ============ */
.article-hero {
  position: relative; background: var(--blue-d) center/cover no-repeat;
  color: #fff; padding: calc(var(--hdr) + 46px) 0 56px;
}
.article-hero--plain { background: var(--grad); }
.article-hero .badge-light {
  display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; color: #fff; background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.26); padding: 6px 14px; border-radius: 999px;
  margin: 16px 0 14px;
}
.article-hero h1 {
  color: #fff; font-size: clamp(28px, 5vw, 50px); font-weight: 900;
  letter-spacing: -.035em; margin-bottom: 16px; text-shadow: 0 4px 24px rgba(0,0,0,.34);
}
.article-hero .lead { color: rgba(255,255,255,.93); font-size: 19px; font-weight: 500; }
.article-hero .hero-credit { position: static; margin-top: 18px; }
.article-hero .credit { color: rgba(255,255,255,.55); font-size: 11.5px; }
.article-hero .credit a { color: rgba(255,255,255,.78); }

/* ============ Prose ============ */
.article { padding: 56px 0 60px; }
.prose { font-size: 16.5px; color: var(--body); }
.prose p { margin: 0 0 17px; }
.prose strong { color: var(--ink); }
.prose h2 { font-size: clamp(23px, 3.4vw, 31px); margin: 42px 0 16px; }
.prose h3 { font-size: 20px; margin: 30px 0 11px; }
.prose ul, .prose ol { margin: 0 0 19px; }
.prose li { margin-bottom: 8px; }
.prose li::marker { color: var(--accent); }
.back-link { margin-top: 40px; font-weight: 800; }

/* ============ Region body grids ============ */
.card-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fill, minmax(265px, 1fr)); }
.attraction-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 28px; color: var(--body); display: flex; flex-direction: column;
  box-shadow: var(--sh-1);
  transition: transform .22s var(--ease), box-shadow .22s, border-color .22s;
}
.attraction-card:hover { transform: translateY(-6px); box-shadow: var(--sh-3); border-color: var(--blue-line); text-decoration: none; }
.attraction-icon {
  width: 58px; height: 58px; border-radius: 16px; font-size: 29px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-soft); margin-bottom: 14px;
}
.attraction-card h3 { font-size: 20px; margin-bottom: 7px; }
.attraction-card p { font-size: 14.5px; color: var(--muted); flex: 1; }
.card-cta {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 16px;
  font-weight: 800; color: var(--blue); font-size: 14.5px;
}
.card-cta i { font-style: normal; transition: transform .2s var(--ease); }
.attraction-card:hover .card-cta { color: var(--accent-d); }
.attraction-card:hover .card-cta i { transform: translateX(5px); }

/* ============ Noclegi ============ */
.source-note {
  font-size: 13.5px; color: #50607a; background: var(--blue-soft);
  border: 1px solid var(--blue-line); border-radius: var(--r-sm);
  padding: 16px 20px; margin-bottom: 30px;
}
.lodging-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.lodging-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 26px; display: flex; flex-direction: column; box-shadow: var(--sh-1);
  transition: transform .2s var(--ease), box-shadow .2s;
}
.lodging-card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.lodging-cat {
  font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-soft); align-self: flex-start;
  padding: 5px 13px; border-radius: 999px;
}
.lodging-card h3 { font-size: 20px; margin: 14px 0 4px; }
.lodging-loc { font-size: 13.5px; color: var(--muted); margin-bottom: 11px; }
.lodging-desc { font-size: 14.5px; flex: 1; }
.lodging-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.lodging-tags a {
  font-size: 12.5px; background: var(--bg); border: 1px solid var(--line);
  color: var(--body); padding: 5px 13px; border-radius: 999px; transition: .15s;
}
.lodging-tags a:hover { background: var(--blue-soft); color: var(--blue); border-color: var(--blue-line); text-decoration: none; }
.lodging-regions { display: flex; flex-wrap: wrap; gap: 7px; margin: 4px 0 2px; }
.lodging-regions .region-tag {
  font-size: 11.5px; font-weight: 700; letter-spacing: .02em;
  color: var(--accent); background: rgba(255,122,61,.10);
  border: 1px solid rgba(255,122,61,.30); padding: 3px 11px; border-radius: 999px;
  transition: .15s;
}
.lodging-regions .region-tag:hover { background: var(--accent); color: #fff; border-color: var(--accent); text-decoration: none; }
.article-hero .lodging-regions { margin: 12px 0 4px; }
.article-hero .lodging-regions .region-tag { color: #fff; background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.30); }
.article-hero .lodging-regions .region-tag:hover { background: rgba(255,255,255,.30); }

/* ---- Strona MAPA (Leaflet) ---- */
.section-map { padding-top: 26px; }
#uu-map { height: 74vh; min-height: 460px; width: 100%; border-radius: 18px; overflow: hidden; box-shadow: var(--sh-1); z-index: 0; }
@media (max-width: 720px){ #uu-map { height: 70vh; min-height: 380px; border-radius: 12px; } }
.mp-dot { display:block; width:100%; height:100%; border-radius:50%; border:2px solid #fff; box-shadow:0 1px 3px rgba(0,0,0,.45); box-sizing:border-box; }
.mp-attr { background:#ff7a3d; } .mp-noc { background:#1f9d55; } .mp-reg { background:#0b4f8a; border-width:3px; }
.mp-legend { display:flex; flex-wrap:wrap; align-items:center; gap:10px 20px; margin:6px 0 18px; font-weight:600; font-size:14px; }
.mp-legend > span { display:inline-flex; align-items:center; gap:8px; }
.mp-legend i { width:15px; height:15px; border-radius:50%; border:2px solid #fff; box-shadow:0 1px 2px rgba(0,0,0,.3); }
.mp-legend i.mp-reg { border-width:3px; }
.mp-legend-note { color: var(--muted); font-weight:500; font-size:13px; }
.mp-r { color: var(--muted); font-size:12.5px; }
.leaflet-popup-content { font-size:14px; line-height:1.45; }
.leaflet-popup-content a { font-weight:800; color: var(--blue); }
.leaflet-control-layers { border-radius:12px !important; box-shadow:var(--sh-1) !important; border:1px solid var(--line) !important; font-weight:600; }
.leaflet-control-layers-list { padding:4px 6px; }
.mp-ov { display:inline-flex; align-items:center; }
.mp-ov::before { content:""; display:inline-block; width:12px; height:12px; border-radius:50%; margin-right:7px; border:2px solid #fff; box-shadow:0 0 0 1px rgba(0,0,0,.15); }
.mp-ov-reg::before { background:#0b4f8a; } .mp-ov-atr::before { background:#ff7a3d; } .mp-ov-noc::before { background:#1f9d55; }
.lodging-card.paid { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent) inset, var(--sh-1); }
.lodging-paid { display: inline-block; margin-left: 8px; font-size: 10.5px; font-weight: 800; letter-spacing: .04em; color: #fff; background: var(--accent); padding: 3px 9px; border-radius: 999px; vertical-align: middle; }
.lodging-distances { margin-top: 16px; }
.lodging-distances .ld-h { display: block; font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 8px; }
.lodging-distances ul { list-style: none; padding: 0; margin: 0; }
.lodging-distances li { display: flex; justify-content: space-between; gap: 14px; padding: 7px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.lodging-distances li:last-child { border-bottom: 0; }
.lodging-distances li a { font-weight: 600; }
.lodging-distances li span { color: var(--blue); font-weight: 800; white-space: nowrap; }
.lodging-contact {
  display: flex; flex-direction: column; gap: 8px; margin-top: 18px;
  padding-top: 16px; border-top: 1px solid var(--line); font-size: 14px; font-weight: 700;
}
.lodging-contact a { word-break: break-word; }
.lodging-contact a:hover { text-decoration: none; color: var(--accent-d); }
.lodging-owner-cta {
  text-align: center; background: var(--card); border: 1.5px dashed var(--blue-line);
  border-radius: var(--r-lg); padding: 42px 28px; margin-top: 34px;
}
.lodging-owner-cta h3 { font-size: 23px; margin-bottom: 9px; }
.lodging-owner-cta p { color: var(--muted); max-width: 540px; margin: 0 auto 22px; }

/* ============ Seasons / KV / Map ============ */
.seasons { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.season { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 22px; border-top: 3px solid var(--accent); }
.season-tag { display: inline-block; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: var(--accent-d); margin-bottom: 8px; }
.season p { font-size: 14px; color: var(--body); }

.kv { display: grid; background: var(--card); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-1); }
.kv > div { display: grid; grid-template-columns: 210px 1fr; gap: 8px 24px; padding: 16px 22px; border-bottom: 1px solid var(--line); }
.kv > div:last-child { border-bottom: 0; }
.kv > div:nth-child(even) { background: #fafbfc; }
.kv dt { font-weight: 800; color: var(--ink); font-size: 14px; }
.kv dd { color: var(--body); font-size: 14.5px; }

.map { margin: 32px 0; }
.map iframe { border: 0; border-radius: var(--r); width: 100%; box-shadow: var(--sh-1); }
.map figcaption { font-size: 12.5px; color: var(--muted); margin-top: 9px; }

/* ============ Nearby ============ */
.nearby { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; margin-top: 40px; box-shadow: var(--sh-1); }
.nearby h2 { font-size: 23px; margin-bottom: 6px; }
.nearby-list { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
.nearby-item { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 17px; background: var(--bg); border-radius: var(--r-sm); }
.nearby-item strong { display: block; color: var(--ink); }
.nearby-item span { font-size: 13px; color: var(--muted); }
.nearby-contact { display: flex; flex-direction: column; gap: 5px; font-size: 13.5px; font-weight: 700; }
.nearby-dist { font-size: 13.5px; font-weight: 800; color: var(--blue); white-space: nowrap; align-self: center; }
.kv dt a { font-weight: 800; }

/* ============ Forms ============ */
.form-page { padding: 0 0 64px; }
.form-page h1 { font-size: clamp(28px, 4.6vw, 44px); font-weight: 900; margin: 22px 0 12px; }
.form-page .lead { font-size: 17px; color: var(--muted); margin-bottom: 32px; }
.form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px; box-shadow: var(--sh-1); }
.form-card h3 { font-size: 13px; text-transform: uppercase; letter-spacing: .09em; color: var(--muted); margin: 30px 0 17px; padding-bottom: 11px; border-bottom: 1px solid var(--line); }
.form-card h3:first-child { margin-top: 0; }
.form-row { margin-bottom: 18px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row > label { display: block; font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; font-size: 15px; padding: 13px 15px; color: var(--ink);
  background: #fff; border: 1.5px solid #ccd6df; border-radius: var(--r-sm);
  font-family: inherit; transition: border-color .15s, box-shadow .15s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: 0; border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-soft); }
.form-row textarea { min-height: 124px; resize: vertical; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.consent { display: flex; gap: 11px; align-items: flex-start; font-weight: 400 !important; font-size: 13.5px !important; color: var(--muted) !important; }
.consent input { width: auto !important; margin-top: 3px; }
.form-card .btn-lg { margin-top: 8px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 14px; }
.info-box { background: var(--blue-soft); border: 1px solid var(--blue-line); border-radius: var(--r-lg); padding: 30px; margin-top: 32px; }
.info-box h3 { font-size: 16px; margin-bottom: 12px; }
.info-box ol { font-size: 14px; color: var(--body); padding-left: 1.3em; }
.info-box li { margin-bottom: 8px; }
.info-box li::marker { color: var(--blue); font-weight: 700; }
.big-check {
  width: 84px; height: 84px; margin: 40px auto 22px; border-radius: 50%;
  background: var(--grad); color: #fff; font-size: 42px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 34px rgba(11,79,138,.34);
}

/* ============ Footer ============ */
.site-footer { background: var(--night); color: #9fb0bf; padding: 60px 0 34px; }
.footer-grid { display: grid; gap: 36px; grid-template-columns: 1fr; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.09); }
.footer-about p { font-size: 14px; margin-top: 14px; max-width: 360px; line-height: 1.75; }
.site-footer h4 { color: #fff; font-size: 13px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .09em; }
.site-footer ul { list-style: none; padding: 0; }
.site-footer li { margin-bottom: 10px; }
.footer-regions { columns: 2; column-gap: 30px; }
.footer-regions li { break-inside: avoid; }
@media (min-width: 980px) { .footer-regions { columns: 3; } }
.site-footer a { color: #9fb0bf; font-size: 14px; }
.site-footer a:hover { color: #fff; }
.footer-bottom { padding-top: 26px; font-size: 13px; color: #6c7a87; }

/* ============ Reveal ============ */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ============ Responsive ============ */
@media (min-width: 760px) {
  .wrap { padding: 0 36px; }
  .section { padding: 96px 0; }
  .footer-grid { grid-template-columns: 1.5fr 2fr 1.1fr 1.1fr; align-items: start; }
  .region-hero .stats-bar { grid-template-columns: repeat(4,1fr); }
  .region-feat .tile-body { padding: 52px; }
}

@media (max-width: 760px) {
  :root { --hdr: 62px; }
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed; inset: var(--hdr) 0 auto; background: var(--blue-d);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 16px 22px 26px; border-bottom: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 16px 30px rgba(10,30,50,.30);
    transform: translateY(-145%); transition: transform .3s var(--ease);
  }
  .site-nav.open { transform: translateY(0); }
  .site-nav a, .transparent:not(.is-scrolled) .site-nav a { color: #fff; padding: 15px 12px; border-radius: 10px; }
  .site-nav a:hover, .transparent:not(.is-scrolled) .site-nav a:hover { background: rgba(255,255,255,.14); color: #fff; }
  .site-nav a.btn-cta, .transparent:not(.is-scrolled) .site-nav a.btn-cta { color: #fff; margin: 10px 0 0; text-align: center; justify-content: center; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .home-hero { min-height: 88vh; }
  .hero-search { flex-direction: column; align-items: stretch; border-radius: var(--r); padding: 14px; }
  .hero-search-ic { display: none; }
  .hero-search .btn-cta { justify-content: center; }
  .hero-meta { gap: 18px 24px; }
  .hero-scroll { display: none; }
  .region-feat .tile-body { padding: 26px; }
  .form-row.two { grid-template-columns: 1fr; }
  .cta { flex-direction: column; align-items: flex-start; text-align: left; padding: 34px 26px; }
  .kv > div { grid-template-columns: 1fr; gap: 3px; }
}

/* ============ Strona obiektu (otoczka regionu) ============ */
.lodging-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-weight: 800; font-size: 14px; color: var(--blue); }
.lodging-more i { font-style: normal; transition: transform .2s var(--ease); }
.lodging-card:hover .lodging-more i { transform: translateX(5px); }
.lodging-card h3 a { color: inherit; }
.lodging-card h3 a:hover { color: var(--blue); text-decoration: none; }
.obj-contact { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 6px; }
.obj-contact .btn-ghost { background: var(--blue-soft); color: var(--blue); }
.obj-contact .btn-ghost:hover { background: var(--blue-line); }
.obj-h2 { font-size: clamp(22px,3.4vw,30px); margin: 44px 0 8px; }
.obj-attr-dist { display: inline-block; margin: 8px 0 2px; font-size: 12.5px; font-weight: 800; color: var(--blue); background: var(--blue-soft); padding: 4px 10px; border-radius: 999px; align-self: flex-start; }
.obj-others { display: grid; gap: 12px; grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); }
.obj-other { display: flex; flex-direction: column; gap: 3px; padding: 14px 16px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-sm); }
.obj-other:hover { border-color: var(--blue-line); background: var(--blue-soft); text-decoration: none; }
.obj-other strong { color: var(--ink); }
.obj-other span { font-size: 12.5px; color: var(--muted); }

/* ============ Footer legal + cookies ============ */
.footer-bottom { display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: space-between; align-items: center; }
.footer-legal a { color: #c4cfda; }
.footer-legal a:hover { color: #fff; }
.footer-legal .sep { margin: 0 8px; opacity: .5; }
.cookie-bar {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 80;
  max-width: 880px; margin: 0 auto;
  display: flex; gap: 18px; align-items: center; justify-content: space-between;
  flex-wrap: wrap; background: var(--night); color: #d6dee6;
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--r);
  padding: 16px 20px; box-shadow: var(--sh-3);
}
.cookie-bar p { font-size: 13.5px; margin: 0; flex: 1; min-width: 220px; }
.cookie-bar a { color: #fff; text-decoration: underline; }
.cookie-bar .btn-cta { flex-shrink: 0; }
.cookie-bar.is-hiding { opacity: 0; transform: translateY(10px); transition: opacity .25s, transform .25s; }

/* ============ Cennik ============ */
.pricing-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); margin-top: 8px; }
.price-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; display: flex; flex-direction: column; box-shadow: var(--sh-1); }
.price-card.is-featured { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent) inset, var(--sh-2); }
.price-tag-top { font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-d); }
.price-card h3 { font-size: 23px; margin: 6px 0 4px; }
.price-amount { font-size: 30px; font-weight: 900; color: var(--ink); margin: 10px 0 2px; }
.price-amount small { display: block; font-size: 13px; font-weight: 600; color: var(--muted); }
.price-card ul { list-style: none; padding: 0; margin: 18px 0 22px; }
.price-card li { padding: 8px 0 8px 26px; position: relative; font-size: 14.5px; border-bottom: 1px solid var(--line); }
.price-card li:last-child { border-bottom: 0; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 900; }
.price-card .btn { margin-top: auto; justify-content: center; }
.why-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); margin-top: 8px; }
.why-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; }
.why-card .feature-icon { background: var(--blue-soft); }
.why-card h3 { font-size: 18px; margin-bottom: 6px; }
.why-card p { font-size: 14.5px; color: var(--muted); }

@media (max-width: 760px) {
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .cookie-bar { flex-direction: column; align-items: flex-start; left: 10px; right: 10px; bottom: 10px; }
}

/* ============ Pakiety: badge premium, upsell, premium strip ============ */
.lodging-paid.premium { background: linear-gradient(120deg,#7a4dff,#b06bff); }
.upsell { background: var(--blue-soft); border: 1px solid var(--blue-line); border-radius: var(--r-lg); padding: 28px; margin-top: 36px; text-align: center; }
.upsell h3 { font-size: 20px; margin-bottom: 8px; }
.upsell p { color: var(--body); max-width: 620px; margin: 0 auto 16px; font-size: 14.5px; }
.premium-strip {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px;
  background: linear-gradient(120deg,#3a1d8a,#7a4dff); color: #fff;
  border-radius: var(--r); padding: 16px 22px; margin: 24px 0 6px;
}
.premium-strip span { font-weight: 900; letter-spacing: .02em; }
.premium-strip p { margin: 0; font-size: 13.5px; color: rgba(255,255,255,.9); }
.price-card.is-premium { border-color: #7a4dff; box-shadow: 0 0 0 2px #7a4dff inset, var(--sh-2); }

/* ============ Premium foto + 2-kolumnowy cennik ============ */
.pricing-2 { max-width: 860px; margin: 0 auto; grid-template-columns: repeat(2,1fr); }
.obj-photo { margin: 0 0 22px; }
.obj-photo img { width: 100%; max-height: 460px; object-fit: cover; border-radius: var(--r); box-shadow: var(--sh-1); }
.obj-photo .credit { display:block; font-size: 11.5px; color: var(--muted); margin-top: 8px; }
.lodging-photo { margin: -24px -24px 16px; border-radius: var(--r) var(--r) 0 0; overflow: hidden; aspect-ratio: 16/10; background: var(--blue-soft); }
.lodging-photo img { width: 100%; height: 100%; object-fit: cover; }
.article-premium .article-hero--plain, .article-premium { }
@media (max-width: 680px) { .pricing-2 { grid-template-columns: 1fr; } }

/* ============ Galeria obiektu (Premium) ============ */
.obj-gallery { display: grid; gap: 12px; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); margin: 6px 0 10px; }
.obj-gallery figure { margin: 0; }
.obj-gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--r-sm); box-shadow: var(--sh-1); }
.obj-gallery .credit { display:block; font-size: 11px; color: var(--muted); margin-top: 5px; }

/* ============ Przełącznik języka PL / DE ============ */
.lang-switch { display: inline-flex; align-items: center; gap: 2px; margin-left: 10px; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.lang-switch a { padding: 7px 11px; font-size: 12.5px; font-weight: 800; color: var(--ink); border-radius: 0; }
.lang-switch a:hover { background: var(--blue-soft); color: var(--blue); text-decoration: none; }
.lang-switch a.active { background: var(--blue); color: #fff; }
.transparent:not(.is-scrolled) .lang-switch { border-color: rgba(255,255,255,.4); }
.transparent:not(.is-scrolled) .lang-switch a { color: #fff; }
.transparent:not(.is-scrolled) .lang-switch a.active { background: #fff; color: var(--blue); }
.bilingual-note { display:inline-block; margin-top:14px; font-size:13.5px; font-weight:700; color:#fff; background:rgba(255,255,255,.14); border:1px solid rgba(255,255,255,.26); padding:8px 16px; border-radius:999px; }
@media (max-width:760px){
  .lang-switch, .transparent:not(.is-scrolled) .lang-switch { margin:12px 0 0; align-self:flex-start; border-color: rgba(255,255,255,.4); }
  .lang-switch a, .transparent:not(.is-scrolled) .lang-switch a { color:#fff; }
  .lang-switch a:hover { background: rgba(255,255,255,.16); color:#fff; }
  .lang-switch a.active, .transparent:not(.is-scrolled) .lang-switch a.active { background:#fff; color:var(--blue); }
}

/* ============ Karuzela atrakcji (strzałki + przewijanie) ============ */
.attr-carousel { position: relative; }
.attr-track {
  display: flex; gap: 22px; grid-template-columns: none;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 4px 2px 10px; margin: 0 -2px;
  -ms-overflow-style: none; scrollbar-width: none;
  scroll-padding-left: 2px;
}
.attr-track::-webkit-scrollbar { display: none; }
.attr-track > .attraction-card {
  flex: 0 0 clamp(255px, 80vw, 320px); scroll-snap-align: start;
}
@media (min-width: 720px) {
  .attr-track > .attraction-card { flex-basis: clamp(280px, 31%, 345px); }
}
.carousel-arrow {
  position: absolute; top: 42%; transform: translateY(-50%);
  z-index: 4; width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--blue-line); background: var(--card); color: var(--blue);
  font-size: 26px; line-height: 1; cursor: pointer; padding: 0;
  display: none; align-items: center; justify-content: center;
  box-shadow: var(--sh-3);
  transition: transform .15s var(--ease), background .15s, color .15s, opacity .15s;
}
.carousel-arrow:hover { background: var(--blue); color: #fff; transform: translateY(-50%) scale(1.08); }
.carousel-prev { left: -16px; }
.carousel-next { right: -16px; }
.attr-carousel.is-scrollable .carousel-arrow { display: flex; }
.carousel-arrow[disabled] { opacity: .32; cursor: default; pointer-events: none; }
@media (max-width: 719px) { .carousel-arrow { display: none !important; } }
@media (min-width: 720px) and (max-width: 1180px) {
  .carousel-prev { left: 4px; } .carousel-next { right: 4px; }
}

/* ============ Dane firmy w stopce ============ */
.footer-company { font-style: normal; margin-top: 18px; font-size: 13px; line-height: 1.75; color: #9fb0bf; }
.footer-company strong { color: #fff; font-size: 13.5px; }
.footer-company a { color: #9fb0bf; }
.footer-company a:hover { color: #fff; }
.footer-wa { white-space: nowrap; color: #6c7a87; }

/* ============ Siatka atrakcji 3 w rzędzie (do 15 szt.) ============ */
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { .card-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .card-grid-3 { grid-template-columns: 1fr; } }

/* ============ Szersza treść na desktopie (mobile bez zmian) ============ */
@media (min-width: 1280px) {
  :root { --wrap: 1340px; }
  .wrap.narrow { max-width: 900px; }
  .section-head { max-width: 760px; }
}
@media (min-width: 1680px) {
  :root { --wrap: 1500px; }
  .wrap.narrow { max-width: 940px; }
}

/* ============ Stopka odchudzona (3 kolumny) ============ */
@media (min-width: 760px) {
  .footer-grid-lean { grid-template-columns: 1.8fr 1fr 1.5fr; }
}

/* ============ Strona /noclegi ============ */
.noclegi-nav {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px;
}
.noclegi-nav a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 15px; border-radius: 999px; font-size: 13.5px; font-weight: 700;
  color: #fff; background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22); backdrop-filter: blur(4px);
  transition: background .15s, transform .15s;
}
.noclegi-nav a:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); text-decoration: none; }
.noclegi-nav a span {
  font-size: 12px; font-weight: 800; color: var(--blue);
  background: #fff; border-radius: 999px; padding: 1px 8px; min-width: 22px; text-align: center;
}
.noclegi-region-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 24px; margin-bottom: 34px; flex-wrap: wrap;
}
.noclegi-region-head h2 { font-size: clamp(24px, 3.4vw, 34px); margin: 6px 0 8px; }
.noclegi-region-head h2 a { color: inherit; }
.noclegi-region-head h2 a:hover { color: var(--blue); text-decoration: none; }
.noclegi-region-head > div { max-width: 640px; }
.noclegi-region-head p { color: var(--muted); font-size: 15px; margin-bottom: 12px; }
.noclegi-count {
  flex: none; align-self: center;
  background: var(--blue-soft); color: var(--blue);
  font-weight: 800; font-size: 14px; padding: 9px 18px; border-radius: 999px;
}
.text-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 800; font-size: 14px; color: var(--blue); }
.text-link i { font-style: normal; transition: transform .2s var(--ease); }
.text-link:hover { text-decoration: none; }
.text-link:hover i { transform: translateX(4px); }
.lodging-desc { font-size: 14.5px; color: var(--body); line-height: 1.65; margin-bottom: 4px; flex: 1; }
.nocleg-okolica {
  margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--line);
}
.nocleg-okolica .ld-h {
  display: block; font-size: 11.5px; font-weight: 800; letter-spacing: .07em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 9px;
}
.okolica-region {
  display: inline-flex; align-items: center; gap: 6px; font-weight: 800;
  font-size: 13.5px; color: var(--accent-d); margin-bottom: 10px;
}
.okolica-region i { font-style: normal; transition: transform .2s var(--ease); }
.okolica-region:hover { text-decoration: none; }
.okolica-region:hover i { transform: translateX(4px); }
@media (max-width: 600px) {
  .noclegi-region-head { margin-bottom: 24px; }
  .noclegi-count { align-self: flex-start; }
}

/* === SEO 2026: FAQ (akordeon) + tagi wyszukiwania ================= */
.faq-section .section-head { margin-bottom: 26px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-sm); box-shadow: var(--sh-1); overflow: hidden;
}
.faq-item summary {
  cursor: pointer; list-style: none; padding: 17px 48px 17px 20px;
  font-weight: 700; font-size: 15.5px; color: var(--ink); position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 20px; top: 50%;
  transform: translateY(-50%); font-size: 22px; font-weight: 400;
  color: var(--accent-d); transition: transform .2s var(--ease);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { color: var(--accent-d); }
.faq-a {
  padding: 0 20px 18px; color: var(--body); font-size: 14.5px;
  line-height: 1.7;
}
.faq-a a { color: var(--accent-d); font-weight: 600; }

.hero-tags {
  display: flex; flex-wrap: wrap; align-items: center; gap: 9px;
  margin-top: 22px;
}
.hero-tags-lbl {
  font-size: 12.5px; font-weight: 800; letter-spacing: .05em;
  text-transform: uppercase; color: rgba(255,255,255,.7);
}
.hero-tags a {
  display: inline-flex; align-items: center; padding: 7px 15px;
  border-radius: 999px; font-size: 13.5px; font-weight: 700;
  color: #fff; background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.22); backdrop-filter: blur(4px);
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.hero-tags a:hover {
  background: var(--accent); border-color: var(--accent);
  text-decoration: none; transform: translateY(-2px);
}
.kat-link { margin-top: 12px; }
.kat-link a {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 800; font-size: 14px; color: var(--accent-d);
}
.kat-link a i { font-style: normal; transition: transform .2s var(--ease); }
.kat-link a:hover { text-decoration: none; }
.kat-link a:hover i { transform: translateX(4px); }

/* ===================================================================
   BAZA FIRM POZNAŃ — komponenty katalogu
   =================================================================== */

/* ---- Kafelki kategorii (strona główna) ---- */
.cat-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.cat-tile {
  position: relative; display: flex; flex-direction: column; gap: 4px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 24px; box-shadow: var(--sh-1); color: var(--body);
  transition: transform .22s var(--ease), box-shadow .22s, border-color .22s;
}
.cat-tile:hover { transform: translateY(-6px); box-shadow: var(--sh-3); border-color: var(--blue-line); text-decoration: none; }
.cat-ic {
  width: 54px; height: 54px; border-radius: 15px; font-size: 27px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-soft); margin-bottom: 12px;
}
.cat-tile h3 { font-size: 18px; margin: 0; }
.cat-tile p { font-size: 13.5px; color: var(--muted); margin: 2px 0 0; }
.cat-tile .cat-count { margin-top: 12px; font-size: 12.5px; font-weight: 800; color: var(--accent-d); letter-spacing: .02em; }
.cat-tile .cat-arrow { position: absolute; top: 22px; right: 22px; color: var(--blue-line); font-size: 18px; transition: transform .2s var(--ease), color .2s; }
.cat-tile:hover .cat-arrow { transform: translate(4px,-4px); color: var(--accent); }

/* ---- Pasek filtrów (chipsy kategorii) ---- */
.dir-toolbar {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
  justify-content: space-between; margin-bottom: 22px;
}
.dir-search {
  display: flex; align-items: center; gap: 8px; flex: 1; min-width: 240px;
  background: var(--card); border: 1.5px solid var(--blue-line); border-radius: 999px;
  padding: 4px 6px 4px 18px; box-shadow: var(--sh-1);
}
.dir-search input { flex: 1; border: 0; outline: 0; font-size: 15px; padding: 11px 4px; background: transparent; color: var(--ink); font-family: inherit; min-width: 0; }
.dir-search .ic { opacity: .45; flex-shrink: 0; }
.dir-count { font-size: 13.5px; font-weight: 700; color: var(--muted); white-space: nowrap; }
.dir-count b { color: var(--blue); }

.chip-row { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 30px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px; cursor: pointer;
  font-size: 13.5px; font-weight: 700; color: var(--body);
  background: var(--card); border: 1.5px solid var(--line); border-radius: 999px;
  padding: 8px 16px; transition: all .15s; font-family: inherit;
}
.chip:hover { border-color: var(--blue-line); color: var(--blue); background: var(--blue-soft); text-decoration: none; }
.chip.active { background: var(--blue); border-color: var(--blue); color: #fff; box-shadow: 0 6px 16px rgba(20,54,92,.28); }
.chip .n { font-size: 11.5px; font-weight: 800; opacity: .7; }
.chip.active .n { opacity: .9; }

/* ---- Karty firm ---- */
.firm-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); }
.firm-card {
  position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r); padding: 26px; display: flex; flex-direction: column;
  box-shadow: var(--sh-1); transition: transform .2s var(--ease), box-shadow .2s, border-color .2s;
}
.firm-card:hover { transform: translateY(-5px); box-shadow: var(--sh-2); border-color: var(--blue-line); }
.firm-card.premium { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent) inset, var(--sh-1); }
.firm-head { display: flex; align-items: flex-start; gap: 14px; }
.firm-logo {
  width: 50px; height: 50px; flex-shrink: 0; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 20px; color: #fff; background: var(--grad);
  letter-spacing: -.02em;
}
.firm-card.premium .firm-logo { background: var(--grad-warm); color: var(--blue-d); }
.firm-head-txt { flex: 1; min-width: 0; }
.firm-cat { font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--blue-l); }
.firm-card.premium .firm-cat { color: var(--accent-d); }
.firm-card h3 { font-size: 19px; margin: 3px 0 0; line-height: 1.2; }
.firm-loc { font-size: 13px; color: var(--muted); margin-top: 6px; display: flex; align-items: center; gap: 6px; }
.firm-desc { font-size: 14px; color: var(--body); line-height: 1.6; margin: 14px 0 0; flex: 1; }
.firm-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.firm-tags span { font-size: 11.5px; font-weight: 600; color: var(--blue); background: var(--blue-soft); border: 1px solid var(--blue-line); padding: 3px 11px; border-radius: 999px; }
.firm-contact {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px;
  padding-top: 16px; border-top: 1px solid var(--line);
}
.firm-contact a {
  display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700;
  padding: 8px 13px; border-radius: 999px; background: var(--bg); border: 1px solid var(--line);
  color: var(--blue); transition: all .15s;
}
.firm-contact a:hover { background: var(--blue); color: #fff; border-color: var(--blue); text-decoration: none; }
.firm-contact a.is-mail:hover { background: var(--accent); border-color: var(--accent); color: var(--blue-d); }
.firm-badge {
  position: absolute; top: -10px; right: 18px;
  font-size: 10.5px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  color: var(--blue-d); background: var(--grad-warm); padding: 5px 13px; border-radius: 999px;
  box-shadow: 0 4px 12px rgba(230,169,46,.45);
}
.dir-empty { text-align: center; color: var(--muted); padding: 50px 20px; font-size: 16px; }
.dir-empty b { color: var(--ink); }

/* ---- Sekcja "jak to działa" numerowana na granacie ---- */
.firm-loc svg { width: 13px; height: 13px; flex-shrink: 0; opacity: .6; }

/* ---- Box informacyjny (RODO / klauzula) ---- */
.note-rodo {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--blue-soft); border: 1px solid var(--blue-line);
  border-radius: var(--r); padding: 20px 22px; margin: 4px 0 30px; font-size: 14px; color: #3a4a5e;
}
.note-rodo .ic { font-size: 22px; line-height: 1; flex-shrink: 0; }
.note-rodo a { font-weight: 700; }

/* ---- Litery alfabetu / liczniki w hero ---- */
.dir-hero-meta b { color: var(--accent); }

@media (max-width: 760px) {
  .firm-grid { grid-template-columns: 1fr; }
  .dir-toolbar { flex-direction: column; align-items: stretch; }
}

/* ===================================================================
   PREMIUM REFRESH v2 — granat + złoto, dopieszczenie
   Szkło w headerze, miększe cienie, złota poświata, lepsze karty.
   (Dopisane na końcu — nadpisuje wcześniejsze reguły.)
   =================================================================== */
:root {
  /* miększe, „droższe" cienie */
  --sh-1: 0 1px 2px rgba(12,32,58,.04), 0 10px 26px rgba(12,32,58,.06);
  --sh-2: 0 8px 18px rgba(12,32,58,.08), 0 26px 56px rgba(12,32,58,.13);
  --sh-3: 0 16px 38px rgba(20,54,92,.16), 0 36px 80px rgba(12,32,58,.20);
  --gold-grad: linear-gradient(135deg, #f3c45b 0%, #e6a92e 52%, #c1851b 100%);
  --glow-gold: 0 10px 26px rgba(230,169,46,.38);
}

/* --- Header: prawdziwe szkło --- */
.site-header {
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(20,54,92,.08);
}
.site-header.is-scrolled { box-shadow: 0 6px 30px rgba(12,32,58,.10); }
.site-header.transparent.is-scrolled {
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-color: rgba(20,54,92,.08);
}
:root { --hdr: 76px; }

/* --- Logotyp: złoty „Poznań" z gradientem --- */
.logo-tld {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.transparent:not(.is-scrolled) .logo-tld { -webkit-text-fill-color: transparent; }

/* --- Przyciski CTA: złoty gradient + poświata + połysk --- */
.btn-cta {
  background: var(--gold-grad); color: #2a1c05;
  box-shadow: var(--glow-gold), inset 0 1px 0 rgba(255,255,255,.45);
}
.btn-cta:hover {
  background: var(--gold-grad); color: #2a1c05;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(230,169,46,.50), inset 0 1px 0 rgba(255,255,255,.5);
}
.site-nav a.btn-cta, .transparent:not(.is-scrolled) .site-nav a.btn-cta { color: #2a1c05; }

/* --- Eyebrow / kicker dopieszczenie --- */
.eyebrow { color: var(--accent-d); }
.hero-kicker {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.26);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
}
.hero-kicker::before { content: ""; }

/* --- Hero: złota hairline u góry + miększe wyszukiwanie --- */
.home-hero::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; z-index: 1;
  background: linear-gradient(90deg, transparent, var(--accent) 35%, #f3c45b 50%, var(--accent) 65%, transparent);
  opacity: .85;
}
.hero-search {
  background: rgba(255,255,255,.96);
  box-shadow: 0 20px 50px rgba(8,22,40,.45), inset 0 1px 0 rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.5);
}
.hero-meta b {
  background: linear-gradient(180deg, #fff, #ffe6ab);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* --- Karty: więcej zaokrąglenia, złoty akcent przy hover --- */
.cat-tile, .firm-card, .attraction-card, .step {
  border-radius: var(--r-lg);
  position: relative;
}
.cat-tile::after, .firm-card::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  background: var(--gold-grad);
  opacity: 0; transition: opacity .25s var(--ease);
}
.cat-tile:hover::after, .firm-card:hover::after { opacity: 1; }
.cat-tile:hover, .firm-card:hover, .attraction-card:hover {
  border-color: rgba(230,169,46,.45);
}
.cat-ic, .attraction-icon {
  background: linear-gradient(150deg, var(--blue-soft), #fff);
  box-shadow: inset 0 0 0 1px rgba(20,54,92,.06);
}

/* --- Feature cards (ciemna sekcja): subtelne szkło --- */
.feature {
  background: linear-gradient(165deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(3px);
}
.feature:hover { border-color: rgba(230,169,46,.45); }
.feature-icon {
  background: linear-gradient(150deg, rgba(230,169,46,.22), rgba(255,255,255,.05));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.10);
}

/* --- Marquee: złote kropki, czytelniej --- */
.marquee { background: var(--night); border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }
.marquee-row .dot { color: var(--accent); }

/* --- Naprawa zabłąkanych pomarańczy (po adaptacji z portalu) → złoto --- */
.region-feat .region-tag, .lodging-regions .region-tag {
  color: var(--accent-d); background: rgba(230,169,46,.10); border-color: rgba(230,169,46,.32);
}
.region-feat .region-tag:hover, .lodging-regions .region-tag:hover {
  background: var(--accent); color: #2a1c05; border-color: var(--accent);
}

/* --- Sekcja CTA dolna: złota ramka --- */
.cta { box-shadow: var(--sh-2), inset 0 0 0 1px rgba(230,169,46,.18); }

@media (max-width: 640px) {
  .logo { font-size: 21px; gap: 9px; }
  .logo-mark { width: 42px; height: 27px; }
}

/* ===================================================================
   RETRO PRINT — motyw "Pozdrowienia z Poznania"
   Vintage plakat: musztarda / rdza / butelkowa zieleń na papierze,
   grube ramki, twarde przesunięte cienie, ziarno, sunburst, pieczątki.
   Dopisane na końcu — remap zmiennych + nadpisania (wygrywają w kaskadzie).
   =================================================================== */
:root {
  /* paleta */
  --ink:       #2e2418;
  --body:      #574c39;
  --muted:     #8a7c61;
  --bg:        #f3e9d2;   /* papier */
  --card:      #fbf5e6;   /* krem */
  --line:      #d8c9a6;

  --blue:      #c1502e;   /* "rdza" — linki, akcenty interakcji */
  --blue-d:    #2f5d50;   /* butelkowa zieleń — sekcje dark, mobilne menu */
  --blue-l:    #c1502e;
  --blue-soft: #efe3c8;   /* tło pigułek/ikon */
  --blue-line: #d8c9a6;
  --cyan:      #d99a25;

  --accent:    #d99a25;   /* musztarda — przyciski, wyróżnienia */
  --accent-d:  #b4471f;   /* ciemna rdza — hover, etykiety */

  --night:     #2f5d50;   /* zieleń: marquee, CTA, stopka, ciemna sekcja */
  --night-2:   #294f44;

  --grad:      linear-gradient(135deg, #e6b450, #d99a25 52%, #c1502e);
  --grad-warm: linear-gradient(120deg, #e6b450, #d99a25);
  --gold-grad: linear-gradient(135deg, #e6b450, #d99a25 55%, #c1502e);
  --glow-gold: 4px 4px 0 var(--ink);

  /* twarde, "drukarskie" cienie */
  --sh-1: 3px 3px 0 rgba(46,36,24,.12);
  --sh-2: 5px 5px 0 rgba(46,36,24,.16);
  --sh-3: 6px 6px 0 rgba(46,36,24,.20);
}

/* ziarno papieru na całej stronie */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 9990; pointer-events: none;
  opacity: .05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
::selection { background: var(--accent); color: var(--ink); }

/* --- Header: papier zamiast szkła; ciemny tekst na przezroczystym --- */
.site-header {
  background: rgba(243,233,210,.86);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 2px solid var(--ink);
}
.site-header.transparent { border-color: transparent; }
.site-header.transparent.is-scrolled {
  background: rgba(243,233,210,.92); border-color: var(--ink);
}
.site-header.transparent:not(.is-scrolled) .logo,
.site-header.transparent:not(.is-scrolled) .site-nav a { color: var(--ink); }
.site-header.transparent:not(.is-scrolled) .nav-toggle span { background: var(--ink); }
.site-header.transparent:not(.is-scrolled) .site-nav a:hover { background: var(--blue-soft); color: var(--accent-d); }
.site-nav a:hover { background: var(--blue-soft); color: var(--accent-d); }

/* --- Logotyp: "Poznań" w kolorze rdzy (bez gradientu) --- */
.logo-tld {
  background: none; -webkit-background-clip: border-box; background-clip: border-box;
  color: var(--accent-d); -webkit-text-fill-color: var(--accent-d);
}
.transparent:not(.is-scrolled) .logo-tld { -webkit-text-fill-color: var(--accent-d); }

/* --- Przyciski CTA: musztarda + gruba ramka + twardy cień --- */
.btn-cta {
  background: var(--accent); color: var(--ink);
  border: 2px solid var(--ink); box-shadow: var(--glow-gold);
}
.btn-cta:hover {
  background: var(--accent-d); color: var(--card);
  transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--ink);
}
.btn-cta:active { transform: translate(3px,3px); box-shadow: 1px 1px 0 var(--ink); }
.site-nav a.btn-cta, .transparent:not(.is-scrolled) .site-nav a.btn-cta { color: var(--ink); }
.site-nav a.btn-cta:hover { color: var(--card); }

/* --- Eyebrow: pigułka w ramce rdzy --- */
.eyebrow {
  color: var(--accent-d); border: 2px solid var(--accent-d);
  padding: 5px 13px; border-radius: 999px; letter-spacing: .14em;
}
.eyebrow-light { color: var(--accent); border-color: var(--accent); }
.lodging-cat, .firm-cat, .price-tag-top, .season-tag { color: var(--accent-d); }

/* --- HOME HERO: jasny papier + sunburst (zamiast ciemnego zdjęcia) --- */
.home-hero {
  background: var(--bg); color: var(--ink); border-bottom: 2px solid var(--ink);
  min-height: auto; padding: calc(var(--hdr) + 60px) 0 76px;
}
.home-hero-bg, .home-hero-scrim { display: none !important; }
.home-hero::before { display: none; }
.hero-blob {
  background: repeating-conic-gradient(var(--accent) 0 7deg, transparent 7deg 14deg);
  filter: none; opacity: .15; animation: none;
  width: 620px; height: 620px; right: -160px; top: 50%; transform: translateY(-50%);
}
.home-hero h1 { color: var(--ink); text-shadow: none; }
.home-hero h1 em {
  background: none; -webkit-background-clip: border-box; background-clip: border-box;
  color: var(--accent-d); -webkit-text-fill-color: var(--accent-d); font-style: italic;
}
.home-hero .lead { color: var(--body); }
.home-hero .lead strong { color: var(--ink); }
.hero-kicker {
  background: transparent; border: 2px solid var(--accent-d); color: var(--accent-d);
  box-shadow: none; backdrop-filter: none;
}
.hero-search {
  background: var(--card); border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 rgba(46,36,24,.15);
}
.hero-search input { color: var(--ink); }
.hero-meta { color: var(--body); }
.hero-meta b {
  background: none; -webkit-background-clip: border-box; background-clip: border-box;
  color: var(--accent-d); -webkit-text-fill-color: var(--accent-d);
}
.hero-tags-lbl { color: var(--muted); }
.hero-tags a {
  background: var(--card); border: 2px solid var(--ink); color: var(--ink);
  backdrop-filter: none;
}
.hero-tags a:hover { background: var(--accent); border-color: var(--ink); color: var(--ink); }
.hero-scroll { border-color: var(--ink); opacity: .5; }
.hero-scroll span { background: var(--ink); }

/* --- Article hero (firmy, o nas): zielona banda + sunburst --- */
.article-hero--plain { background: var(--night); position: relative; overflow: hidden; }
.article-hero--plain::before {
  content: ""; position: absolute; right: -150px; top: 50%; transform: translateY(-50%);
  width: 460px; height: 460px; border-radius: 50%;
  background: repeating-conic-gradient(var(--accent) 0 7deg, transparent 7deg 14deg);
  opacity: .12; pointer-events: none;
}
.article-hero--plain .wrap { position: relative; z-index: 1; }
.noclegi-nav a span, .dir-search .ic { color: var(--accent-d); }

/* --- Karty: krem + ramka tuszu + twardy cień (drukarski) --- */
.cat-tile, .firm-card, .attraction-card, .step, .lodging-card, .price-card,
.faq-item, .form-card, .why-card, .info-box, .note-rodo, .source-note, .nearby, .kv {
  border: 2px solid var(--ink);
}
.cat-tile:hover, .firm-card:hover, .attraction-card:hover, .step:hover, .lodging-card:hover {
  border-color: var(--ink); transform: translate(3px,3px); box-shadow: 2px 2px 0 rgba(46,36,24,.16);
}
.cat-tile::after, .firm-card::after { background: var(--accent); height: 4px; }
.cat-ic, .attraction-icon, .feature-icon, .firm-logo, .step-num, .big-check {
  border: 2px solid var(--ink); border-radius: 50%;
  background: var(--grad); box-shadow: none; color: #fff;
}
.cat-ic, .attraction-icon { background: var(--accent); }

/* --- Ciemna sekcja "dlaczego my": zieleń + kremowe karty --- */
.section-dark { background: var(--night); color: #e8ecdf; }
.section-dark h2 { color: #fff; }
.feature {
  background: var(--card); border: 2px solid var(--ink); backdrop-filter: none;
  box-shadow: 4px 4px 0 rgba(0,0,0,.22); border-radius: var(--r);
}
.feature:hover { border-color: var(--ink); transform: translate(2px,2px); box-shadow: 2px 2px 0 rgba(0,0,0,.22); }
.feature h3 { color: var(--ink); }
.feature p { color: var(--body); }

/* --- Marquee / CTA / stopka: zieleń, musztardowe kropki --- */
.marquee { background: var(--night); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.marquee-row .dot { color: var(--accent); }
.cta { box-shadow: var(--sh-2); border: 2px solid var(--ink); }
.cta::before { background: repeating-conic-gradient(var(--accent) 0 7deg, transparent 7deg 14deg); opacity: .14; filter: none; }
.site-footer { background: var(--night); color: #c8d2c5; border-top: 2px solid var(--ink); }

/* --- Chipsy / tagi / kontakt firmy --- */
.chip { border: 2px solid var(--ink); background: var(--card); }
.chip:hover { background: var(--blue-soft); color: var(--accent-d); border-color: var(--ink); }
.chip.active { background: var(--accent); border-color: var(--ink); color: var(--ink); box-shadow: 3px 3px 0 var(--ink); }
.firm-contact a { border: 2px solid var(--ink); background: var(--card); color: var(--accent-d); }
.firm-contact a:hover { background: var(--accent); border-color: var(--ink); color: var(--ink); }
.firm-tags span { border: 1.5px solid var(--accent-d); color: var(--accent-d); background: rgba(217,154,37,.12); }
.firm-badge, .lodging-paid { background: var(--accent); color: var(--ink); box-shadow: 3px 3px 0 rgba(46,36,24,.2); }

/* --- FAQ / formularze --- */
.faq-item summary::after, .faq-item summary:hover, .faq-a a, .faq-item summary:hover::after { color: var(--accent-d); }
.price-card li::before { color: var(--accent-d); }
.form-row input, .form-row select, .form-row textarea { border: 2px solid var(--line); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  border-color: var(--accent-d); box-shadow: 0 0 0 4px rgba(217,154,37,.22);
}
.price-card.is-featured { border-color: var(--accent-d); box-shadow: 0 0 0 2px var(--accent-d) inset, var(--sh-2); }

/* --- Akcenty "Premium": fiolet → rdza/musztarda --- */
.price-card.is-premium { border: 2px solid var(--accent-d); box-shadow: 0 0 0 2px var(--accent-d) inset, var(--sh-2); }
.premium-strip { background: var(--grad); color: var(--ink); border: 2px solid var(--ink); }
.premium-strip p { color: rgba(46,36,24,.8); }
.lodging-paid.premium { background: var(--accent-d); color: var(--card); }
.upsell { border: 2px solid var(--ink); }

/* --- Pigułkowa "pieczątka" na liczniku/sekcjach mobilnie --- */
@media (max-width: 760px) {
  .hero-blob { width: 420px; height: 420px; right: -160px; }
}
