/* ===========================================
   AMAZONKI WALBRZYCH — WordPress Theme CSS
   -------------------------------------------
   Extracted from v3 prototypes.
   Design: Serif + Sans pairing, organic shapes,
   muted warm palette, 60+ friendly (18px+ body).
   =========================================== */

/* ===========================================
   CSS VARIABLES
   =========================================== */
:root {
  --rose: #D0006E;
  --rose-soft: #F2C4DA;
  --rose-pale: #FDF0F6;
  --rose-deep: #A30057;

  --sage: #7BAE8E;
  --sage-soft: #D4E8DA;
  --sage-pale: #EFF6F1;
  --sage-deep: #4E7A5C;

  --sand: #F5EDE3;
  --sand-dark: #E8DDD0;

  --gold: #D4A54A;
  --gold-deep: #8B6914;
  --gold-soft: #F5E6C4;
  --gold-pale: #FDF8EE;

  --ink: #2C2C2C;
  --ink-light: #5A5A5A;
  --ink-muted: #6E6E6E;

  --cream: #FDFAF6;
  --white: #FFFFFF;

  --ff-serif: 'Lora', Georgia, serif;
  --ff-sans: 'DM Sans', system-ui, sans-serif;

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

/* ===========================================
   RESET & BASE
   =========================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 18px; scroll-behavior: smooth; }

body {
  font-family: var(--ff-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

/* ===========================================
   ACCESSIBILITY
   =========================================== */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: var(--white);
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: var(--ink);
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* ===========================================
   HEADER
   =========================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 250, 246, 0.95);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

/* Logo */
.logo-link { display: flex; align-items: center; gap: 18px; }

.logo-mark {
  width: 100px; height: 100px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 2px 12px rgba(209, 98, 106, 0.12);
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-mark svg { width: 100%; height: 100%; }

.logo-wordmark {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.logo-name-accent {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 1.65rem;
  line-height: 1.15;
  color: var(--rose);
  letter-spacing: -0.02em;
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: 0; }

.nav-link {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink-light);
  padding: 10px 18px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-link:hover { color: var(--ink); background: rgba(0,0,0,0.03); }

.nav-link.active {
  color: var(--rose);
  font-weight: 700;
}

.nav-tax-btn {
  margin-left: 10px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
  background: var(--gold-soft);
  border: 2px solid var(--gold);
  padding: 10px 22px;
  border-radius: 100px;
  transition: all 0.25s var(--ease-out-expo);
  white-space: nowrap;
  display: inline-block;
}

.nav-tax-btn:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212, 165, 74, 0.35);
}

.nav-fb-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--white);
  background: #1877F2;
  transition: all 0.25s var(--ease-out-expo);
  flex-shrink: 0;
}

.nav-fb-link:hover {
  background: #0d65d9;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.35);
}

/* Mobile toggle — visible only on mobile, sits in brand row */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  width: 48px; height: 48px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  position: absolute;
  left: 12px;
  transition: 0.3s;
}

.menu-toggle span:nth-child(1) { top: 18px; }
.menu-toggle span:nth-child(2) { top: 24px; }
.menu-toggle span:nth-child(3) { top: 30px; }

.menu-toggle.is-active span:nth-child(1) { top: 24px; transform: rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { top: 24px; transform: rotate(-45deg); }

/* Mobile menu dropdown */
.mobile-menu {
  display: none;
  background: var(--cream);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 20px 0;
}

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

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu-nav .nav-link {
  display: block;
  padding: 14px 16px;
  font-size: 1rem;
  border-radius: 12px;
}

.mobile-menu-nav .nav-link:hover {
  background: rgba(0,0,0,0.04);
}

.mobile-tax-btn {
  display: block;
  text-align: center;
  margin-top: 16px;
  margin-left: 0;
}

.mobile-fb-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  padding: 12px 24px;
  border-radius: 100px;
  background: #1877F2;
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
  transition: background 0.2s;
}

.mobile-fb-link:hover {
  background: #0d65d9;
  color: var(--white);
}

/* ===========================================
   HERO — Homepage
   =========================================== */
.hero {
  padding: 80px 0 0;
  position: relative;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 60px;
  align-items: end;
}

.hero-text { padding-bottom: 80px; }

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--rose);
  border-radius: 1px;
}

.hero-title {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: italic;
  font-weight: 700;
  color: var(--rose);
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--ink-light);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
}

.btn-sage {
  background: var(--sage-deep);
  color: var(--white);
}

.btn-sage:hover {
  background: #3D6349;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(78, 122, 92, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--sand-dark);
}

.btn-outline:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.3s;
}

.btn-main:hover .btn-arrow { transform: translateX(4px); }

/* Hero image area */
.hero-visual {
  position: relative;
  align-self: stretch;
}

.hero-photo-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 32px;
  overflow: hidden;
  background: var(--rose-pale);
}

.hero-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(253, 250, 246, 0.4) 100%);
  pointer-events: none;
}

.hero-photo-inner {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg,
      var(--rose-soft) 0%,
      var(--sage-pale) 40%,
      var(--gold-pale) 70%,
      var(--sand) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.hero-photo-inner svg {
  width: 120px;
  height: 120px;
  opacity: 0.5;
}

.hero-photo-caption {
  font-size: 0.85rem;
  color: var(--ink-muted);
  font-style: italic;
  text-align: center;
  padding: 0 24px;
}

/* Floating KRS badge on hero */
.hero-krs {
  position: absolute;
  bottom: 32px;
  left: -24px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-krs-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-krs-icon svg { width: 22px; height: 22px; color: var(--gold); }

.hero-krs-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
}

.hero-krs-number {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink);
  letter-spacing: 0.04em;
}

/* ===========================================
   WAVE DIVIDER
   =========================================== */
.wave-divider {
  width: 100%;
  height: auto;
  display: block;
  margin-top: -1px;
}

/* ===========================================
   SECTION INTRO (shared)
   =========================================== */
.section-intro {
  max-width: 600px;
  margin-bottom: 64px;
}

.section-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 12px;
}

.section-heading {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--ink-light);
  line-height: 1.7;
}

/* ===========================================
   PILLARS — Staggered editorial cards
   =========================================== */
.pillars {
  padding: 80px 0 100px;
  background: var(--white);
  position: relative;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar-card {
  position: relative;
  border-radius: 24px;
  padding: 40px 32px 36px;
  transition: transform 0.4s var(--ease-out-expo);
  overflow: hidden;
  display: grid;
  grid-row: span 4;
  grid-template-rows: subgrid;
  row-gap: 0;
  align-content: start;
}

.pillar-card:hover {
  transform: translateY(-6px);
}

.pillar-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,0.06);
  pointer-events: none;
}

.pillar-1 { background: var(--rose-pale); }
.pillar-2 { background: var(--sage-pale); }
.pillar-3 { background: var(--gold-pale); }

.pillar-card h3 {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--ink);
}

.pillar-card p {
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.75;
  margin-bottom: 20px;
}

.pillar-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
  align-self: end;
  width: fit-content;
}

.pillar-1 .pillar-meta { color: var(--rose-deep); }
.pillar-2 .pillar-meta { color: var(--sage-deep); }
.pillar-3 .pillar-meta { color: var(--gold-deep); }

.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: gap 0.3s;
  align-self: end;
  width: fit-content;
}

.pillar-1 .pillar-link { color: var(--rose-deep); }
.pillar-2 .pillar-link { color: var(--sage-deep); }
.pillar-3 .pillar-link { color: var(--gold-deep); }

.pillar-link:hover { gap: 12px; }

/* ===========================================
   TAX 1.5% — Full-bleed dramatic section
   =========================================== */
.tax-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.tax-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      var(--gold-pale) 0%,
      var(--gold-soft) 40%,
      #FFF2D1 100%);
}

.tax-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 20% 50%, var(--gold) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, var(--gold) 1px, transparent 1px);
  background-size: 60px 60px, 40px 40px;
}

.tax-watermark {
  position: absolute;
  right: -40px;
  bottom: -60px;
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: clamp(8rem, 20vw, 18rem);
  color: rgba(212, 165, 74, 0.1);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.tax-content {
  position: relative;
  z-index: 1;
}

.tax-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.tax-heading {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 24px;
}

.tax-heading .accent {
  display: inline;
  background: linear-gradient(180deg, transparent 60%, var(--gold-soft) 60%);
  padding: 0 4px;
}

.tax-body {
  font-size: 1.1rem;
  color: var(--ink-light);
  line-height: 1.8;
  margin-bottom: 36px;
}

.krs-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 36px;
  display: inline-flex;
  flex-direction: column;
  box-shadow:
    0 1px 3px rgba(0,0,0,0.04),
    0 8px 30px rgba(0,0,0,0.06);
  margin-bottom: 32px;
}

.krs-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
  margin-bottom: 4px;
}

.krs-card-number {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--rose);
  letter-spacing: 0.06em;
}

.krs-card-sub {
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-top: 4px;
}

.tax-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  transition: gap 0.3s, color 0.3s;
}

.tax-cta-link:hover { gap: 14px; color: var(--gold); }

/* Steps */
.tax-steps { display: flex; flex-direction: column; gap: 20px; }

.step-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 18px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.8);
  transition: all 0.3s var(--ease-out-expo);
}

.step-card:hover {
  background: rgba(255,255,255,0.9);
  transform: translateX(4px);
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-card h4 {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--ink);
}

.step-card p {
  font-size: 0.92rem;
  color: var(--ink-light);
  line-height: 1.6;
}

/* PIT-37 Form Preview */
.pit-form {
  margin-top: 48px;
  max-width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.06);
}

.pit-form-head {
  background: var(--white);
  border: 2px solid var(--ink);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  padding: 16px 20px 12px;
}

.pit-form-head-title {
  font-family: var(--ff-sans);
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.3;
}

.pit-form-head-desc {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  color: var(--ink-light);
  line-height: 1.5;
  margin-top: 6px;
}

.pit-form-table {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid var(--ink);
  background: var(--white);
}

.pit-form-cell {
  border: 1.5px solid var(--ink);
  padding: 12px 14px;
  vertical-align: top;
}

.pit-form-cell-label {
  display: block;
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 6px;
}

.pit-form-cell-small {
  display: block;
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  color: var(--ink-light);
  font-style: italic;
  line-height: 1.4;
}

.pit-form-cell-value {
  display: block;
  margin-top: 8px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--ink-muted);
  padding: 6px 0;
}

.pit-form-cell-value--filled {
  color: var(--rose);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.18em;
}

.pit-form-cell-value--hint {
  font-family: var(--ff-sans);
  font-style: italic;
  color: var(--sage);
  font-size: 0.9rem;
  letter-spacing: 0;
  font-weight: 600;
}

.pit-form-cell--krs {
  width: 38%;
  background: rgba(209, 98, 106, 0.04);
}

.pit-form-cell--kwota-desc {
  width: 38%;
}

.pit-form-cell--kwota-val {
  width: 24%;
  text-align: right;
}

.pit-form-cell--cel {
  background: rgba(123, 174, 142, 0.04);
}

.pit-form-cell--zgoda {
  text-align: center;
  vertical-align: middle;
}

.pit-form-cell-amount {
  display: block;
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-top: 8px;
  text-align: right;
}

.pit-form-cell-dots {
  display: inline-block;
  width: 60px;
  border-bottom: 1.5px dotted var(--ink-muted);
  vertical-align: baseline;
}

.pit-form-cell-dots--short {
  width: 28px;
}

.pit-form-cell-checkbox {
  display: block;
  margin-top: 4px;
}


@media (max-width: 600px) {
  .pit-form-table { font-size: 0.85rem; }
  .pit-form-cell { padding: 10px; }
  .pit-form-cell-value--filled { font-size: 1.05rem; }
  .pit-form-head-title { font-size: 0.88rem; }
  .pit-form-cell--krs,
  .pit-form-cell--kwota-desc { width: auto; }
  .pit-form-cell--kwota-val { width: auto; }
}

/* ===========================================
   NEWS — Homepage magazine-style
   =========================================== */
.news-section {
  padding: 100px 0;
  background: var(--cream);
}

.news-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}

.news-header-text { max-width: 500px; }

.news-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.news-footer-actions {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.btn-fb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1877F2;
  border-color: #1877F2;
  color: var(--white);
}

.btn-fb:hover {
  background: #0d65d9;
  border-color: #0d65d9;
  color: var(--white);
}

.news-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}

.news-featured {
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out-expo);
}

.news-featured:hover { transform: translateY(-4px); }

.news-featured-img {
  height: 260px;
  background: linear-gradient(135deg, var(--rose-pale), var(--sage-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.news-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-featured-img svg { width: 80px; height: 80px; opacity: 0.3; }

.news-date-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--white);
  border-radius: 12px;
  padding: 8px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink-light);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  z-index: 2;
}

.news-date-badge .day {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
}

.news-featured-body { padding: 28px 32px; flex: 1; display: flex; flex-direction: column; }

.news-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 12px;
  width: fit-content;
}

.tag-event { background: var(--sage-pale); color: var(--sage-deep); }
.tag-info { background: var(--rose-pale); color: var(--rose-deep); }
.tag-health { background: var(--gold-pale); color: var(--gold-deep); }

.news-featured-body h3 {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.35;
  margin-bottom: 12px;
  color: var(--ink);
}

.news-featured-body h3 a { color: inherit; }
.news-featured-body h3 a:hover { color: var(--rose); }

.news-featured-body p {
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.7;
  flex: 1;
}

/* No-image variants */
.news-featured.no-image .news-featured-img { display: none; }

.news-featured.no-image .news-featured-body {
  padding: 40px 36px 36px;
  justify-content: center;
}

.news-featured.no-image .news-featured-body .news-date-badge {
  position: static;
  display: inline-flex;
  flex-direction: row;
  gap: 6px;
  margin-bottom: 16px;
  box-shadow: none;
  background: none;
  padding: 0;
  border-radius: 0;
}

.news-featured.no-image .news-featured-body .news-date-badge .day {
  font-size: 0.88rem;
}

.news-featured:not(.no-image) .news-featured-body .news-date-badge {
  display: none;
}

.news-side { display: flex; flex-direction: column; gap: 24px; }

.news-small-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: 20px;
  transition: transform 0.3s var(--ease-out-expo);
  flex: 1;
}

.news-small-card:hover { transform: translateX(4px); }

.news-small-img {
  width: 88px;
  height: 88px;
  border-radius: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.news-small-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-small-card:nth-child(1) .news-small-img { background: var(--sage-pale); }
.news-small-card:nth-child(2) .news-small-img { background: var(--gold-pale); }
.news-small-card:nth-child(3) .news-small-img { background: var(--rose-pale); }

.news-small-img svg { width: 36px; height: 36px; opacity: 0.4; }

.news-small-body { display: flex; flex-direction: column; justify-content: center; }

.news-small-date {
  font-size: 0.75rem;
  color: var(--ink-muted);
  font-weight: 600;
  margin-bottom: 4px;
}

.news-small-body h4 {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.35;
  color: var(--ink);
}

.news-small-body h4 a { color: inherit; }
.news-small-body h4 a:hover { color: var(--rose); }

.news-small-card.no-image .news-small-img { display: none; }
.news-small-card.no-image { padding-left: 24px; }

/* ===========================================
   GALLERY — Masonry-ish preview
   =========================================== */
.gallery-section {
  padding: 80px 0 100px;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px;
  gap: 16px;
  margin-bottom: 48px;
}

.gallery-cell {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s var(--ease-out-expo);
}

.gallery-cell:hover { transform: scale(1.03); }

.gallery-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.15) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-cell:hover::after { opacity: 1; }

.gallery-cell:nth-child(1) {
  grid-row: span 2;
  background: linear-gradient(145deg, var(--rose-soft), var(--rose-pale));
}

.gallery-cell:nth-child(2) { background: linear-gradient(145deg, var(--sage-soft), var(--sage-pale)); }
.gallery-cell:nth-child(3) { background: linear-gradient(145deg, var(--gold-soft), var(--gold-pale)); }
.gallery-cell:nth-child(4) { background: linear-gradient(145deg, var(--sand), var(--cream)); }
.gallery-cell:nth-child(5) { background: linear-gradient(145deg, var(--rose-pale), var(--sage-pale)); }

.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-cell-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-cell-inner svg { width: 48px; height: 48px; opacity: 0.2; }
.gallery-cell:nth-child(1) .gallery-cell-inner svg { width: 72px; height: 72px; }

.gallery-more { text-align: center; }

/* ===========================================
   QUOTE STRIP — Testimonial
   =========================================== */
.quote-strip {
  padding: 80px 0;
  background: var(--sage-pale);
  position: relative;
  overflow: hidden;
}

.quote-strip::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  left: clamp(20px, 5vw, 80px);
  font-family: var(--ff-serif);
  font-size: clamp(6rem, 15vw, 14rem);
  color: var(--sage-soft);
  line-height: 1;
  user-select: none;
}

.quote-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.quote-text {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 24px;
}

.quote-author {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--sage-deep);
}

/* ===========================================
   CONTACT STRIP
   =========================================== */
.contact-strip {
  padding: 80px 0;
  background: var(--cream);
}

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

.contact-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s var(--ease-out-expo);
}

.contact-card:hover { transform: translateY(-4px); }

.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card-icon svg { width: 24px; height: 24px; }

.contact-card:nth-child(1) .contact-card-icon { background: var(--rose-pale); color: var(--rose); }
.contact-card:nth-child(2) .contact-card-icon { background: var(--sage-pale); color: var(--sage-deep); }
.contact-card:nth-child(3) .contact-card-icon { background: var(--gold-pale); color: var(--gold-deep); }

.contact-card h4 {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--ink);
}

.contact-card p {
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.6;
}

.contact-card a {
  color: var(--sage-deep);
  font-weight: 600;
  border-bottom: 1px solid var(--sage-soft);
  transition: border-color 0.2s;
}

.contact-card a:hover { border-color: var(--sage-deep); }

/* ===========================================
   FOOTER — Dark, elegant
   =========================================== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding: 72px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand-name {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 300px;
}

.footer-opp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
}

.footer-heading {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links .doc-icon {
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.footer-links a:hover .doc-icon {
  opacity: 1;
}

.footer-links a:hover { color: rgba(255,255,255,1); }

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
}

.footer-contact-row svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  opacity: 0.5;
}

.footer-contact-row a {
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer-contact-row a:hover {
  color: rgba(255,255,255,1);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  padding: 10px 18px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s, color 0.2s;
}

.footer-social a:hover { background: #1877F2; color: var(--white); }
.footer-social a:hover svg { color: var(--white); }

.footer-social svg { width: 18px; height: 18px; color: rgba(255,255,255,0.6); flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer-krs {
  font-weight: 700;
  color: var(--gold);
  font-size: 0.82rem;
}

.footer-bottom {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-author {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
}

.footer-author a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-author a:hover {
  color: rgba(255,255,255,0.6);
}

/* ===========================================
   MOBILE BOTTOM NAV
   =========================================== */
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(253, 250, 246, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 6px 0 max(6px, env(safe-area-inset-bottom));
}

.mobile-nav-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.mob-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--ink-muted);
  padding: 8px 4px;
  min-width: 56px;
  transition: color 0.2s;
}

.mob-link.active { color: var(--rose); }

.mob-link svg { width: 22px; height: 22px; }

.mob-tax { position: relative; }

.mob-tax-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -20px;
  box-shadow: 0 4px 16px rgba(212, 165, 74, 0.35);
  transition: transform 0.3s var(--ease-out-expo);
}

.mob-tax:hover .mob-tax-circle { transform: scale(1.08); }

.mob-tax-circle span {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink);
}

.mob-tax-label {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 4px;
}

/* ===========================================
   PAGE HERO — Inner pages
   =========================================== */
.page-hero {
  padding: 80px 0 48px;
  background: var(--cream);
}

.hero-content {
  max-width: 640px;
}

.page-title {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.page-subtitle {
  font-size: 1.05rem;
  color: var(--ink-light);
  line-height: 1.7;
}

.single-meta {
  font-size: 0.9rem;
  color: var(--ink-muted);
  font-weight: 600;
}

/* ===========================================
   ARCHIVE — News listing
   =========================================== */
.filter-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  align-items: center;
}

.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 24px;
  border: 2px solid transparent;
  background: rgba(0, 0, 0, 0.04);
  color: var(--ink);
  text-decoration: none;
  transition: all 0.3s var(--ease-out-expo);
}

.filter-tag:hover {
  background: rgba(0, 0, 0, 0.08);
}

.filter-tag.active {
  background: var(--sage-deep);
  color: var(--white);
  border-color: var(--sage-deep);
}

.news-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

/* List-style news items (archive/index) */
.news-list-item {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--sand);
}

.news-list-item:first-child {
  padding-top: 0;
}

.news-list-thumb {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.news-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-list-body {
  flex: 1;
  min-width: 0;
}

.news-list-date {
  font-size: 0.82rem;
  color: var(--ink-muted);
  display: block;
  margin-bottom: 4px;
}

.news-list-body h3 {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  margin: 0 0 6px;
}

.news-list-body h3 a {
  color: inherit;
}

.news-list-body h3 a:hover {
  color: var(--rose);
}

.news-list-body p {
  font-size: 0.9rem;
  color: var(--ink-light);
  line-height: 1.6;
  margin: 0;
}

.news-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.3s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.05);
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08), 0 12px 32px rgba(0,0,0,0.12);
}

.news-card-image {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  margin-bottom: 16px;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Homepage: larger banner images */
#news .news-card-image {
  width: calc(100% + 56px);
  height: 200px;
  border-radius: 20px 20px 0 0;
  margin: -28px -28px 20px;
}

#news .news-card-image img {
  border-radius: 20px 20px 0 0;
}

.news-card.no-image .news-card-image { display: none; }

.news-card-body {
  padding: 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.news-card-date {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.news-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 6px;
  width: fit-content;
}

.news-card h3 {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.35;
  margin-bottom: 12px;
  color: var(--ink);
}

.news-card h3 a { color: inherit; }
.news-card h3 a:hover { color: var(--rose); }

.news-card p {
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
}

.news-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--sage-deep);
  transition: gap 0.3s;
  width: fit-content;
}

.news-card-link:hover { gap: 12px; }

/* ===========================================
   SINGLE POST
   =========================================== */
.single-article {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 80px;
}

.single-featured-image {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 48px;
}

.single-featured-image img {
  width: 100%;
  height: auto;
}

.single-nav {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* ===========================================
   ENTRY CONTENT — Gutenberg block styles
   =========================================== */
.entry-content {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink);
}

.entry-content h2 {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 1.6rem;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--ink);
}

.entry-content h3 {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 1.3rem;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--ink);
}

.entry-content h4 {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 28px;
  margin-bottom: 8px;
  color: var(--ink);
}

.entry-content p {
  margin-bottom: 1.5em;
}

.entry-content ul,
.entry-content ol {
  margin-bottom: 1.5em;
  padding-left: 1.5em;
}

.entry-content li {
  margin-bottom: 0.5em;
}

.entry-content blockquote {
  border-left: 4px solid var(--rose);
  padding: 16px 24px;
  margin: 2em 0;
  background: var(--rose-pale);
  border-radius: 0 12px 12px 0;
  font-style: italic;
}

.entry-content img {
  border-radius: 16px;
  margin: 2em 0;
}

.entry-content a {
  color: var(--sage-deep);
  font-weight: 600;
  border-bottom: 1px solid var(--sage-soft);
  transition: border-color 0.2s;
}

.entry-content a:hover {
  border-color: var(--sage-deep);
}

/* WordPress block overrides */
.entry-content .alignwide {
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
}

.entry-content .wp-block-image {
  margin: 2em 0;
}

.entry-content .wp-block-image img {
  border-radius: 16px;
}

.entry-content .wp-block-gallery {
  margin: 2em 0;
}

.entry-content .wp-block-gallery .wp-block-image img {
  border-radius: 12px;
}

.entry-content .wp-block-separator {
  border: none;
  border-top: 2px solid var(--sand-dark);
  margin: 3em 0;
}

.entry-content .wp-block-buttons {
  margin: 2em 0;
}

.entry-content .wp-block-button__link {
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 12px;
  background: var(--sage-deep);
  color: var(--white);
  border: none;
  transition: all 0.3s var(--ease-out-expo);
}

.entry-content .wp-block-button__link:hover {
  background: #3D6349;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(78, 122, 92, 0.3);
}

.entry-content .is-style-outline .wp-block-button__link {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--sand-dark);
}

.entry-content .is-style-outline .wp-block-button__link:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
  box-shadow: none;
}

/* ===========================================
   PAGE CONTENT
   =========================================== */
.page-content {
  padding: 0 0 80px;
}

.page-content .entry-content {
  max-width: 800px;
}

/* ===========================================
   KONTAKT PAGE
   =========================================== */
.kontakt-page {
  padding: 64px 0 96px;
}

.kontakt-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 40px;
}

.kontakt-info {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.kontakt-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.kontakt-icon {
  color: var(--rose);
  flex-shrink: 0;
  margin-top: 3px;
}

.kontakt-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  margin-bottom: 4px;
}

.kontakt-value {
  display: block;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.5;
}

.kontakt-link {
  color: var(--rose);
  text-decoration: none;
  transition: color 0.2s;
}

.kontakt-link:hover {
  color: var(--ink);
  text-decoration: underline;
}

/* ===========================================
   PAGINATION — WP posts pagination
   =========================================== */
.pagination {
  margin-top: 48px;
  margin-bottom: 60px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--white);
  border: 2px solid rgba(0,0,0,0.06);
  color: var(--ink);
  transition: all 0.3s var(--ease-out-expo);
}

.page-numbers:hover {
  background: var(--sage-soft);
  border-color: var(--sage-deep);
  color: var(--sage-deep);
}

.page-numbers.current {
  background: var(--sage-deep);
  color: var(--white);
  border-color: var(--sage-deep);
}

.page-numbers.dots {
  border: none;
  background: none;
}

.page-numbers.prev,
.page-numbers.next {
  font-weight: 700;
  color: var(--sage-deep);
  background: transparent;
  border-color: transparent;
}

.page-numbers.prev:hover,
.page-numbers.next:hover {
  background: var(--sage-pale);
  border-color: var(--sage-deep);
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; gap: 40px; }
  .hero-text { padding-bottom: 0; text-align: center; }
  .hero-desc { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-photo-frame { min-height: 340px; border-radius: 24px; }
  .hero-krs { left: 50%; transform: translateX(-50%); bottom: -24px; }

  @keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
  }

  .tax-layout { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .news-container { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  html { font-size: 17.5px; }
  .main-nav { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav { display: block; }
  .header-bar { padding: 10px 0; }
  .logo-mark { width: 64px; height: 64px; }
  .logo-name { font-size: 0.8rem; }
  .logo-name-accent { font-size: 1.15rem; }

  .pillars-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .pillar-card {
    grid-row: auto;
    display: block;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
  }

  .gallery-cell:nth-child(1) { grid-row: span 1; }

  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-main { justify-content: center; }

  .news-container { grid-template-columns: 1fr; gap: 28px; }
  .filter-bar { margin-bottom: 40px; }
  .page-hero { padding: 60px 0 36px; }

  /* Ensure body has padding for mobile bottom nav */
  body { padding-bottom: 76px; }
}

@media (max-width: 480px) {
  html { font-size: 17px; }
  .hero { padding-top: 48px; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 150px 150px;
  }

  .gallery-cell:nth-child(5) { display: none; }

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

  .page-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }

  .news-card-body { padding: 24px 20px; }
  .news-card h3 { font-size: 1.1rem; }

  .filter-bar { margin-bottom: 32px; gap: 8px; }
  .filter-tag { font-size: 0.85rem; padding: 8px 14px; }
}

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

  .hero-krs {
    animation: none;
  }
}

/* ===========================================
   POMOC PAGE — Pillar detail sections
   =========================================== */
.pillars-detail {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

.pillar-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
  scroll-margin-top: 100px;
  position: relative;
}

.pillar-section:last-child {
  margin-bottom: 0;
}

.pillar-section:nth-child(even) {
  direction: rtl;
}

.pillar-section:nth-child(even) > * {
  direction: ltr;
}

.pillar-visual {
  position: relative;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-visual-1 { background: var(--rose-pale); }
.pillar-visual-2 { background: var(--sage-pale); }
.pillar-visual-3 { background: var(--gold-pale); }

.pillar-visual svg {
  width: 120px;
  height: 120px;
  opacity: 0.3;
}

.pillar-content h2 {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.pillar-content p {
  font-size: 1rem;
  color: var(--ink-light);
  line-height: 1.8;
  margin-bottom: 28px;
}

.pillar-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 16px;
  border-left: 4px solid;
  background: rgba(0,0,0,0.02);
  transition: all 0.3s var(--ease-out-expo);
}

.detail-item:hover {
  background: rgba(0,0,0,0.04);
  transform: translateX(4px);
}

.pillar-1 .detail-item {
  border-left-color: var(--rose);
  background: rgba(208, 0, 110, 0.05);
}

.pillar-2 .detail-item {
  border-left-color: var(--sage);
  background: rgba(123, 174, 142, 0.05);
}

.pillar-3 .detail-item {
  border-left-color: var(--gold);
  background: rgba(212, 165, 74, 0.05);
}

.detail-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 8px;
}

.pillar-1 .detail-icon { background: var(--rose-pale); color: var(--rose-deep); }
.pillar-2 .detail-icon { background: var(--sage-pale); color: var(--sage-deep); }
.pillar-3 .detail-icon { background: var(--gold-pale); color: var(--gold-deep); }

.detail-text {
  flex: 1;
}

.detail-text h4 {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 4px;
}

.detail-text p {
  font-size: 0.9rem;
  color: var(--ink-light);
  line-height: 1.6;
  margin-bottom: 0;
}

.pillar-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 12px;
  border: 2px solid;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
}

.pillar-1 .pillar-cta {
  border-color: var(--rose-deep);
  color: var(--rose-deep);
}

.pillar-1 .pillar-cta:hover {
  background: var(--rose-pale);
  transform: translateY(-2px);
}

.pillar-2 .pillar-cta {
  border-color: var(--sage-deep);
  color: var(--sage-deep);
}

.pillar-2 .pillar-cta:hover {
  background: var(--sage-pale);
  transform: translateY(-2px);
}

.pillar-3 .pillar-cta {
  border-color: var(--gold-deep);
  color: var(--gold-deep);
}

.pillar-3 .pillar-cta:hover {
  background: var(--gold-pale);
  transform: translateY(-2px);
}

.pillar-cta span { transition: transform 0.3s; }
.pillar-cta:hover span { transform: translateX(4px); }

/* ===========================================
   POMOC PAGE — Help CTA section
   =========================================== */
.help-cta-section {
  padding: 80px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.help-cta-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      var(--rose-pale) 0%,
      var(--sage-pale) 50%,
      var(--gold-pale) 100%);
  opacity: 0.3;
}

.help-cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.help-cta-title {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.help-cta-desc {
  font-size: 1rem;
  color: var(--ink-light);
  line-height: 1.8;
  margin-bottom: 36px;
}

.help-cta-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}

.help-cta-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: transform 0.3s var(--ease-out-expo);
  border: 1px solid rgba(0,0,0,0.04);
}

.help-cta-card:hover { transform: translateY(-4px); }

.help-cta-card h4 {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--ink);
}

.help-cta-card p {
  font-size: 0.9rem;
  color: var(--ink-light);
  line-height: 1.6;
}

.help-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.help-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
}

.help-btn-primary {
  background: var(--sage-deep);
  color: var(--white);
}

.help-btn-primary:hover {
  background: #3D6349;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(78, 122, 92, 0.3);
}

.help-btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--sand-dark);
}

.help-btn-secondary:hover {
  border-color: var(--rose);
  background: var(--rose-pale);
}

/* POMOC PAGE — Responsive */
@media (max-width: 1024px) {
  .pillar-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .pillar-section:nth-child(even) {
    direction: ltr;
  }

  .pillar-visual {
    height: 360px;
  }

  .help-cta-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .pillars-detail {
    padding: 60px 0;
  }

  .pillar-section {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
  }

  .pillar-visual {
    height: 300px;
  }

  .pillar-details {
    gap: 16px;
  }

  .detail-item {
    padding: 16px;
  }

  .help-cta-section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .pillar-section {
    margin-bottom: 60px;
    gap: 32px;
  }

  .pillar-content h2 {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }

  .pillar-visual {
    height: 260px;
    border-radius: 18px;
  }

  .detail-item {
    padding: 14px;
    gap: 12px;
  }

  .help-cta-cards {
    gap: 16px;
  }

  .help-actions {
    flex-direction: column;
  }

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

/* ===========================================
   KONSULTACJE PAGE — Punkt konsultacyjno-informacyjny
   =========================================== */

/* Hero split layout */
.konsultacje-hero-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.konsultacje-hero-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.6;
}

.konsultacje-hero-address svg {
  flex-shrink: 0;
  color: var(--rose);
  margin-top: 2px;
}

.konsultacje-hero-address strong {
  color: var(--ink);
}

.konsultacje-hero-phone-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  min-width: 240px;
}

.konsultacje-hero-phone-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--sage-pale);
  color: var(--sage-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.konsultacje-hero-phone-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  margin-bottom: 8px;
}

.konsultacje-hero-phone-number {
  display: block;
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--sage-deep);
  margin-bottom: 8px;
  transition: color 0.2s;
}

.konsultacje-hero-phone-number:hover { color: var(--ink); }

.konsultacje-hero-email {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--rose);
  transition: color 0.2s;
}

.konsultacje-hero-email:hover { color: var(--ink); }

/* 2-column services */
.konsultacje-uslugi {
  padding: 60px 0;
  background: var(--white);
}

.konsultacje-uslugi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.konsultacje-usluga {
  border-radius: 24px;
  padding: 40px 32px;
  border: 1px solid rgba(0,0,0,0.04);
}

.konsultacje-usluga--rehab {
  background: var(--sage-pale);
}

.konsultacje-usluga--masaz {
  background: var(--rose-pale);
}

.konsultacje-usluga-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.konsultacje-usluga--rehab .konsultacje-usluga-icon {
  background: var(--sage-soft);
  color: var(--sage-deep);
}

.konsultacje-usluga--masaz .konsultacje-usluga-icon {
  background: var(--rose-soft);
  color: var(--rose-deep);
}

.konsultacje-usluga h2 {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 12px;
}

.konsultacje-usluga-desc {
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

.konsultacje-usluga-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.konsultacje-usluga-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink-light);
}

.konsultacje-usluga-detail svg {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.6;
}

.konsultacje-usluga-detail strong {
  color: var(--ink);
}

.konsultacje-usluga-detail a {
  color: var(--sage-deep);
  transition: color 0.2s;
}

.konsultacje-usluga--masaz .konsultacje-usluga-detail a {
  color: var(--rose-deep);
}

.konsultacje-usluga-detail a:hover {
  color: var(--ink);
}

/* Harmonogram: 3-area layout */
.konsultacje-harmonogram {
  padding: 60px 0 80px;
  background: var(--cream);
}

.harmonogram-heading {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink);
  margin: 0 0 40px;
}

.harmonogram-areas {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.harmonogram-area {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.harmonogram-area-header {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--sand);
}

.harmonogram-area-header h3 {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  margin: 0;
}

.harmonogram-area-desc {
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.harmonogram-area-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.harmonogram-area-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--ink);
}

.harmonogram-area-detail svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--ink-muted);
}

.harmonogram-area-detail a {
  color: var(--rose);
}

.harmonogram-area-detail a:hover {
  text-decoration: underline;
}

/* Konsultacje — schedule persons */
.harmonogram-osoba {
  padding: 20px 0;
  border-bottom: 1px solid var(--sand);
}

.harmonogram-osoba:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.harmonogram-osoba:first-child {
  padding-top: 0;
}

.harmonogram-osoba-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.harmonogram-osoba-header h4 {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  margin: 0;
}

.harmonogram-tel {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-light);
}

.harmonogram-tel svg {
  position: relative;
  top: 1px;
}

.harmonogram-tel:hover {
  color: var(--rose);
}

.harmonogram-osoba-opis {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-bottom: 12px;
}

.harmonogram-terminy {
  font-size: 0.93rem;
  line-height: 2;
  color: var(--ink-light);
  padding-left: 16px;
  border-left: 3px solid var(--sand);
}

.harmonogram-note {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--sand);
  font-size: 0.85rem;
  color: var(--ink-muted);
  font-style: italic;
}

.harmonogram-phone {
  margin-top: 8px;
  font-size: 1.05rem;
  font-weight: 600;
}

.harmonogram-phone a {
  color: var(--rose);
}

.harmonogram-phone a:hover {
  text-decoration: underline;
}

/* CTA */
.konsultacje-cta {
  padding: 80px 0;
  background: var(--white);
}

.konsultacje-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.konsultacje-cta-inner h2 {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--ink);
  margin-bottom: 16px;
}

.konsultacje-cta-inner p {
  color: var(--ink-light);
  line-height: 1.8;
  margin-bottom: 32px;
}

.konsultacje-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
  .konsultacje-hero-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .konsultacje-hero-phone-card {
    min-width: auto;
  }
}

@media (max-width: 768px) {
  .harmonogram-area {
    padding: 28px 24px;
  }

  .konsultacje-cta {
    padding: 60px 0;
  }

  .konsultacje-cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ===========================================
   O NAS PAGE
   =========================================== */

/* Stats bar */
.onas-stats {
  padding: 48px 0;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.onas-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.onas-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.onas-stat-value {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--rose);
  letter-spacing: -0.02em;
}

.onas-stat-label {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink);
}

.onas-stat-detail {
  font-size: 0.8rem;
  color: var(--ink-muted);
}

/* Info grid: dane + zarząd */
.onas-info {
  padding: 60px 0;
  background: var(--cream);
}

.onas-info-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
}

.onas-card {
  background: var(--white);
  border-radius: 24px;
  padding: 36px 32px;
  border: 1px solid rgba(0,0,0,0.04);
}

.onas-card h2 {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--sand);
}

/* Dane list */
.onas-dane-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.onas-dane-row {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  font-size: 0.9rem;
  line-height: 1.6;
}

.onas-dane-row:last-child {
  border-bottom: none;
}

.onas-dane-row dt {
  width: 100px;
  flex-shrink: 0;
  font-weight: 700;
  color: var(--ink-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-top: 2px;
}

.onas-dane-row dd {
  color: var(--ink);
}

.onas-dane-row a {
  color: var(--sage-deep);
  font-weight: 600;
  transition: color 0.2s;
}

.onas-dane-row a:hover {
  color: var(--ink);
}

.onas-dane-row code {
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: 0.85rem;
  background: var(--sage-pale);
  padding: 4px 8px;
  border-radius: 6px;
  color: var(--sage-deep);
  display: inline-block;
  margin-top: 4px;
  letter-spacing: 0.03em;
}

/* Zarząd */
.onas-zarzad-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.onas-zarzad-osoba {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.onas-zarzad-osoba:last-child {
  border-bottom: none;
}

.onas-zarzad-funkcja {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rose);
  margin-bottom: 4px;
}

.onas-zarzad-imie {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
}

/* Działalność */
.onas-dzialalnosc {
  padding: 80px 0;
  background: var(--white);
}

.onas-section-heading {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--ink);
  margin-bottom: 36px;
  text-align: center;
}

.onas-dzialalnosc-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-light);
}

.onas-dzialalnosc-content h3 {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  margin-top: 36px;
  margin-bottom: 16px;
}

.onas-dzialalnosc-content ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.onas-dzialalnosc-content li {
  padding-left: 24px;
  position: relative;
}

.onas-dzialalnosc-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose);
  opacity: 0.4;
}

/* Tax CTA */
.onas-tax-cta {
  padding: 80px 0;
  background: var(--gold-pale);
}

.onas-tax-cta-inner {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.onas-tax-cta-inner h2 {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--ink);
  margin-bottom: 20px;
}

.onas-tax-cta-inner p {
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.onas-tax-cta-appeal {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.05rem !important;
  color: var(--ink) !important;
  margin-bottom: 28px !important;
}

.onas-tax-krs {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: 12px;
  padding: 12px 24px;
  margin-bottom: 28px;
  border: 2px solid var(--gold);
}

.onas-tax-krs-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-deep);
}

.onas-tax-krs-number {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
  letter-spacing: 0.05em;
}

/* O NAS responsive */
@media (max-width: 768px) {
  .onas-stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .onas-card {
    padding: 28px 24px;
  }

  .onas-dane-row {
    flex-direction: column;
    gap: 4px;
  }

  .onas-dane-row dt {
    width: auto;
  }

  .onas-dzialalnosc {
    padding: 60px 0;
  }

  .onas-tax-cta {
    padding: 60px 0;
  }
}

/* ===========================================
   PRINT STYLES
   =========================================== */
@media print {
  .site-header,
  .mobile-nav,
  .menu-toggle,
  .hero-actions,
  .gallery-section,
  .footer-social,
  .btn-main,
  .btn-arrow,
  .news-card-link,
  .pillar-link {
    display: none !important;
  }

  body {
    background: white;
    color: black;
    font-size: 12pt;
    line-height: 1.5;
  }

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

  a {
    color: black;
    text-decoration: underline;
  }

  .hero-title,
  .page-title,
  .section-heading,
  .tax-heading {
    color: black;
  }

  .krs-card {
    border: 2px solid black;
    box-shadow: none;
  }

  .krs-card-number {
    color: black;
    font-size: 1.5rem;
  }

  .site-footer {
    background: white;
    color: black;
    border-top: 2px solid black;
  }
}
