:root {
  --accent: #d52b1e;
  --accent-hover: #b3241a;
  --accent-ink: #ffffff;
  --bg: #f7f4ee;
  --surface: #ffffff;
  --surface-2: #fbf8f2;
  --ink: #111418;
  --ink-2: #2a2f36;
  --muted: #6b7280;
  --line: #e5e0d6;
  --line-strong: #cfc8b9;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;
  --shadow-sm:
    0 1px 2px rgba(17, 20, 24, 0.06), 0 1px 1px rgba(17, 20, 24, 0.04);
  --shadow-md:
    0 4px 12px rgba(17, 20, 24, 0.08), 0 2px 4px rgba(17, 20, 24, 0.04);
  --shadow-lg:
    0 20px 40px -12px rgba(17, 20, 24, 0.18),
    0 8px 16px -8px rgba(17, 20, 24, 0.08);
  --f-sans:
    "Inter", system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  --f-display: "Inter Tight", "Inter", system-ui, sans-serif;
  --f-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.has-mobile-menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(40px, 5.4vw, 72px);
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -0.028em;
}

h3 {
  font-size: 20px;
  letter-spacing: -0.018em;
}

p {
  margin: 0;
  text-wrap: pretty;
}

.wrap {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 100px;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--ink);
  color: #eee8db;
  font-size: 13.5px;
  border-bottom: 1px solid #000;
}

.topbar .wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 40px;
  flex-wrap: wrap;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0;
}

.topbar .tb-left {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #a9a196;
}

.topbar .tb-links {
  display: flex;
  gap: 22px;
  margin-left: auto;
  flex-wrap: wrap;
  align-items: center;
}

.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #eee8db;
  font-weight: 500;
  transition: color 0.15s ease;
}

.topbar .tb-hours {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #a9a196;
  font-size: 12px;
  padding-right: 6px;
  border-right: 1px solid rgba(255,255,255,.12);
}

.topbar a:hover {
  color: #fff;
}

/* ── NAV ── */
.nav-shell {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 238, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.admin-bar .nav-shell {
  top: 32px;
}

.nav-shell.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  min-height: 76px;
  gap: 16px;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.02em;
  position: relative;
  overflow: hidden;
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: auto 4px 4px auto;
  width: 10px;
  height: 10px;
  background:
    linear-gradient(var(--accent), var(--accent)) center / 100% 3px no-repeat,
    linear-gradient(var(--accent), var(--accent)) center / 3px 100% no-repeat;
}

.logo-sub {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

.logo-stack {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2px;
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
}

.menu > li {
  position: relative;
}

/* shared token for all top-level menu items */
.menu > li > a,
.menu > li > .dropdown-trigger {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  white-space: nowrap;
  border-radius: 8px;
  transition:
    background 0.15s,
    color 0.15s;
  text-decoration: none;
}

/* plain link items */
.menu > li > a {
  gap: 5px;
  padding: 8px 10px;
}

.menu > li > a:hover,
.menu > li.is-active > a {
  background: rgba(17, 20, 24, 0.05);
  color: var(--ink);
}

/* dropdown-trigger wrapper */
.menu > li > .dropdown-trigger {
  gap: 0;
  padding: 0;
  cursor: default;
}

.menu > li > .dropdown-trigger > a {
  padding: 8px 4px 8px 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.15s;
}

.menu > li > .dropdown-trigger > .dropdown-chev {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px 8px 4px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink-2);
  line-height: 0;
}

.menu > li > .dropdown-trigger:hover,
.menu > li.is-active > .dropdown-trigger {
  background: rgba(17, 20, 24, 0.05);
}

.menu > li > .dropdown-trigger:hover > a,
.menu > li > .dropdown-trigger:hover > .dropdown-chev,
.menu > li.is-active > .dropdown-trigger > a {
  color: var(--ink);
}

.menu > li > a.active {
  color: var(--ink);
}

.menu > li > a.active::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--accent);
  margin-top: 6px;
  border-radius: 2px;
}

.chev {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.menu > li.is-open .chev {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: -8px;
  padding-top: 8px;
  min-width: 340px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.menu > li.is-open > .dropdown,
.menu > li:hover > .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
}

.dropdown a:hover {
  background: var(--surface-2);
  color: var(--ink);
}

.dropdown-ico {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}

.dropdown-label small {
  display: block;
  font-weight: 400;
  color: var(--muted);
  font-size: 12.5px;
  margin-top: 2px;
}

.nav-cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  padding: 8px 10px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.phone-inline:hover {
  background: rgba(17, 20, 24, 0.05);
}

.phone-inline svg {
  color: var(--accent);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease,
    transform 0.05s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  background: rgba(17, 20, 24, 0.04);
  border-color: var(--ink-2);
}

.btn-lg {
  padding: 15px 22px;
  font-size: 16px;
  border-radius: 12px;
}

/* ── MOBILE NAV ── */
.burger {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  cursor: pointer;
}

.burger svg {
  color: var(--ink);
}

.mobile-panel {
  display: none;
  position: fixed;
  inset: 0 0 0 auto;
  width: min(380px, 88vw);
  background: #fff;
  z-index: 60;
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  padding: 20px;
  overflow-y: auto;
}

.mobile-panel.is-open {
  transform: translateX(0);
}

.mobile-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(17, 20, 24, 0.45);
  z-index: 55;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.mobile-backdrop.is-open {
  opacity: 1;
}

.mobile-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.mobile-close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu li {
  border-bottom: 1px solid var(--line);
}

.mobile-menu > li > a,
.mobile-menu > li > button {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px;
  font-size: 16px;
  font-weight: 600;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
}

.mobile-sub {
  list-style: none;
  padding: 0 0 12px 4px;
  margin: 0;
  display: none;
}

.mobile-sub.is-open {
  display: block;
}

.mobile-sub li {
  border: 0;
}

.mobile-sub a {
  display: block;
  padding: 8px 0;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-2);
}

.mobile-cta {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

/* ── HERO (strona główna) ── */
.hero {
  padding: 0;
  overflow: hidden;
  position: relative;
  background: url("hero-bg.webp") center / cover no-repeat var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(17, 20, 24, 0.9) 0%,
    rgba(17, 20, 24, 0.72) 50%,
    rgba(17, 20, 24, 0.35) 100%
  );
  z-index: 0;
}

.hero .wrap {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 56px;
  align-items: center;
  min-height: 680px;
  padding: 160px 0 140px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero h1,
.hero .hero-sub {
  color: #fff;
}

.hero h1 {
  margin-top: 22px;
  margin-bottom: 20px;
}

.hero .accent {
  color: var(--accent);
}

.hero-sub {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 56ch;
  margin-bottom: 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px 6px 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}

.eyebrow-dot {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--accent);
  display: grid;
  place-items: center;
  color: #fff;
}

.eyebrow-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #fff;
  mask:
    linear-gradient(#000, #000) center / 8px 2px no-repeat,
    linear-gradient(#000, #000) center / 2px 8px no-repeat;
  -webkit-mask:
    linear-gradient(#000, #000) center / 8px 2px no-repeat,
    linear-gradient(#000, #000) center / 2px 8px no-repeat;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-cta .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.hero-cta .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.hero-meta {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 520px;
}

.hero-meta div {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 12px;
}

.hero-meta strong {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: block;
  color: #fff;
}

.hero-meta span {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
}

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* ── HERO CARD (portrait photo, right column) ── */
.hero-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 360px;
  aspect-ratio: 3 / 4;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-card-badge {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px 8px 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  white-space: nowrap;
}

.hero-card-badge .flag {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.hero-card-badge .flag.pl {
  background: linear-gradient(180deg, #fff 50%, #dc143c 50%);
  color: var(--ink);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.hero-card-badge .flag.ch {
  background: var(--accent);
  position: relative;
}

.hero-card-badge .flag.ch::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background:
    linear-gradient(#fff, #fff) center / 100% 2.5px no-repeat,
    linear-gradient(#fff, #fff) center / 2.5px 100% no-repeat;
}

.hero-card-badge .arrow {
  width: 14px;
  height: 2px;
  background: var(--ink-2);
  position: relative;
}

.hero-card-badge .arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -3px;
  width: 0;
  height: 0;
  border-left: 5px solid var(--ink-2);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

/* ── TRUST STRIP ── */
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
  padding: 18px 0;
}

.trust-strip .wrap {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* ── CONTENT BLOCKS ── */
section.block {
  padding: 88px 0;
}

section.block + section.block {
  border-top: 1px solid var(--line);
}

section.block .wrap {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 44px;
}

.section-head .kicker {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-head .kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.section-head .lead {
  color: var(--muted);
  font-size: 17px;
  max-width: 48ch;
  margin-top: 18px;
}

.kicker-inline {
  color: var(--accent);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.kicker-inline span {
  width: 28px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.intro-grid p {
  color: var(--ink-2);
  font-size: 21px;
  line-height: 1.75;
}

.intro-grid p + p {
  margin-top: 16px;
}

.intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.intro-stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.intro-stat strong {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}

.intro-stat span {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── OFFER CARDS ── */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.offer-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.offer-card:hover {
  border-color: var(--ink-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.offer-card .ico {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.offer-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.offer-card p {
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 20px;
}

.offer-card .more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.offer-card .more svg {
  transition: transform 0.2s ease;
}

.offer-card:hover .more svg {
  transform: translateX(3px);
}

.offer-card .num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
}

/* ── FEATURES GRID ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.feature {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
}

.feature:last-child {
  border-right: 0;
}

.feature .ico {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 19px;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}

.feature p {
  color: var(--muted);
  font-size: 14.5px;
}

/* ── CTA BLOCK ── */
.cta-block {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 60px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    closest-side,
    rgba(213, 43, 30, 0.25),
    transparent 70%
  );
  pointer-events: none;
}

.cta-block h2 {
  color: #fff;
  margin-bottom: 18px;
}

.cta-block p {
  color: #bdb6a8;
  font-size: 17px;
  max-width: 48ch;
}

.cta-contacts {
  display: grid;
  gap: 14px;
  position: relative;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-md);
  transition:
    background 0.15s ease,
    border-color 0.15s ease;
  color: #fff;
}

.contact-row:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.contact-row .ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-row .label {
  display: block;
  font-size: 12px;
  color: #9c9484;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.contact-row .value {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

/* ── FOOTER ── */
footer.site-foot {
  background: var(--ink);
  color: #bdb6a8;
  padding: 64px 0 24px;
}

footer.site-foot .wrap {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0;
}

footer.site-foot h4 {
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a8272;
  margin: 0 0 18px;
}

footer.site-foot ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

footer.site-foot a {
  color: #eee8db;
  font-size: 14.5px;
  transition: color 0.15s ease;
}

footer.site-foot a:hover {
  color: #fff;
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.foot-brand .logo {
  color: #fff;
}

.foot-brand .logo-sub {
  color: #8a8272;
}

.foot-brand p {
  margin-top: 16px;
  font-size: 14px;
  max-width: 40ch;
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
  color: #8a8272;
  flex-wrap: wrap;
  gap: 12px;
}

.foot-bottom .legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* ── PAGE HERO (podstrony) ── */
.page-hero {
  background: var(--ink);
  color: #fff;
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: -60% auto auto -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    closest-side,
    rgba(213, 43, 30, 0.18),
    transparent 70%
  );
  pointer-events: none;
}

.page-hero .wrap {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0;
  position: relative;
}

.page-hero .eyebrow {
  margin-bottom: 20px;
}

.page-title {
  font-family: var(--f-display);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.05;
  text-wrap: balance;
}

/* ── PROSE (treść podstron) ── */
.page-content .wrap {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0;
}

.prose {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-2);
}

.prose h1,
.prose h2,
.prose h3,
.prose h4 {
  color: var(--ink);
  margin-top: 2.2rem;
  margin-bottom: 0.8rem;
  line-height: 1.15;
}

.prose h1:first-child,
.prose h2:first-child {
  margin-top: 0;
}

.prose h1 {
  font-size: clamp(26px, 3vw, 38px);
}
.prose h2 {
  font-size: clamp(22px, 2.4vw, 30px);
}
.prose h3 {
  font-size: 20px;
}

.prose p {
  margin-bottom: 1.1rem;
  text-wrap: pretty;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose ul,
.prose ol {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}

.prose li {
  margin-bottom: 0.4rem;
}

.prose strong,
.prose b {
  font-weight: 600;
  color: var(--ink);
}

.prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose a:hover {
  color: var(--accent-hover);
}

.prose img {
  border-radius: var(--r-lg);
  max-width: min(100%, 480px);
  height: auto;
  display: block;
  margin: 1.8rem auto;
  box-shadow: var(--shadow-md);
}

/* WordPress image alignment classes */
.prose .alignleft,
.prose img.alignleft {
  float: left;
  margin: 0.4rem 1.8rem 1.2rem 0;
  max-width: min(45%, 320px);
}

.prose .alignright,
.prose img.alignright {
  float: right;
  margin: 0.4rem 0 1.2rem 1.8rem;
  max-width: min(45%, 320px);
}

.prose .aligncenter,
.prose img.aligncenter {
  float: none;
  margin-left: auto;
  margin-right: auto;
}

.prose .alignnone,
.prose img.alignnone {
  float: none;
}

/* clearfix after floated images */
.prose p:has(img.alignleft),
.prose p:has(img.alignright) {
  overflow: hidden;
}

.prose::after {
  content: "";
  display: table;
  clear: both;
}

/* WP caption wrapper */
.prose .wp-caption {
  max-width: min(100%, 480px);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin: 1.8rem auto;
}

.prose .wp-caption img {
  max-width: 100%;
  margin: 0;
  box-shadow: none;
  border-radius: 0;
}

.prose .wp-caption.alignleft {
  float: left;
  margin: 0.4rem 1.8rem 1.2rem 0;
  max-width: min(45%, 320px);
}

.prose .wp-caption.alignright {
  float: right;
  margin: 0.4rem 0 1.2rem 1.8rem;
  max-width: min(45%, 320px);
}

.prose .wp-caption-text {
  font-size: 13px;
  color: var(--muted);
  padding: 8px 12px;
  text-align: center;
  background: var(--surface-2);
  border-top: 1px solid var(--line);
}

.prose article {
  all: unset;
  display: block;
}

/* ── DOOR TO DOOR ── */
.d2d-block {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 40px 48px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 48px;
}

.d2d-badge {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.d2d-body h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 16px;
  margin-top: 0;
}

.d2d-body p {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.d2d-body p:last-child {
  margin-bottom: 0;
}

.d2d-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 4px;
}

.d2d-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5;
}

.d2d-num {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── CITIES SLIDER ── */
.cslider {
  position: relative;
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cslider-viewport {
  overflow: hidden;
  border-radius: var(--r-lg);
  flex: 1;
}

.cslider-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.cslider-card {
  flex-shrink: 0;
  width: calc(25% - 12px);
  aspect-ratio: 3 / 4;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  background-image: var(--city-bg);
  background-size: cover;
  background-position: center;
  background-color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.cslider-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17, 20, 24, 0.88) 0%,
    rgba(17, 20, 24, 0.3) 50%,
    transparent 100%
  );
  z-index: 1;
}

.cslider-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.cslider-name {
  position: relative;
  z-index: 2;
  padding: 0 20px 8px;
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cslider-cta {
  position: relative;
  z-index: 2;
  padding: 0 20px 20px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s ease;
}

.cslider-card:hover .cslider-cta {
  color: #fff;
}

.cslider-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease;
  box-shadow: var(--shadow-sm);
}

.cslider-btn:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.cslider-btn:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.cslider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
}

.cslider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.cslider-dot.is-active {
  background: var(--accent);
  transform: scale(1.3);
}

/* ── SUBHERO (o nas i inne podstrony z foto-tłem) ── */
.subhero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.subhero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.subhero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(17, 20, 24, 0.9) 0%,
    rgba(17, 20, 24, 0.65) 45%,
    rgba(17, 20, 24, 0.25) 80%,
    rgba(17, 20, 24, 0.1) 100%
  );
}

.subhero .wrap {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 100px 0 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.subhero-copy {
  padding-left: min(6vw, 80px);
}

.subhero .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  display: inline-flex;
  margin-top: 18px;
}

.subhero h1 {
  font-size: clamp(40px, 5.6vw, 72px);
  letter-spacing: -0.035em;
  margin: 22px 0 20px;
  color: #fff;
  max-width: 16ch;
}

.subhero h1 .accent {
  color: var(--accent);
}

.subhero-sub {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 56ch;
}

.crumbs {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  gap: 10px;
}

.crumbs a {
  color: inherit;
  transition: color 0.15s ease;
}
.crumbs a:hover {
  color: #fff;
}
.crumbs .sep {
  opacity: 0.5;
}

/* ── KICKER ACCENT (czerwona linia + tekst) ── */
.kicker-accent {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.kicker-accent span {
  width: 28px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

/* ── ABOUT INTRO ── */
.about-intro--solo {
  max-width: 960px;
}

.about-intro--solo h2 {
  font-size: clamp(36px, 5vw, 56px);
  max-width: 20ch;
  margin-bottom: 24px;
}

.about-intro--solo .lead {
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-top: 0;
  max-width: 68ch;
}

/* ── ABOUT SECTIONS ── */
.about-sections {
  display: grid;
  gap: 72px;
  max-width: 960px;
  margin: 0 auto;
}

.about-section .tag-num {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-section .tag-num::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.about-section h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 20px;
  max-width: 22ch;
}

.about-section p {
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-2);
}

/* ── VALUES GRID ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
}

.value-card .ico {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.value-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ── INFO STRIP ── */
.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-cell {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.info-cell .label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.info-cell strong {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  display: block;
  margin-bottom: 6px;
}

.info-cell span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

/* ── MAP BLOCK ── */
.map-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.map-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.map-label h2 {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}

.map-label p {
  color: var(--ink-2);
  font-size: 16px;
  margin: 0;
}

.map-frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: 1fr 320px;
    gap: 40px;
  }

  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 580px;
    padding: 110px 0 80px;
    gap: 0;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-visual {
    display: none;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .feature:nth-child(2),
  .feature:nth-child(4) {
    border-right: 0;
  }

  .feature:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .cta-block {
    grid-template-columns: 1fr;
    padding: 40px;
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .menu,
  .nav-cta .phone-inline {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

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

  section.block {
    padding: 64px 0;
  }

  .page-hero {
    padding: 56px 0 48px;
  }

  .d2d-block {
    grid-template-columns: 1fr;
    padding: 32px;
    gap: 24px;
  }

  .cslider-card {
    width: calc(50% - 8px);
  }

  .subhero {
    min-height: 440px;
  }

  .subhero .wrap {
    padding: 70px 0 60px;
    grid-template-columns: 1fr;
  }

  .subhero-copy {
    padding-left: 0;
  }

  .subhero::after {
    background: linear-gradient(
      180deg,
      rgba(17, 20, 24, 0.55) 0%,
      rgba(17, 20, 24, 0.8) 100%
    );
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .info-strip {
    grid-template-columns: 1fr;
  }

  .info-cell {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .info-cell:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 782px) {
  .admin-bar .nav-shell {
    top: 46px;
  }
}

@media (max-width: 680px) {
  .wrap {
    padding: 0 20px;
  }

  .hero-grid {
    min-height: 600px;
    padding: 100px 0 72px;
  }

  .hero-sub {
    font-size: 17px;
  }

  .cslider-card {
    width: calc(100% - 0px);
  }

  .features-grid,
  .offer-grid,
  .foot-grid {
    grid-template-columns: 1fr;
  }

  .feature {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature:last-child {
    border-bottom: 0;
  }

  .hero-meta {
    grid-template-columns: 1fr 1fr;
  }

  .cta-block {
    padding: 28px;
  }

  .topbar .tb-links {
    gap: 14px;
    font-size: 13px;
  }

  .topbar .tb-links a span {
    display: none;
  }

  .page-hero {
    padding: 48px 0 40px;
  }
}

/* ─────────────────────────────────────────────
   BUS PHOTO SLIDER
───────────────────────────────────────────── */

.bus-slide {
  flex: 0 0 calc((100% - 32px) / 3);
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.bus-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.bus-slide:hover img {
  transform: scale(1.04);
}

@media (max-width: 960px) {
  .bus-slide {
    flex: 0 0 calc((100% - 16px) / 2);
  }
}

@media (max-width: 600px) {
  .bus-slide {
    flex: 0 0 100%;
  }
}

/* ─────────────────────────────────────────────
   IMAGE SLIDER
───────────────────────────────────────────── */

.imgslider {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
}

.imgslider-viewport {
  overflow: hidden;
  border-radius: var(--r-xl);
}

.imgslider-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.imgslider-slide {
  flex: 0 0 100%;
  position: relative;
}

.imgslider-slide img {
  display: block;
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--r-xl);
}

.imgslider-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 28px 22px;
  background: linear-gradient(
    to top,
    rgba(17, 20, 24, 0.75) 0%,
    transparent 100%
  );
  border-radius: 0 0 var(--r-xl) var(--r-xl);
}

.imgslider-caption a {
  color: #fff;
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
}

.imgslider-caption a:hover {
  text-decoration: underline;
}

.imgslider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition:
    background 0.15s,
    opacity 0.15s;
  z-index: 2;
}

.imgslider-btn:hover:not(:disabled) {
  background: #fff;
}

.imgslider-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.imgslider-btn--prev {
  left: 14px;
}
.imgslider-btn--next {
  right: 14px;
}

.imgslider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}

.imgslider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--line-strong);
  cursor: pointer;
  padding: 0;
  transition:
    background 0.2s,
    transform 0.2s;
}

.imgslider-dot.is-active {
  background: var(--accent);
  transform: scale(1.25);
}

@media (max-width: 680px) {
  .imgslider-slide img {
    height: 260px;
  }
}

/* ─────────────────────────────────────────────
   TRASY PAGE
───────────────────────────────────────────── */

/* Intro grid: text left, info card right */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
}

/* Route path visualization */
.route-path {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
}

.route-node {
  display: flex;
  align-items: center;
  gap: 14px;
}

.route-flag {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  color: #fff !important;
}

.route-flag.pl {
  background: #c0392b;
}
.route-flag.de {
  background: #2c3e50;
}
.route-flag.ch {
  background: #c0392b;
  position: relative;
  font-size: 0;
}
.route-flag.ch::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 4px;
  background: #fff;
  border-radius: 2px;
}
.route-flag.ch::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 14px;
  background: #fff;
  border-radius: 2px;
}

.route-node-text {
  display: flex;
  flex-direction: column;
}

.route-node-text strong {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.route-node-text em {
  font-style: normal;
  font-size: 13px;
  color: var(--muted);
}

.route-line {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin: 6px 0 6px 19px;
}

.route-line-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
}

.route-line-bar span {
  display: block;
  width: 2px;
  height: 14px;
  background: var(--line-strong);
  border-radius: 1px;
}

.route-line small {
  font-size: 12px;
  color: var(--muted);
  background: var(--surface);
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid var(--line);
  white-space: nowrap;
}

/* Info card */
.route-info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.route-info-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.route-info-list {
  list-style: none;
  margin: 0 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.route-info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-2);
}

.route-info-list li svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* Regions grid */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.region-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

.region-img {
  position: relative;
  height: 160px;
  background-size: cover;
  background-position: center;
}

.region-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17, 20, 24, 0.7) 0%,
    rgba(17, 20, 24, 0.15) 60%,
    transparent 100%
  );
}

.region-name {
  position: absolute;
  bottom: 12px;
  left: 14px;
  right: 14px;
  margin: 0;
  color: #fff;
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
}

.region-cities {
  list-style: none;
  margin: 0;
  padding: 14px 16px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.region-cities li {
  font-size: 13px;
  color: var(--ink-2);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 3px 10px;
}

.region-more {
  font-style: italic;
  color: var(--muted) !important;
  background: transparent !important;
  border-color: transparent !important;
  padding-left: 2px !important;
}

/* Swiss cities grid */
.ch-cities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.ch-city {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--ink-2);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 6px 14px;
  white-space: nowrap;
}

.ch-city svg {
  color: var(--accent);
  flex-shrink: 0;
}

.ch-city--more {
  border-style: dashed;
  color: var(--muted);
}

.ch-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 14px 18px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: 14px;
  color: var(--muted);
}

.ch-note svg {
  flex-shrink: 0;
  color: var(--accent);
}

/* Responsive – trasy */
@media (max-width: 1100px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .regions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .regions-grid {
    grid-template-columns: 1fr;
  }

  .ch-cities-grid {
    gap: 8px;
  }
}

/* ─────────────────────────────────────────────
   PRZEWOZY POLSKA-SZWAJCARIA PAGE
───────────────────────────────────────────── */

.pps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.pps-col h2 {
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 800;
  margin: 12px 0 20px;
  line-height: 1.2;
}

/* City list */
.pps-cities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
  margin: 20px 0 24px;
}

.pps-cities-col {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pps-cities-col li {
  padding: 7px 0;
  font-size: 15px;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 6px;
}

.pps-cities-col li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.pps-cities-col li a {
  color: var(--accent);
  text-decoration: none;
}

.pps-cities-col li a:hover {
  text-decoration: underline;
}

/* Schedule */
.pps-schedule {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 20px;
  margin-top: 8px;
}

.pps-schedule-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
}

.pps-schedule-row svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}

/* Offer list */
.pps-offer-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pps-offer-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5;
}

.pps-offer-list li svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 3px;
}

/* Services grid */
.pps-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

/* 5th card spans from col 2 to col 3 center */
.pps-services-grid .pps-service-card:nth-child(4) {
  grid-column: 1 / 2;
  grid-row: 2;
}

.pps-services-grid .pps-service-card:nth-child(5) {
  grid-column: 2 / 4;
  grid-row: 2;
}

.pps-service-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 240px;
  border-radius: var(--r-xl);
  overflow: hidden;
  text-decoration: none;
  background-image: var(--svc-bg);
  background-size: cover;
  background-position: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.pps-service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.pps-service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17, 20, 24, 0.75) 0%,
    rgba(17, 20, 24, 0.1) 60%,
    transparent 100%
  );
  transition: background 0.25s;
}

.pps-service-card:hover .pps-service-overlay {
  background: linear-gradient(
    to top,
    rgba(17, 20, 24, 0.85) 0%,
    rgba(17, 20, 24, 0.2) 60%,
    transparent 100%
  );
}

.pps-service-body {
  position: relative;
  z-index: 1;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pps-service-body h3 {
  margin: 0;
  color: #fff;
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}

.pps-service-cta {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}

.pps-service-card:hover .pps-service-cta {
  color: #fff;
}

@media (max-width: 960px) {
  .pps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pps-services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pps-services-grid .pps-service-card:nth-child(4),
  .pps-services-grid .pps-service-card:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 600px) {
  .pps-cities-grid {
    grid-template-columns: 1fr;
  }

  .pps-services-grid {
    grid-template-columns: 1fr;
  }

  .pps-service-card {
    height: 200px;
  }
}

/* ─────────────────────────────────────────────
   KONTAKT PAGE
───────────────────────────────────────────── */

/* Main 2-col grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: start;
}

/* Contact cards stack */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 24px 28px;
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow 0.2s,
    border-color 0.2s,
    transform 0.2s;
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.contact-card--static {
  cursor: default;
  pointer-events: none;
}


.contact-card-ico {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-card-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.contact-card-value {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
}

.contact-card-hint {
  font-size: 13px;
  color: var(--accent);
  margin-top: 2px;
}

/* Info box */
.contact-info-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}

.contact-info-box h2 {
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 12px 0 24px;
}

.contact-info-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5;
}

.contact-info-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent);
}

.contact-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  line-height: 1.5;
}

.contact-note svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}

/* Area grid */
.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.area-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.area-flag {
  font-size: 2rem;
  line-height: 1;
}

.area-card h3 {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
}

.area-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.area-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  margin-top: 4px;
}

.area-link:hover {
  text-decoration: underline;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--surface);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  cursor: pointer;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  list-style: none;
  gap: 16px;
  transition: background 0.15s;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s;
}

.faq-item[open] .faq-q {
  background: var(--surface-2);
}

.faq-item[open] .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  padding: 0 28px 20px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-a p {
  margin: 0;
}

/* Responsive – kontakt */
@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .area-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .contact-card {
    padding: 18px 20px;
  }

  .faq-q {
    padding: 16px 20px;
    font-size: 0.95rem;
  }

  .faq-a {
    padding: 0 20px 16px;
  }
}

/* ═══════════════════════════════════════════════
   MOBILE RESPONSIVENESS – dodatkowe poprawki
   Zasada: te bloki TYLKO rozszerzają/nadpisują
   istniejące breakpointy; desktop (>960px) niezmieniony.
═══════════════════════════════════════════════ */

/* ── Nav overflow fix ──
   Logo i nav-cta nie mogą się kurczyć – zapobiega nachodzeniu
   tekstu menu na elementy obok (widoczne przy 960–1100px). */
.logo {
  flex-shrink: 0;
}

.nav-cta {
  flex-shrink: 0;
}

/* Przy szerokości ≤1100px numer telefonu w nav zajmuje ~140px
   których brakuje; chowamy go – burger pojawi się przy 960px. */
@media (max-width: 1100px) {
  .nav-cta .phone-inline {
    display: none;
  }
}

/* ── Topbar ukryty na telefonach ──
   Ciemny pasek topbar nad białym nav-shellem tworzy wrażenie przerwy
   przy górze ekranu. Na telefonach numery są dostępne w mobile-menu,
   więc topbar chowamy – nav-shell trafia bezpośrednio na górę. */
@media (max-width: 780px) {
  .topbar {
    display: none;
  }
}

/* ── Tablet 960px ── */
@media (max-width: 960px) {
  /* hero .wrap dziedziczy padding: 0 100px z bazowego .wrap –
     zmniejszamy na tabletach żeby treść miała więcej miejsca */
  .hero .wrap {
    padding: 0 32px;
  }

  /* Mniejszy padding sekcji na tabletach */
  section.block {
    padding: 56px 0;
  }
}

/* ── Mobile 680px ── */
@media (max-width: 680px) {
  /* Mniejszy padding sekcji na telefonach */
  section.block {
    padding: 44px 0;
  }

  /* Hero CTA – przyciski pełna szerokość, ułożone pionowo */
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  /* Trust strip – zmniejsz gap żeby elementy ładnie się zawijały */
  .trust-strip .wrap {
    gap: 14px;
  }

  /* Door-to-door – mniejszy padding na telefonie */
  .d2d-block {
    padding: 20px;
    gap: 20px;
  }

  /* Subhero – nie wymuszaj min-height; treść decyduje o wysokości */
  .subhero {
    min-height: unset;
  }

  .subhero h1 {
    font-size: clamp(32px, 8.5vw, 40px);
  }

  .subhero-sub {
    font-size: 17px;
  }

  /* Intro – lekko zmniejsz duży font body-copy */
  .intro-grid p {
    font-size: 18px;
  }

  /* About – zmniejsz lead text */
  .about-intro--solo .lead {
    font-size: 17px;
  }

  /* Contact info box – mniejszy padding na wąskich ekranach */
  .contact-info-box {
    padding: 24px 20px;
  }

  /* Footer – mniejszy padding górny */
  footer.site-foot {
    padding: 40px 0 24px;
  }

  /* Mobile panel – zmniejsz padding żeby logo i menu się mieściły */
  .mobile-panel {
    padding: 16px;
  }
}

/* ── Małe telefony 480px ── */
@media (max-width: 480px) {
  /* Hero – mniejszy padding na telefonach poniżej 480px */
  .hero-grid {
    padding: 80px 0 56px;
    min-height: 540px;
  }

  /* Hero meta statystyki – jedna kolumna na najwęższych ekranach */
  .hero-meta {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
  }

  /* Subhero – mniejszy padding i font breadcrumbs */
  .subhero .wrap {
    padding: 52px 0 44px;
  }

  /* Karty kontaktowe – mniejszy padding i font numeru */
  .contact-card {
    padding: 14px 16px;
  }

  .contact-card-value {
    font-size: 1.05rem;
  }

  /* CTA block – jeszcze mniejszy padding */
  .cta-block {
    padding: 20px;
    gap: 24px;
  }

  /* Page hero – zmniejsz padding na małych telefonach */
  .page-hero {
    padding: 40px 0 32px;
  }

  /* D2D block – minimalistyczny padding */
  .d2d-block {
    padding: 16px;
  }

  /* Intro stats – na małych telefonach jedna kolumna */
  .intro-stats {
    grid-template-columns: 1fr;
  }

  /* Section head – dodaj margines dolny */
  .section-head {
    margin-bottom: 28px;
  }

  /* Zmniejsz gap w stopce na bardzo małych */
  .foot-grid {
    gap: 24px;
  }
}
