/* Lodziarnia Kit — base styles driven by CSS variables from TenantTheme */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  font-family: var(--lk-font-body);
  color: var(--lk-text);
  background: var(--lk-background);
  line-height: 1.6;
}

.layout-heroCentered {
  background-color: var(--lk-background);
}

.layout-heroCentered::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.62;
  background:
    url("../images/brand/bg-ice-cone.svg") 8% 18% / 54px no-repeat,
    url("../images/brand/bg-ice-cone.svg") 86% 10% / 50px no-repeat,
    url("../images/brand/bg-ice-cup.svg") 72% 58% / 46px no-repeat,
    url("../images/brand/bg-ice-cup.svg") 22% 62% / 44px no-repeat,
    url("../images/brand/bg-ice-cup-triple.svg") 56% 5% / 68px no-repeat,
    url("../images/brand/bg-ice-cone.svg") 12% 88% / 42px no-repeat,
    url("../images/brand/bg-ice-cone.svg") 92% 78% / 40px no-repeat;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--lk-text); }

.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.narrow { max-width: 720px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--lk-background) 92%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(26, 43, 74, 0.06);
}

.layout-heroCentered .site-header {
  background: var(--lk-background);
  border-bottom: 0;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  min-height: 76px;
}

.layout-heroCentered .header-inner {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  min-height: 134px;
  height: 134px;
}

.layout-heroCentered .site-logo {
  justify-self: start;
}

.layout-heroCentered .primary-nav {
  justify-self: center;
  gap: 1.35rem;
}

.layout-heroCentered .header-cta {
  justify-self: end;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-family: var(--lk-font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--lk-text);
}

.site-logo-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

.site-logo-stack--brand {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.35rem;
  flex-shrink: 0;
}

.layout-heroCentered .site-logo-stack--brand {
  width: 212px;
  min-width: 212px;
  max-width: 212px;
}

.layout-heroCentered .site-logo-stack--brand .site-logo-mark {
  width: 88px;
  height: 88px;
  flex: 0 0 88px;
}

.layout-heroCentered .site-logo-stack--brand .site-logo-text {
  min-height: 128px;
  width: 116px;
  flex: 0 0 116px;
  justify-content: center;
  align-items: stretch;
}

.layout-heroCentered .site-logo-stack--brand .brand-primary {
  font-size: 4.05rem;
  font-weight: 600;
  line-height: 0.86;
  width: 100%;
}

.layout-heroCentered .site-logo-stack--brand .brand-primary > .brand-primary-letters {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  min-width: 100%;
}

.site-logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
  gap: 0.06rem;
}

.site-logo-mark {
  display: inline-flex;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.layout-heroCentered .site-logo-stack--brand .brand-secondary {
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: 0.135em;
  margin-top: 0;
}

.site-logo-mark img { width: 100%; height: 100%; }

.brand-primary { display: block; text-transform: lowercase; font-weight: 700; font-size: 1.05rem; }
.brand-secondary { display: block; letter-spacing: 0.14em; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; }

.brand-s-tail {
  position: relative;
  display: inline-block;
}

.brand-s-tail::after {
  content: '';
  position: absolute;
  left: 0.12em;
  top: 0.06em;
  width: 0.24em;
  height: 0.065em;
  background: var(--lk-accent);
  border-radius: 999px;
  transform: rotate(-42deg);
  transform-origin: left center;
  pointer-events: none;
}

.layout-heroCentered .site-logo-stack--brand .brand-s-tail::after {
  left: 0.16em;
  top: 0.1em;
  width: 0.22em;
  height: 0.06em;
  transform: rotate(-44deg);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.primary-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--lk-text);
}

.header-cta { white-space: nowrap; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--lk-text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
}

.btn-sm { padding: 0.5rem 1rem; font-size: 0.9rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--lk-text); color: #fff; }
.btn-accent { background: var(--lk-accent); color: #fff; border-color: var(--lk-accent); }
.btn-outline { background: #fff; border-color: var(--lk-text); color: var(--lk-text); }

.layout-heroCentered .hero-centered {
  position: relative;
  overflow: visible;
  padding: 2rem 0 0;
  z-index: 2;
}

.layout-heroCentered .hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M40 8c-6 0-10 5-10 11 0 8 10 22 10 22s10-14 10-22c0-6-4-11-10-11z' fill='none' stroke='%23ffffff' stroke-width='2.5'/%3E%3C/svg%3E") 6% 22% / 56px no-repeat,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cpath d='M24 8h24v18H24zM30 26l6 38 6-38' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linejoin='round'/%3E%3C/svg%3E") 78% 12% / 52px no-repeat,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Crect x='28' y='8' width='16' height='28' rx='8' fill='none' stroke='%23ffffff' stroke-width='2.5'/%3E%3Cpath d='M36 36v22' stroke='%23ffffff' stroke-width='2.5'/%3E%3C/svg%3E") 62% 68% / 48px no-repeat,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cellipse cx='36' cy='28' rx='14' ry='12' fill='none' stroke='%23ffffff' stroke-width='2.5'/%3E%3Cpath d='M22 40h28v8H22z' fill='none' stroke='%23ffffff' stroke-width='2.5'/%3E%3C/svg%3E") 18% 72% / 44px no-repeat,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M40 8c-6 0-10 5-10 11 0 8 10 22 10 22s10-14 10-22c0-6-4-11-10-11z' fill='none' stroke='%23ffffff' stroke-width='2' opacity='0.7'/%3E%3C/svg%3E") 42% 8% / 40px no-repeat;
}

.layout-heroCentered .hero-grid {
  gap: 1.5rem 2.5rem;
}

.layout-heroCentered .hero-visual img {
  width: min(320px, 100%);
  max-width: 320px;
  margin-inline: auto;
  filter: none;
  border-radius: 0;
  box-shadow: none;
}

.layout-heroCentered .hero h1 {
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(2.2rem, 5.5vw, 3.45rem);
  line-height: 1.05;
}

.layout-heroCentered .hero-subtitle {
  font-size: 1.05rem;
  margin: 0 0 1.35rem;
  max-width: 26rem;
}

.layout-heroCentered .hero-actions .btn {
  min-width: 11rem;
  padding: 0.8rem 1.45rem;
}

.section-compact { padding: 0 0 2.5rem; }

.layout-heroCentered .info-cards .cards-3 {
  gap: 1.15rem;
}

.info-card {
  background: var(--lk-card);
  border: 2px solid var(--lk-text);
  border-radius: 1.35rem;
  padding: 1.15rem 1.1rem 1.25rem;
  box-shadow: none;
  text-align: center;
  min-height: 100%;
}

.info-card h2 {
  font-family: var(--lk-font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
  font-weight: 700;
}

.info-card-head {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  width: 100%;
  margin: 0 0 0.75rem;
}

.info-card-head h2 {
  white-space: nowrap;
  line-height: 1;
  margin: 0;
}

.info-card-icon {
  width: auto;
  height: auto;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  line-height: 0;
}

.info-card-icon img {
  display: block;
}

.info-card-promo-box {
  border: 2px solid var(--lk-text);
  border-radius: 0.85rem;
  padding: 0.55rem 0.65rem;
  margin-top: 0.15rem;
}

.info-card-promo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
}

.promo-thumb {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 0;
  background: transparent;
  display: grid;
  place-items: center;
}

.promo-thumb img { width: 64px; height: 64px; }

.promo-body { flex: 1; min-width: 0; }

.promo-text {
  margin: 0.1rem 0 0.25rem;
  font-size: 0.88rem;
  line-height: 1.35;
  font-weight: 600;
}

.info-card-kicker {
  color: var(--lk-accent);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  margin: 0;
}

.info-card-address {
  font-size: 0.92rem;
  font-weight: 600;
  margin: 0.35rem 0 0;
}

.map-illustration {
  margin: 0.15rem 0 0.5rem;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(26, 43, 74, 0.12);
}

.map-illustration img,
.map-illustration iframe {
  width: 100%;
  height: auto;
}

.map-illustration iframe {
  display: block;
  min-height: 8.75rem;
  border: 0;
}

.map-link {
  display: inline-flex;
  align-self: center;
  margin: 0 0 0.35rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hours-list-mockup { font-size: 0.86rem; text-align: left; }
.hours-list-mockup li {
  padding: 0.22rem 0;
  border-bottom: 0;
  gap: 0.75rem;
}

.hours-list-mockup span { color: var(--lk-text); font-weight: 600; }
.hours-list-mockup strong { font-weight: 700; white-space: nowrap; }

.footer-divider {
  height: 2px;
  background: var(--lk-text);
  opacity: 0.85;
  margin: 0;
}

.site-footer-mockup {
  background: var(--lk-background);
  color: var(--lk-text);
  padding: 0 0 0.75rem;
}

.footer-mockup-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  padding: 1.35rem 0 0.5rem;
}

.footer-social {
  display: flex;
  gap: 0.65rem;
}

.footer-social a {
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--lk-text);
  color: #fff;
  text-decoration: none;
}

.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--lk-text);
}

.site-footer-mockup .footer-bottom {
  border-top: 0;
  color: rgba(26, 43, 74, 0.55);
  padding: 0.5rem 0 0.75rem;
  font-size: 0.78rem;
  text-align: center;
}

.layout-heroCentered .section-more:first-of-type {
  border-top: 0;
  margin-top: 0;
}

.landing-footer-wrap {
  background: color-mix(in srgb, var(--lk-text) 6%, var(--lk-background));
  padding: 0;
  margin-top: auto;
  width: 100%;
}

.landing-footer-wrap .footer-divider {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.landing-footer-wrap .footer-mockup-bar {
  width: 100%;
  max-width: none;
  padding: 1.2rem 1.25rem 1.35rem;
}

.landing-footer-wrap .footer-mockup-inner {
  position: relative;
  display: flex;
  align-items: center;
  width: min(1180px, 100%);
  min-height: 2.85rem;
  margin-inline: auto;
  padding-inline: 0.25rem;
}

.landing-footer-wrap .footer-social {
  position: static;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: flex-start;
  padding-left: 0.35rem;
}

.landing-footer-wrap .footer-social a.footer-social-fb {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: var(--lk-text);
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
}

.landing-footer-wrap .footer-social a.footer-social-ig {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0;
  background: transparent;
  color: var(--lk-text);
  display: grid;
  place-items: center;
  text-decoration: none;
}

.landing-footer-wrap .footer-social a.footer-social-tiktok {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: transparent;
  color: var(--lk-text);
  display: grid;
  place-items: center;
  text-decoration: none;
}

.landing-footer-wrap .footer-social a.footer-social-fb svg {
  width: 1.28rem;
  height: 1.28rem;
  transform: none;
  display: block;
  margin: 0 auto;
}

.landing-footer-wrap .footer-social a.footer-social-ig svg {
  width: 2.35rem;
  height: 2.35rem;
  stroke-width: 1.85;
}

.landing-footer-wrap .footer-social a.footer-social-tiktok svg {
  width: 1.58rem;
  height: 1.58rem;
}

.landing-footer-wrap .footer-email {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-inline: 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.landing-footer-wrap .footer-email-icon {
  display: inline-flex;
  width: 2.2rem;
  height: 2.2rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--lk-text);
}

.landing-footer-wrap .footer-email-icon svg {
  width: 2.15rem;
  height: 2.15rem;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(26, 43, 74, 0.08);
}

.hours-list li:last-child { border-bottom: 0; }

.section-more {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(26, 43, 74, 0.08);
}

.site-footer-mockup a { color: inherit; }

.hero {
  padding: 3rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero-kicker { margin: 0 0 0.5rem; font-size: 1.1rem; }
.hero h1 {
  font-family: var(--lk-font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.hero-subtitle { font-size: 1.15rem; margin-bottom: 1.5rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero-visual img {
  border-radius: 1rem;
  box-shadow: 0 12px 40px rgba(26, 43, 74, 0.15);
}

.hero-placeholder {
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  font-size: 4rem;
  background: var(--lk-card);
  border-radius: 1rem;
}

.section { padding: 3.5rem 0; }
.section-alt { background: rgba(255, 255, 255, 0.55); }

.section h2 {
  font-family: var(--lk-font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 1.5rem;
}

.section.info-cards .info-card-head h2 {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.2;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-head h2 { margin: 0; }
.link-more { font-weight: 700; }

.cards {
  display: grid;
  gap: 1rem;
}

.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card {
  background: var(--lk-card);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 4px 20px rgba(26, 43, 74, 0.06);
}

.card-highlight { border: 2px solid var(--lk-accent); }
.card-contest { position: relative; }
.card h3 { margin-top: 0; font-family: var(--lk-font-heading); }
.card a { text-decoration: none; }

.badge {
  display: inline-block;
  background: var(--lk-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}

.winners-list { padding-left: 1.2rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 0.75rem;
  background: var(--lk-card);
  padding: 1.25rem;
  border-radius: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  font: inherit;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(26, 43, 74, 0.15);
  border-radius: 0.5rem;
}

.form-notice { padding: 0.75rem 1rem; border-radius: 0.5rem; }
.form-notice.success { background: #e8f5e9; }
.form-notice.error { background: #ffebee; }

.site-footer {
  background: var(--lk-text);
  color: #fff;
  padding: 2.5rem 0 1rem;
}

.site-footer a { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-brand { font-family: var(--lk-font-heading); font-weight: 800; margin-bottom: 0.5rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 1rem; font-size: 0.9rem; }

.mobile-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  padding: 0;
  background: var(--lk-accent);
  border-top: 0;
  z-index: 90;
}

.mobile-cta .btn {
  border-radius: 0;
  min-height: 3.35rem;
  font-size: 1rem;
  gap: 0.5rem;
}

.post-single h1 { font-family: var(--lk-font-heading); }
.post-meta { opacity: 0.7; }

@media (max-width: 900px) {
  .hero-grid,
  .contact-grid,
  .cards-3 { grid-template-columns: 1fr; }

  .cards-2 { grid-template-columns: 1fr; }

  .layout-heroCentered .header-inner {
    grid-template-columns: 1fr auto;
  }

  .layout-heroCentered .primary-nav {
    display: none;
  }

  .layout-heroCentered .header-cta {
    display: none;
  }

  .layout-heroCentered .hero-centered { margin-bottom: 0; }
  .layout-heroCentered .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 0.75rem;
  }
  .layout-heroCentered .hero-copy { padding-bottom: 0.5rem; text-align: center; max-width: none; }
  .brochure-only .layout-heroCentered .hero-copy { padding-bottom: 3rem; text-align: left; max-width: 42rem; }
  .brochure-only .layout-heroCentered .hero-centered { padding-bottom: 2rem; }
  .layout-heroCentered .hero-visual {
    justify-self: center;
    width: min(300px, 86%);
    margin: 0 auto -2.5rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .layout-heroCentered .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .layout-heroCentered .hero-subtitle {
    margin-inline: auto;
  }

  .layout-heroCentered .hero-actions {
    justify-content: center;
  }

  .layout-heroCentered .hero-actions .btn {
    flex: 1 1 100%;
    max-width: 280px;
  }

  .layout-heroCentered .hero-visual { order: 2; }

  .primary-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    padding: 1rem;
    border-bottom: 1px solid rgba(26,43,74,0.1);
    z-index: 120;
  }

  .primary-nav.is-open { display: flex; }
  .mobile-cta { display: block; }
  body { padding-bottom: 4.5rem; }
}

html:has(body.brochure-only.admin-bar) {
  margin-top: 0 !important;
}

body.brochure-only.admin-bar {
  margin-top: 0 !important;
}

body.brochure-only.admin-bar #wpadminbar,
body.brochure-only #wpadminbar {
  display: none !important;
}

/* —— v0.5 mockup alignment —— */
/* —— v0.7.7 bear pinned to GODZINY card —— */
.brochure-only .layout-heroCentered .hero-centered {
  padding: 1.25rem 0 2.75rem;
  margin-bottom: 0;
  overflow: visible;
}

.brochure-only .layout-heroCentered .hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 0;
  min-height: 0;
}

body.brochure-only.layout-heroCentered .hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 0;
  min-height: 0;
}

.brochure-only .layout-heroCentered .hero-copy {
  position: relative;
  z-index: 2;
  align-self: start;
  padding: 0.25rem 0 4.5rem;
  max-width: 42rem;
}

.brochure-only .layout-heroCentered .hero h1 {
  font-size: clamp(2.75rem, 7.2vw, 4.45rem);
  line-height: 1.02;
}

.brochure-only .info-cards {
  position: relative;
  z-index: 2;
  padding-top: 0;
  margin-top: 3.5rem;
  overflow: visible;
}

/* —— v0.7.8 bear clean PNG + behind card border —— */
.brochure-only .info-card-hours {
  position: relative;
  z-index: 2;
  overflow: visible;
  isolation: isolate;
  background: transparent;
  border-color: transparent;
}

.brochure-only .info-card-hours::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--lk-card);
  border: 2px solid var(--lk-text);
  border-radius: 1.5rem;
  z-index: 1;
  pointer-events: none;
}

.brochure-only .info-card-hours .info-card-head,
.brochure-only .info-card-hours .hours-list-mockup {
  position: relative;
  z-index: 2;
}

/* —— LOCKED v0.8.6 — bear on GODZINY: do not change right/bottom/width —— */
.brochure-only .info-card-hours .hero-bear-pin {
  position: absolute;
  right: -4px;
  left: auto;
  bottom: calc(100% - 32px);
  width: min(400px, 178%);
  max-width: 400px;
  margin: 0;
  transform: none;
  z-index: 0;
  pointer-events: none;
  line-height: 0;
}

.brochure-only .info-card-hours .hero-bear-pin img {
  width: 100%;
  height: auto;
  display: block;
  background: transparent;
  border: 0;
  box-shadow: none;
  filter: none;
}

@media (min-width: 901px) {
  .brochure-only .info-cards {
    margin-top: 4.25rem;
  }

  .brochure-only .info-card-hours .hero-bear-pin {
    right: -6px;
    left: auto;
    bottom: calc(100% - 36px);
    width: min(450px, 200%);
    max-width: 450px;
    transform: none;
  }
}

@media (max-width: 900px) {
  .brochure-only .info-card-hours .hero-bear-pin {
    display: none;
  }
}

.layout-heroCentered .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 420px);
  align-items: end;
  gap: 0 1.5rem;
  min-height: 21rem;
}

body.brochure-only.layout-heroCentered .hero-grid {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 0;
  min-height: 0;
}

.layout-heroCentered .hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 0.25rem 0 4.5rem;
  max-width: 34rem;
}

.layout-heroCentered .hero-visual {
  position: relative;
  z-index: 4;
  justify-self: end;
  align-self: end;
  width: min(400px, 100%);
  margin: 0 0 -5.5rem;
  pointer-events: none;
  line-height: 0;
}

.layout-heroCentered .hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  filter: none;
  border-radius: 0;
  box-shadow: none;
}
.layout-heroCentered .hero h1 { letter-spacing: 0.06em; font-size: clamp(2.35rem, 5.8vw, 3.65rem); line-height: 1.02; margin-bottom: 0.65rem; }
.layout-heroCentered .hero-subtitle { font-size: 1.08rem; margin-bottom: 1.5rem; max-width: 24rem; font-weight: 600; }
.layout-heroCentered .btn { border-radius: 0.9rem; }
.layout-heroCentered .hero-actions .btn { min-width: 12rem; padding: 0.82rem 1.55rem; font-size: 0.98rem; border-radius: 0.9rem; }
.layout-heroCentered .hero-actions .btn-outline { background: var(--lk-background); }

.info-card { border-radius: 1.5rem; padding: 1.35rem 1.2rem 1.4rem; display: flex; flex-direction: column; align-items: stretch; }
.info-card-head { margin-bottom: 0.85rem; }
.info-card-head h2 { font-size: 0.92rem; letter-spacing: 0.12em; white-space: nowrap; line-height: 1; margin: 0; }
.info-card-icon svg,
.info-card-icon img { width: 36px; height: 36px; }
.brochure-only .info-card {
  text-align: left;
  padding: 1.2rem 1.15rem 1.3rem;
  gap: 0.35rem;
}

.brochure-only .info-card-head {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  gap: 0.55rem;
  min-height: 42px;
  margin-bottom: 0.65rem;
}

.brochure-only .info-card-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
}

.brochure-only .info-card-icon svg,
.brochure-only .info-card-icon img {
  width: 40px;
  height: 40px;
}

.brochure-only .info-card-promo {
  flex: 1;
  align-items: stretch;
  gap: 0.75rem;
  padding: 0.15rem 0 0;
}

.brochure-only .info-card-promo .promo-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.35rem;
  min-height: 148px;
  padding-top: 0;
}

.brochure-only .info-card-kicker {
  color: var(--lk-text);
  font-family: var(--lk-font-heading);
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.2;
  margin: 0;
}

.brochure-only .promo-thumb {
  flex: 0 0 148px;
  width: 148px;
  height: 148px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  overflow: visible;
}

.brochure-only .promo-thumb img {
  width: 124px;
  height: 124px;
  max-width: none;
  transform: scale(1.32);
  transform-origin: center center;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  outline: 0;
  object-fit: contain;
}

.brochure-only .promo-thumb--photo {
  overflow: hidden;
  border: 2px solid color-mix(in srgb, var(--lk-text) 16%, transparent);
  border-radius: 1rem;
  background: color-mix(in srgb, var(--lk-background) 62%, #fff);
}

.brochure-only .promo-thumb--photo img {
  width: 100%;
  height: 100%;
  transform: none;
  border-radius: 0;
  object-fit: cover;
}

.brochure-only .map-illustration {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.25rem 0 0.55rem;
  border: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.brochure-only .map-illustration img,
.brochure-only .map-illustration iframe {
  width: 100%;
  max-width: 260px;
  border: 0;
  border-radius: 0.85rem;
  box-shadow: none;
}

.brochure-only .map-illustration iframe {
  height: 114px;
}

.brochure-only .info-card-address {
  text-align: center;
  margin-top: 0.15rem;
}

.brochure-only .hours-list-mockup {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 0.15rem;
}

.brochure-only .site-footer-mockup { display: none; }

body.brochure-only.layout-heroCentered {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.brochure-only.layout-heroCentered #content {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

.brochure-only .landing-page-shell {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  position: relative;
  isolation: isolate;
}

/* —— Brochure background ice art (mockup PNG + extras) —— */
body.brochure-only.layout-heroCentered::before {
  content: none;
  background: none;
  display: none;
}

body.brochure-only .hero-decor {
  display: none;
}

body.brochure-only.layout-heroCentered .landing-page-shell::before {
  content: none;
  display: none;
}

.landing-bg-wallpaper {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  --wallpaper-header-clear: calc(76px + 1.35rem);
}

.landing-bg-wallpaper--subpage {
  opacity: 0.38;
}

body.brochure-only.layout-heroCentered .hero-centered,
body.brochure-only.layout-heroCentered .info-cards,
body.brochure-only.layout-heroCentered .page-section,
body.brochure-only.layout-heroCentered .landing-footer-wrap {
  position: relative;
  z-index: 1;
}

.landing-bg-wallpaper__item {
  position: absolute;
  width: auto;
  height: auto;
  max-width: none;
  opacity: 0.92;
  filter: drop-shadow(0 0 0.5px rgba(255, 255, 255, 0.35));
}

/* mockup: cone double — top-left, below header bar */
.landing-bg-wallpaper__item--cone-double-tl {
  left: 4.5%;
  top: var(--wallpaper-header-clear);
  width: clamp(56px, 5.2vw, 72px);
  transform: rotate(14deg);
}

/* mockup: soft-serve — left gutter, below hero heading */
.landing-bg-wallpaper__item--softserve-ml {
  left: 1.5%;
  top: 34%;
  width: clamp(52px, 4.8vw, 68px);
  transform: rotate(-15deg);
  opacity: 0.86;
}

/* mockup: cup box — top-right, clear of logo/heading */
.landing-bg-wallpaper__item--cup-box-tc {
  left: 72%;
  top: 4%;
  width: clamp(72px, 6.8vw, 96px);
  transform: rotate(-6deg);
}

/* mockup: popsicle — top-right near header/bear */
.landing-bg-wallpaper__item--popsicle-tr {
  left: 81%;
  top: 6.5%;
  width: clamp(40px, 3.8vw, 54px);
  transform: rotate(-12deg);
}

/* mockup: cup box — right of hero, below header */
.landing-bg-wallpaper__item--cup-box-mid {
  left: 66%;
  top: 30%;
  width: clamp(68px, 6.2vw, 92px);
  transform: rotate(12deg);
  opacity: 0.86;
}

/* extra: single cone — mid-right hero */
.landing-bg-wallpaper__item--cone-single-mr {
  left: 71%;
  top: 40%;
  width: clamp(52px, 4.8vw, 72px);
  transform: rotate(-8deg);
}

/* extra: soft-serve — bottom-right */
.landing-bg-wallpaper__item--softserve-br {
  left: 88%;
  top: 66%;
  width: clamp(50px, 4.6vw, 68px);
  transform: rotate(9deg);
}

/* extra: cone double — bottom-left */
.landing-bg-wallpaper__item--cone-double-bl {
  left: 5%;
  top: 76%;
  width: clamp(58px, 5.2vw, 76px);
  transform: rotate(-11deg);
}

/* extra: popsicle — left mid */
.landing-bg-wallpaper__item--popsicle-mid {
  left: 12%;
  top: 50%;
  width: clamp(34px, 3.2vw, 46px);
  transform: rotate(17deg);
}

/* extra: cup box — right above cards */
.landing-bg-wallpaper__item--cup-box-cr {
  left: 83%;
  top: 50%;
  width: clamp(68px, 6.2vw, 88px);
  transform: rotate(-9deg);
}

/* extra: single cone — upper-right gap */
.landing-bg-wallpaper__item--cone-single-tr {
  left: 66%;
  top: 14%;
  width: clamp(44px, 4vw, 58px);
  transform: rotate(19deg);
}

/* fill: center-right hero gap (above cards, clear of text column) */
.landing-bg-wallpaper__item--cone-single-gap {
  left: 78%;
  top: 36%;
  width: clamp(40px, 3.6vw, 54px);
  transform: rotate(-14deg);
  opacity: 0.88;
}

/* fill: upper-center — right gutter only */
.landing-bg-wallpaper__item--popsicle-gap {
  left: 74%;
  top: 18%;
  width: clamp(34px, 3.2vw, 46px);
  transform: rotate(11deg);
  opacity: 0.86;
}

/* fill: mid-right below hero buttons */
.landing-bg-wallpaper__item--softserve-gap {
  left: 92%;
  top: 42%;
  width: clamp(46px, 4.2vw, 62px);
  transform: rotate(7deg);
  opacity: 0.84;
}

/* center cluster — below hero / above cards (never over copy column) */
.landing-bg-wallpaper__item--cup-center-m1 {
  display: block;
  left: 46%;
  top: 46%;
  width: clamp(58px, 5.4vw, 78px);
  transform: rotate(-5deg);
  opacity: 0.84;
}

.landing-bg-wallpaper__item--cone-center-m2 {
  display: block;
  left: 54%;
  top: 50%;
  width: clamp(44px, 4vw, 58px);
  transform: rotate(14deg);
  opacity: 0.82;
}

.landing-bg-wallpaper__item--popsicle-center-m3 {
  display: block;
  left: 62%;
  top: 48%;
  width: clamp(32px, 3vw, 42px);
  transform: rotate(-11deg);
  opacity: 0.8;
}

.landing-bg-wallpaper__item--softserve-center-4 {
  display: block;
  left: 50%;
  top: 56%;
  width: clamp(48px, 4.4vw, 64px);
  transform: rotate(8deg);
  opacity: 0.82;
}

.landing-bg-wallpaper__item--cone-center-5 {
  display: block;
  left: 58%;
  top: 54%;
  width: clamp(40px, 3.6vw, 52px);
  transform: rotate(-16deg);
  opacity: 0.8;
}

.landing-bg-wallpaper__item--cup-center-6 {
  display: block;
  left: 44%;
  top: 62%;
  width: clamp(52px, 4.8vw, 70px);
  transform: rotate(6deg);
  opacity: 0.84;
}

.landing-bg-wallpaper__item--popsicle-center-7 {
  display: block;
  left: 56%;
  top: 66%;
  width: clamp(30px, 2.8vw, 40px);
  transform: rotate(13deg);
  opacity: 0.78;
}

.landing-bg-wallpaper__item--cone-double-center-8 {
  display: block;
  left: 48%;
  top: 72%;
  width: clamp(46px, 4.2vw, 60px);
  transform: rotate(-9deg);
  opacity: 0.82;
}

.landing-bg-wallpaper__item--softserve-center-9 {
  display: block;
  left: 60%;
  top: 76%;
  width: clamp(44px, 4vw, 58px);
  transform: rotate(10deg);
  opacity: 0.8;
}

/* beside hero heading — center-top, clear of copy */
.landing-bg-wallpaper__item--hero-top-accent {
  display: block;
  left: 54%;
  top: calc(var(--wallpaper-header-clear) + 1.25rem);
  width: clamp(34px, 3.1vw, 46px);
  transform: rotate(-8deg);
  opacity: 0.84;
}

/* left below Aktualności card */
.landing-bg-wallpaper__item--news-bl-a {
  display: block;
  left: 3%;
  top: 81%;
  width: clamp(40px, 3.6vw, 52px);
  transform: rotate(12deg);
  opacity: 0.84;
}

.landing-bg-wallpaper__item--news-bl-b {
  display: block;
  left: 7%;
  top: 86%;
  width: clamp(36px, 3.2vw, 48px);
  transform: rotate(-10deg);
  opacity: 0.82;
}

.landing-bg-wallpaper__item--cup-fill-a {
  display: block;
  left: 16%;
  top: 41%;
  width: clamp(54px, 5vw, 72px);
  transform: rotate(-7deg);
  opacity: 0.85;
}

.landing-bg-wallpaper__item--cup-fill-b {
  display: block;
  left: 76%;
  top: 57%;
  width: clamp(50px, 4.6vw, 68px);
  transform: rotate(9deg);
  opacity: 0.83;
}

.landing-bg-wallpaper__item--cup-fill-c {
  display: block;
  left: 30%;
  top: 67%;
  width: clamp(48px, 4.4vw, 64px);
  transform: rotate(5deg);
  opacity: 0.84;
}

.landing-bg-wallpaper__item--cup-fill-d {
  display: block;
  left: 70%;
  top: 36%;
  width: clamp(46px, 4.2vw, 62px);
  transform: rotate(-11deg);
  opacity: 0.82;
}

.landing-bg-wallpaper__item--cup-fill-e {
  display: block;
  left: 6%;
  top: 58%;
  width: clamp(44px, 4vw, 58px);
  transform: rotate(13deg);
  opacity: 0.83;
}

.landing-bg-wallpaper__item--cup-fill-f {
  display: block;
  left: 48%;
  top: 27%;
  width: clamp(40px, 3.7vw, 54px);
  transform: rotate(-4deg);
  opacity: 0.8;
}

.landing-bg-wallpaper__item--mix-cone-a {
  display: block;
  left: 24%;
  top: 52%;
  width: clamp(38px, 3.4vw, 50px);
  transform: rotate(16deg);
  opacity: 0.8;
}

.landing-bg-wallpaper__item--mix-cone-b {
  display: block;
  left: 82%;
  top: 28%;
  width: clamp(34px, 3.1vw, 46px);
  transform: rotate(-13deg);
  opacity: 0.82;
}

.landing-bg-wallpaper__item--mix-soft-a {
  display: block;
  left: 38%;
  top: 78%;
  width: clamp(42px, 3.8vw, 56px);
  transform: rotate(-8deg);
  opacity: 0.8;
}

.landing-bg-wallpaper__item--mix-pop-a {
  display: block;
  left: 64%;
  top: 22%;
  width: clamp(28px, 2.6vw, 38px);
  transform: rotate(10deg);
  opacity: 0.78;
}

.landing-bg-wallpaper__item--mix-pop-b {
  display: block;
  left: 14%;
  top: 74%;
  width: clamp(26px, 2.4vw, 36px);
  transform: rotate(-15deg);
  opacity: 0.78;
}

.landing-bg-wallpaper__item--mix-soft-b {
  display: block;
  left: 88%;
  top: 78%;
  width: clamp(40px, 3.6vw, 54px);
  transform: rotate(6deg);
  opacity: 0.8;
}

/* variety pack — mixed cup shapes + ice types (v0.18.1) */
.landing-bg-wallpaper__item--var-cup-line-a {
  display: block;
  left: 20%;
  top: 24%;
  width: clamp(36px, 3.2vw, 48px);
  transform: rotate(-12deg);
  opacity: 0.82;
}

.landing-bg-wallpaper__item--var-cup-line-b {
  display: block;
  left: 86%;
  top: 44%;
  width: clamp(32px, 2.9vw, 44px);
  transform: rotate(18deg);
  opacity: 0.8;
}

.landing-bg-wallpaper__item--var-cup-triple-a {
  display: block;
  left: 42%;
  top: 38%;
  width: clamp(38px, 3.4vw, 50px);
  transform: rotate(7deg);
  opacity: 0.82;
}

.landing-bg-wallpaper__item--var-cup-triple-b {
  display: block;
  left: 10%;
  top: 44%;
  width: clamp(34px, 3.1vw, 46px);
  transform: rotate(-9deg);
  opacity: 0.8;
}

.landing-bg-wallpaper__item--var-cup-box-g {
  display: block;
  left: 52%;
  top: 32%;
  width: clamp(44px, 4vw, 58px);
  transform: rotate(-6deg);
  opacity: 0.82;
}

.landing-bg-wallpaper__item--var-cup-box-h {
  display: block;
  left: 34%;
  top: 58%;
  width: clamp(42px, 3.8vw, 56px);
  transform: rotate(11deg);
  opacity: 0.81;
}

.landing-bg-wallpaper__item--var-pop-c {
  display: block;
  left: 92%;
  top: 22%;
  width: clamp(26px, 2.4vw, 36px);
  transform: rotate(-17deg);
  opacity: 0.76;
}

.landing-bg-wallpaper__item--var-cone-c {
  display: block;
  left: 2%;
  top: 32%;
  width: clamp(38px, 3.4vw, 50px);
  transform: rotate(15deg);
  opacity: 0.82;
}

.landing-bg-wallpaper__item--var-soft-c {
  display: block;
  left: 62%;
  top: 84%;
  width: clamp(40px, 3.6vw, 54px);
  transform: rotate(-7deg);
  opacity: 0.79;
}

.landing-bg-wallpaper__item--var-double-c {
  display: block;
  left: 78%;
  top: 84%;
  width: clamp(42px, 3.8vw, 56px);
  transform: rotate(12deg);
  opacity: 0.8;
}

.hero-bear-mobile-pin {
  display: none;
}

body.brochure-only.layout-heroCentered .landing-page-shell > *:not(.landing-bg-wallpaper) {
  position: relative;
  z-index: 1;
}

body.brochure-only.layout-heroCentered .hero-copy {
  padding: 1.35rem 0 4rem;
}

@media (max-width: 900px) {
  .landing-bg-wallpaper__item {
    opacity: 0.88;
  }

  /*
   * mobile zones:
   * A top corners — OK (incl. prawy górny róg)
   * B bear band (26–62%) — no side flanks; center cleared via stack::before
   * C below bear (68%+) — scattered cluster
   */
  body.brochure-only.layout-heroCentered .landing-bg-wallpaper__item--cone-single-gap,
  body.brochure-only.layout-heroCentered .landing-bg-wallpaper__item--popsicle-gap,
  body.brochure-only.layout-heroCentered .landing-bg-wallpaper__item--softserve-gap,
  body.brochure-only.layout-heroCentered .landing-bg-wallpaper__item--softserve-ml,
  body.brochure-only.layout-heroCentered .landing-bg-wallpaper__item--cup-fill-a,
  body.brochure-only.layout-heroCentered .landing-bg-wallpaper__item--cup-fill-b,
  body.brochure-only.layout-heroCentered .landing-bg-wallpaper__item--cup-fill-c,
  body.brochure-only.layout-heroCentered .landing-bg-wallpaper__item--cup-fill-d,
  body.brochure-only.layout-heroCentered .landing-bg-wallpaper__item--mix-pop-a,
  body.brochure-only.layout-heroCentered .landing-bg-wallpaper__item--var-cup-triple-b {
    display: none;
  }

  .landing-bg-wallpaper__item--cup-box-tc {
    left: auto;
    right: 4%;
    top: var(--wallpaper-header-clear);
    width: 34px;
    transform: rotate(-8deg);
  }

  .landing-bg-wallpaper__item--popsicle-tr {
    left: auto;
    right: 2%;
    top: 11%;
    width: 30px;
    transform: rotate(-12deg);
  }

  .landing-bg-wallpaper__item--cone-single-tr {
    display: block;
    left: auto;
    right: 1%;
    top: 27%;
    width: 34px;
    transform: rotate(14deg);
  }

  .landing-bg-wallpaper__item--softserve-ml {
    left: auto;
    right: 2%;
    top: 50%;
    width: 34px;
    transform: rotate(-11deg);
    opacity: 0.82;
  }

  .landing-bg-wallpaper__item--cone-double-tl {
    left: 3%;
    top: var(--wallpaper-header-clear);
    width: 32px;
    transform: rotate(10deg);
  }

  .landing-bg-wallpaper__item--hero-top-accent {
    display: block;
    left: auto;
    right: 11%;
    top: calc(var(--wallpaper-header-clear) + 0.85rem);
    width: 26px;
    transform: rotate(-7deg);
    opacity: 0.84;
  }

  .landing-bg-wallpaper__item--news-bl-a {
    display: block;
    left: 3%;
    top: 71%;
    width: 30px;
    transform: rotate(11deg);
    opacity: 0.84;
  }

  .landing-bg-wallpaper__item--news-bl-b {
    display: block;
    left: 7%;
    top: 75%;
    width: 28px;
    transform: rotate(-9deg);
    opacity: 0.82;
  }

  .landing-bg-wallpaper__item--cup-fill-a {
    display: block;
    left: 2%;
    top: 58%;
    width: 36px;
    transform: rotate(-6deg);
    opacity: 0.84;
  }

  .landing-bg-wallpaper__item--cup-fill-b {
    display: block;
    left: auto;
    right: 3%;
    top: 62%;
    width: 34px;
    transform: rotate(8deg);
    opacity: 0.82;
  }

  .landing-bg-wallpaper__item--cup-fill-c {
    display: block;
    left: 18%;
    top: 66%;
    width: 32px;
    transform: rotate(5deg);
    opacity: 0.83;
  }

  .landing-bg-wallpaper__item--cup-fill-d {
    display: block;
    left: 48%;
    top: 60%;
    width: 30px;
    transform: rotate(-9deg);
    opacity: 0.8;
  }

  .landing-bg-wallpaper__item--cup-fill-e {
    display: block;
    left: 32%;
    top: 72%;
    width: 28px;
    transform: rotate(11deg);
    opacity: 0.82;
  }

  .landing-bg-wallpaper__item--cup-fill-f {
    display: block;
    left: auto;
    right: 18%;
    top: calc(var(--wallpaper-header-clear) + 2rem);
    width: 26px;
    transform: rotate(-5deg);
    opacity: 0.8;
  }

  .landing-bg-wallpaper__item--mix-cone-a {
    display: block;
    left: 8%;
    top: 80%;
    width: 28px;
    transform: rotate(14deg);
    opacity: 0.8;
  }

  .landing-bg-wallpaper__item--mix-cone-b {
    display: block;
    left: auto;
    right: 8%;
    top: 78%;
    width: 26px;
    transform: rotate(-11deg);
    opacity: 0.8;
  }

  .landing-bg-wallpaper__item--mix-soft-a {
    display: block;
    left: 58%;
    top: 78%;
    width: 30px;
    transform: rotate(-7deg);
    opacity: 0.78;
  }

  .landing-bg-wallpaper__item--mix-pop-a {
    display: block;
    left: 24%;
    top: 52%;
    width: 22px;
    transform: rotate(12deg);
    opacity: 0.76;
  }

  .landing-bg-wallpaper__item--mix-pop-b {
    display: block;
    left: 72%;
    top: 68%;
    width: 20px;
    transform: rotate(-14deg);
    opacity: 0.76;
  }

  .landing-bg-wallpaper__item--mix-soft-b {
    display: block;
    left: 44%;
    top: 82%;
    width: 28px;
    transform: rotate(6deg);
    opacity: 0.78;
  }

  .landing-bg-wallpaper__item--var-cup-line-a {
    display: block;
    left: 6%;
    top: 22%;
    width: 24px;
    transform: rotate(-10deg);
    opacity: 0.82;
  }

  .landing-bg-wallpaper__item--var-cup-line-b {
    display: block;
    left: auto;
    right: 14%;
    top: 44%;
    width: 22px;
    transform: rotate(14deg);
    opacity: 0.8;
  }

  .landing-bg-wallpaper__item--var-cup-triple-a {
    display: block;
    left: 38%;
    top: 68%;
    width: 26px;
    transform: rotate(8deg);
    opacity: 0.82;
  }

  .landing-bg-wallpaper__item--var-cup-triple-b {
    display: block;
    left: 12%;
    top: 48%;
    width: 24px;
    transform: rotate(-8deg);
    opacity: 0.8;
  }

  .landing-bg-wallpaper__item--var-cup-box-g {
    display: block;
    left: 64%;
    top: 74%;
    width: 32px;
    transform: rotate(-5deg);
    opacity: 0.82;
  }

  .landing-bg-wallpaper__item--var-cup-box-h {
    display: block;
    left: 28%;
    top: 84%;
    width: 30px;
    transform: rotate(10deg);
    opacity: 0.81;
  }

  .landing-bg-wallpaper__item--var-pop-c {
    display: block;
    left: 4%;
    top: 16%;
    width: 18px;
    transform: rotate(-14deg);
    opacity: 0.76;
  }

  .landing-bg-wallpaper__item--var-cone-c {
    display: block;
    left: auto;
    right: 24%;
    top: 24%;
    width: 26px;
    transform: rotate(12deg);
    opacity: 0.82;
  }

  .landing-bg-wallpaper__item--var-soft-c {
    display: block;
    left: 78%;
    top: 84%;
    width: 28px;
    transform: rotate(-6deg);
    opacity: 0.78;
  }

  .landing-bg-wallpaper__item--var-double-c {
    display: block;
    left: 52%;
    top: 88%;
    width: 30px;
    transform: rotate(9deg);
    opacity: 0.8;
  }

  .landing-bg-wallpaper__item--cone-single-gap {
    display: block;
    left: auto;
    right: 10%;
    top: 32%;
    width: 30px;
    transform: rotate(-9deg);
    opacity: 0.84;
  }

  .landing-bg-wallpaper__item--popsicle-gap {
    display: block;
    left: auto;
    right: 22%;
    top: 38%;
    width: 24px;
    transform: rotate(15deg);
    opacity: 0.82;
  }

  .landing-bg-wallpaper__item--softserve-gap {
    display: block;
    left: auto;
    right: 6%;
    top: 46%;
    width: 32px;
    transform: rotate(8deg);
    opacity: 0.82;
  }

  .landing-bg-wallpaper__item--cup-box-mid {
    display: block;
    left: auto;
    right: 4%;
    top: 58%;
    width: 44px;
    transform: rotate(6deg);
    opacity: 0.78;
  }

  .landing-bg-wallpaper__item--cup-center-m1 {
    display: block;
    left: 5%;
    top: 70%;
    width: 38px;
    transform: rotate(-6deg);
    opacity: 0.84;
  }

  .landing-bg-wallpaper__item--popsicle-center-m3 {
    display: block;
    left: 22%;
    top: 72%;
    width: 24px;
    transform: rotate(11deg);
    opacity: 0.82;
  }

  .landing-bg-wallpaper__item--softserve-center-4 {
    display: block;
    left: 38%;
    top: 71%;
    width: 32px;
    transform: rotate(7deg);
    opacity: 0.82;
  }

  .landing-bg-wallpaper__item--cone-center-m2 {
    display: block;
    left: 54%;
    top: 73%;
    width: 30px;
    transform: rotate(-13deg);
    opacity: 0.82;
  }

  .landing-bg-wallpaper__item--cone-center-5 {
    display: block;
    left: 70%;
    top: 71%;
    width: 28px;
    transform: rotate(15deg);
    opacity: 0.8;
  }

  .landing-bg-wallpaper__item--cup-center-6 {
    display: block;
    left: 12%;
    top: 78%;
    width: 36px;
    transform: rotate(-4deg);
    opacity: 0.82;
  }

  .landing-bg-wallpaper__item--popsicle-center-7 {
    display: block;
    left: 46%;
    top: 79%;
    width: 22px;
    transform: rotate(-12deg);
    opacity: 0.8;
  }

  .landing-bg-wallpaper__item--cone-double-center-8 {
    display: block;
    left: 62%;
    top: 80%;
    width: 30px;
    transform: rotate(9deg);
    opacity: 0.82;
  }

  .landing-bg-wallpaper__item--softserve-center-9 {
    display: block;
    left: 28%;
    top: 84%;
    width: 30px;
    transform: rotate(-8deg);
    opacity: 0.8;
  }

  .landing-bg-wallpaper__item--softserve-br {
    display: block;
    left: 22%;
    top: 78%;
    width: 40px;
    transform: rotate(-10deg);
  }

  .landing-bg-wallpaper__item--cup-box-cr {
    display: block;
    left: 72%;
    top: 76%;
    width: 44px;
    transform: rotate(7deg);
  }

  .landing-bg-wallpaper__item--popsicle-mid {
    display: block;
    left: 50%;
    top: 82%;
    width: 32px;
    transform: translateX(-50%) rotate(-14deg);
  }

  .landing-bg-wallpaper__item--cone-single-mr {
    display: block;
    left: auto;
    right: 8%;
    top: 70%;
    width: 34px;
    transform: rotate(11deg);
  }

  .landing-bg-wallpaper__item--cone-double-bl {
    display: block;
    left: 5%;
    top: 86%;
    width: 42px;
    transform: rotate(-8deg);
  }

  body.brochure-only.layout-heroCentered .hero-action-menu {
    width: 100%;
    margin-top: 0.5rem;
  }

  body.brochure-only.layout-heroCentered .hero-action-menu__stack {
    --bear-mobile-w: min(280px, 86vw);
    --bear-h: calc(var(--bear-mobile-w) * var(--bear-mobile-aspect-h, 414) / var(--bear-mobile-aspect-w, 427));
    --bear-pin-top: -13px;
    --bear-overlap: 0px;
    position: relative;
    width: 100%;
    overflow: visible;
    padding-top: calc(var(--bear-h) + var(--bear-pin-top) - var(--bear-overlap));
    isolation: isolate;
  }

  body.brochure-only.layout-heroCentered .hero-action-menu__stack::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: min(320px, 94vw);
    height: calc(var(--bear-h) + 0.75rem);
    background: var(--lk-background);
    z-index: 0;
    pointer-events: none;
  }

  body.brochure-only.layout-heroCentered .hero-bear-mobile-pin {
    display: block;
    position: absolute;
    left: 50%;
    top: var(--bear-pin-top);
    transform: translateX(-50%);
    width: var(--bear-mobile-w);
    max-width: 300px;
    z-index: 2;
    pointer-events: none;
    line-height: 0;
  }

  body.brochure-only.layout-heroCentered .hero-bear-mobile-pin img {
    width: 100%;
    height: auto;
    display: block;
    background: transparent;
    border: 0;
    box-shadow: none;
    filter: none;
  }

  body.brochure-only.layout-heroCentered .hero-action-menu__stack .btn-accent {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-top: 0;
  }

  body.brochure-only.layout-heroCentered .hero-subtitle {
    margin-bottom: 1.25rem;
  }

  body.brochure-only.layout-heroCentered .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.75rem;
    position: relative;
    z-index: 3;
    margin-top: 2rem;
    overflow: visible;
  }

  /* footer: stack — no overlapping social + email */
  .landing-footer-wrap .footer-mockup-inner {
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    min-height: 0;
    padding-inline: 0.5rem;
  }

  .landing-footer-wrap .footer-social {
    order: 1;
    justify-content: center;
    padding-left: 0;
    gap: 1.35rem;
  }

  .landing-footer-wrap .footer-email {
    position: static;
    transform: none;
    order: 2;
    justify-content: center;
    font-size: 0.95rem;
  }

  /* hero: no left inset clipping buttons on narrow screens */
  body.brochure-only.layout-heroCentered .hero-copy {
    padding: 0.75rem 0 0.75rem;
    padding-inline: 0;
    max-width: 100%;
    overflow: visible;
  }

  body.brochure-only.layout-heroCentered .hero h1 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  body.brochure-only.layout-heroCentered .hero-tagline-line:last-child {
    white-space: normal;
  }

  body.brochure-only.layout-heroCentered .hero-actions .btn {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin-inline: 0;
  }
}

body.brochure-only.layout-heroCentered .hero h1.hero-tagline-stack {
  display: flex;
  flex-direction: column;
  gap: 0.05em;
}

body.brochure-only.layout-heroCentered .hero-tagline-line {
  display: block;
  white-space: nowrap;
}

body.brochure-only.layout-heroCentered .hero h1 {
  font-family: var(--lk-font-heading);
  font-size: clamp(2.75rem, 7.2vw, 4.45rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-top: 0.35rem;
}

body.brochure-only.layout-heroCentered .primary-nav {
  gap: 2.15rem;
}

body.brochure-only.layout-heroCentered .primary-nav a {
  font-family: var(--lk-font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.045em;
}

@media (min-width: 901px) {
  body.brochure-only.layout-heroCentered .hero-copy {
    padding-left: 2.85rem;
  }

  body.brochure-only.layout-heroCentered .info-cards > .container.cards-3 {
    transform: translateX(-1.35rem);
  }
}

.page-section h1,
.card h2.h3 {
  font-family: var(--lk-font-heading);
}

.card h2.h3 {
  font-size: 1.15rem;
  margin-top: 0;
}

.card h2.h3 a { text-decoration: none; }

/* —— layout: horizontalBands (Lodojadacz) —— */
.layout-horizontalBands {
  background: var(--lk-background);
  color: var(--lk-text);
}

.layout-horizontalBands .site-header {
  background: var(--lk-band-top);
  border-bottom: 0;
}

.layout-horizontalBands .header-inner {
  grid-template-columns: 1fr auto 1fr;
}

.layout-horizontalBands .site-logo {
  justify-self: center;
  grid-column: 2;
}

.layout-horizontalBands .nav-toggle {
  justify-self: end;
  grid-column: 3;
}

.layout-horizontalBands .primary-nav {
  justify-self: center;
}

.layout-horizontalBands .header-cta {
  display: none;
}

.bands-top {
  height: 0.65rem;
  background: var(--lk-band-top);
}

.bands-mid {
  height: 0.65rem;
  background: var(--lk-background);
}

.bands-bottom {
  background: var(--lk-band-bottom);
  padding: 2rem 0 2.5rem;
}

.bands-hero {
  background: var(--lk-background);
  padding: 1.5rem 0 2rem;
  text-align: center;
}

.bands-logo-row {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.site-logo-lodojadacz {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.brand-lodo {
  font-family: var(--lk-font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.75rem);
  letter-spacing: 0.08em;
  color: var(--lk-text);
}

.brand-jadacz {
  font-family: var(--lk-font-script);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--lk-text);
  margin-top: 0.1rem;
}

.bands-intro h1 {
  font-family: var(--lk-font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  margin: 0 0 0.65rem;
}

.bands-subtitle {
  font-family: var(--lk-font-script);
  font-size: 1.25rem;
  margin: 0 0 1.25rem;
}

.bands-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.bands-column h2 {
  font-family: var(--lk-font-heading);
  font-size: 1.35rem;
  margin: 0 0 1rem;
}

.flavor-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.flavor-list li {
  display: grid;
  gap: 0.15rem;
}

.flavor-list strong {
  font-family: var(--lk-font-heading);
}

.flavor-list span {
  font-size: 0.92rem;
  opacity: 0.85;
}

.bands-loyalty {
  text-align: center;
  margin-bottom: 1.5rem;
}

.bands-loyalty h2 {
  font-family: var(--lk-font-heading);
  margin: 0 0 0.35rem;
}

.bands-contact-bar {
  text-align: center;
  font-size: 0.95rem;
}

.bands-contact-bar p {
  margin: 0.35rem 0;
}

.stamp-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.5rem;
  max-width: 280px;
  margin: 1rem auto 0;
}

.stamp-slot {
  aspect-ratio: 1;
  border-radius: 999px;
  border: 2px solid var(--lk-text);
  background: #fff;
  display: grid;
  place-items: center;
  opacity: 0.45;
}

.stamp-slot.stamp-filled {
  opacity: 1;
}

.stamp-slot img {
  width: 70%;
  height: 70%;
}

.layout-horizontalBands .stamp-grid {
  background: transparent;
}

.layout-horizontalBands .bands-loyalty .stamp-grid .stamp-slot {
  border-color: var(--lk-text);
}

/* —— layout: natureBanner (Lodowiec) —— */
.layout-natureBanner {
  background: var(--lk-background);
  color: var(--lk-text);
}

.layout-natureBanner .site-header {
  background: var(--lk-nature-sky);
  border-bottom: 0;
}

.nature-banner {
  position: relative;
  overflow: hidden;
  min-height: clamp(280px, 42vw, 420px);
  display: flex;
  align-items: center;
}

.nature-banner-scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.nature-sky {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--lk-nature-sky) 0%, color-mix(in srgb, var(--lk-nature-sky) 70%, #fff) 100%);
}

.nature-hills {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 38%;
  background: var(--lk-nature-hill);
  border-radius: 50% 50% 0 0 / 18% 18% 0 0;
}

.nature-mountains {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 28%;
  height: 22%;
  background:
    linear-gradient(135deg, transparent 50%, var(--lk-mountain) 50%) 0 0 / 33% 100% no-repeat,
    linear-gradient(-135deg, transparent 50%, var(--lk-mountain) 50%) 50% 0 / 33% 100% no-repeat,
    linear-gradient(135deg, transparent 50%, color-mix(in srgb, var(--lk-mountain) 80%, #fff) 50%) 25% 0 / 25% 85% no-repeat;
  opacity: 0.85;
}

.nature-banner-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 0;
}

.site-logo-lodowiec {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.brand-lodowiec {
  font-family: var(--lk-font-heading);
  font-weight: 900;
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  letter-spacing: 0.06em;
  color: var(--lk-text);
  text-shadow:
    -1px -1px 0 #fff,
    1px -1px 0 #fff,
    -1px 1px 0 #fff,
    1px 1px 0 #fff;
}

.brand-cafe {
  font-family: var(--lk-font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: 1rem;
  align-self: flex-end;
  margin-top: 0.15rem;
}

.nature-tagline {
  font-family: var(--lk-font-display);
  font-weight: 300;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  line-height: 1.1;
}

.nature-subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
  margin: 0 0 1.25rem;
}

.nature-btn-outline {
  background: rgba(255, 255, 255, 0.85);
}

.nature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.nature-card-flavors .flavor-list {
  gap: 0.55rem;
}

.nature-card-loyalty .stamp-grid {
  max-width: 240px;
}

.nature-card-loyalty .stamp-slot {
  border-color: color-mix(in srgb, var(--lk-text) 40%, transparent);
  background: color-mix(in srgb, var(--lk-nature-sky) 35%, #fff);
}

.nature-address {
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .bands-grid,
  .nature-grid,
  .nature-banner-inner {
    grid-template-columns: 1fr;
  }

  .nature-banner-inner {
    text-align: center;
  }

  .site-logo-lodowiec {
    align-items: center;
    margin-inline: auto;
  }

  .layout-horizontalBands .hero-actions,
  .layout-natureBanner .hero-actions {
    justify-content: center;
  }
}

/* v0.19 — brochure wallpaper even grid (positions from inc/wallpaper-layout.php) */
body.brochure-only.layout-heroCentered .landing-bg-wallpaper__item[class*="--wp-"] {
  left: var(--wp-d-left, auto);
  right: var(--wp-d-right, auto);
  top: var(--wp-d-top);
  width: var(--wp-d-width);
  transform: rotate(var(--wp-d-rot));
  opacity: var(--wp-d-op, 0.82);
  transform-origin: center center;
}

@media (min-width: 901px) {
  body.brochure-only.layout-heroCentered .landing-bg-wallpaper__item--hide-desktop {
    display: none;
  }
}

@media (max-width: 900px) {
  body.brochure-only.layout-heroCentered .landing-bg-wallpaper__item[class*="--wp-"] {
    left: var(--wp-m-left, var(--wp-d-left, auto));
    right: var(--wp-m-right, var(--wp-d-right, auto));
    top: var(--wp-m-top, var(--wp-d-top));
    width: var(--wp-m-width, var(--wp-d-width));
    transform: rotate(var(--wp-m-rot, var(--wp-d-rot)));
    opacity: var(--wp-m-op, var(--wp-d-op, 0.82));
  }

  body.brochure-only.layout-heroCentered .landing-bg-wallpaper__item--hide-mobile {
    display: none;
  }
}

/* —— O nas (inner page) —— */
.about-page-section {
  padding-top: 2rem;
  padding-bottom: 3.5rem;
}

.about-page__header {
  margin-bottom: 2rem;
  max-width: 40rem;
}

.about-page__title {
  font-family: var(--lk-font-heading);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.about-page__kicker,
.menu-page__kicker,
.aktualnosci-page__kicker,
.konkursy-page__kicker,
.galeria-page__kicker,
.kontakt-page__kicker {
  margin: 0 0 0.45rem;
  font-family: var(--lk-font-heading);
  font-size: clamp(1.65rem, 4.2vw, 2.35rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.03em;
}

.about-page__intro,
.menu-page__intro,
.aktualnosci-page__intro,
.konkursy-page__intro,
.galeria-page__intro,
.kontakt-page__intro {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.5;
}

.about-page__intro {
  max-width: 28rem;
}

.about-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 300px);
  gap: 2rem 2.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.about-page__copy p {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.65;
}

.about-page__copy p:last-of-type {
  margin-bottom: 0;
}

.about-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.about-page__actions .btn {
  border-radius: 0.9rem;
  min-width: 11rem;
  padding: 0.8rem 1.45rem;
}

.about-page__actions .btn-outline {
  background: var(--lk-background);
}

.about-page__visual {
  margin: 0;
  line-height: 0;
  justify-self: end;
  width: min(100%, 280px);
}

.about-page__visual img {
  width: 100%;
  height: auto;
  display: block;
}

.about-page__pillars {
  gap: 1.15rem;
}

.about-pillar {
  background: var(--lk-card);
  border: 2px solid var(--lk-text);
  border-radius: 1.35rem;
  padding: 1.2rem 1.15rem 1.3rem;
  min-height: 100%;
}

.about-pillar h2 {
  font-family: var(--lk-font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 0.55rem;
}

.about-pillar p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

body.brochure-only.layout-heroCentered .about-page-section {
  flex: 1;
}

@media (min-width: 901px) {
  body.brochure-only.layout-heroCentered .about-page-section .container {
    padding-left: 2.85rem;
  }
}

@media (max-width: 768px) {
  .about-page__layout {
    grid-template-columns: 1fr;
  }

  .about-page__visual {
    order: -1;
    justify-self: center;
    width: min(240px, 72vw);
  }

  .about-page__actions .btn {
    flex: 1 1 100%;
    max-width: 320px;
  }
}

/* —— Menu (inner page) —— */
.menu-page-section {
  padding-top: 2rem;
  padding-bottom: 3.5rem;
}

.menu-page__header {
  margin-bottom: 2rem;
  max-width: 36rem;
}

.menu-page__title {
  font-family: var(--lk-font-heading);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.65rem;
}

.menu-page__kicker {
  margin: 0 0 0.45rem;
}

.menu-page__intro {
  margin: 0;
}

.menu-page__grid {
  gap: 1.15rem;
}

.menu-flavor {
  position: relative;
  background: var(--lk-card);
  border: 2px solid var(--lk-text);
  border-radius: 1.35rem;
  padding: 1.2rem 1.15rem 1.25rem;
  box-shadow: none;
}

.menu-flavor--highlight {
  border-color: var(--lk-accent);
}

.menu-flavor__badge {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--lk-accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-flavor h2.h3 {
  margin: 0 0 0.45rem;
  font-family: var(--lk-font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.menu-flavor p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

body.brochure-only.layout-heroCentered .menu-page-section {
  flex: 1;
}

@media (min-width: 901px) {
  body.brochure-only.layout-heroCentered .menu-page-section .container {
    padding-left: 2.85rem;
  }
}

/* —— Aktualności (inner page) —— */
.aktualnosci-page-section {
  padding-top: 2rem;
  padding-bottom: 3.5rem;
}

.aktualnosci-page__header {
  margin-bottom: 2rem;
  max-width: 36rem;
}

.aktualnosci-page__title {
  font-family: var(--lk-font-heading);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.65rem;
}

.aktualnosci-page__kicker {
  margin: 0 0 0.45rem;
}

.aktualnosci-page__intro {
  margin: 0;
}

.aktualnosci-page__grid {
  gap: 1.15rem;
}

.aktualnosci-page__empty,
.konkursy-page__empty {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 32rem;
}

.news-card {
  background: var(--lk-card);
  border: 2px solid var(--lk-text);
  border-radius: 1.35rem;
  padding: 1.2rem 1.15rem 1.25rem;
  box-shadow: none;
}

.news-card__date {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.72;
}

.news-card h2.h3 {
  margin: 0 0 0.45rem;
  font-family: var(--lk-font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.news-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

body.brochure-only.layout-heroCentered .aktualnosci-page-section {
  flex: 1;
}

@media (min-width: 901px) {
  body.brochure-only.layout-heroCentered .aktualnosci-page-section .container {
    padding-left: 2.85rem;
  }
}

/* —— Konkursy (inner page) —— */
.konkursy-page-section {
  padding-top: 2rem;
  padding-bottom: 3.5rem;
}

.konkursy-page__header {
  margin-bottom: 2rem;
  max-width: 36rem;
}

.konkursy-page__title {
  font-family: var(--lk-font-heading);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.65rem;
}

.konkursy-page__kicker {
  margin: 0 0 0.45rem;
}

.konkursy-page__intro {
  margin: 0;
}

.konkursy-page__grid {
  gap: 1.15rem;
}

.contest-card {
  position: relative;
  background: var(--lk-card);
  border: 2px solid var(--lk-text);
  border-radius: 1.35rem;
  padding: 1.2rem 1.15rem 1.25rem;
  box-shadow: none;
}

.contest-card--highlight {
  border-color: var(--lk-accent);
}

.contest-card__badge {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--lk-accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contest-card h2.h3 {
  margin: 0 0 0.45rem;
  font-family: var(--lk-font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.contest-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

body.brochure-only.layout-heroCentered .konkursy-page-section {
  flex: 1;
}

@media (min-width: 901px) {
  body.brochure-only.layout-heroCentered .konkursy-page-section .container {
    padding-left: 2.85rem;
  }
}

/* —— Galeria (inner page) —— */
.galeria-page-section {
  padding-top: 2rem;
  padding-bottom: 3.5rem;
}

.galeria-page__header {
  margin-bottom: 2rem;
  max-width: 38rem;
}

.galeria-page__title {
  font-family: var(--lk-font-heading);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.65rem;
}

.galeria-page__grid {
  gap: 1.15rem;
}

.gallery-card {
  background: var(--lk-card);
  border: 2px solid var(--lk-text);
  border-radius: 1.35rem;
  padding: 0.75rem 0.75rem 1.15rem;
  box-shadow: none;
}

.gallery-card__media {
  margin: 0 0 1rem;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 2px solid color-mix(in srgb, var(--lk-text) 16%, transparent);
  border-radius: 1rem;
  background: color-mix(in srgb, var(--lk-background) 62%, #fff);
}

.gallery-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.gallery-card__placeholder {
  display: grid;
  place-items: center;
  min-height: 10.5rem;
  margin-bottom: 1rem;
  border: 2px dashed color-mix(in srgb, var(--lk-text) 38%, transparent);
  border-radius: 1rem;
  background:
    radial-gradient(circle at 20% 24%, color-mix(in srgb, var(--lk-accent) 52%, transparent) 0 12%, transparent 13%),
    radial-gradient(circle at 82% 18%, color-mix(in srgb, var(--lk-text) 16%, transparent) 0 9%, transparent 10%),
    linear-gradient(135deg, color-mix(in srgb, var(--lk-background) 62%, #fff), #fff);
  color: color-mix(in srgb, var(--lk-text) 62%, transparent);
}

.gallery-card__placeholder span {
  font-family: var(--lk-font-heading);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.gallery-card h2.h3 {
  margin: 0 0 0.45rem;
  font-family: var(--lk-font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.gallery-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

.gallery-card__source {
  margin-top: 0.7rem !important;
  font-size: 0.72rem !important;
  font-weight: 800;
  letter-spacing: 0.06em;
  opacity: 0.62;
  text-transform: uppercase;
}

body.brochure-only.layout-heroCentered .galeria-page-section {
  flex: 1;
}

@media (min-width: 901px) {
  body.brochure-only.layout-heroCentered .galeria-page-section .container {
    padding-left: 2.85rem;
  }
}

/* —— Kontakt (inner page) —— */
.kontakt-page-section {
  padding-top: 2rem;
  padding-bottom: 3.5rem;
}

.kontakt-page__header {
  margin-bottom: 2rem;
  max-width: 36rem;
}

.kontakt-page__title {
  font-family: var(--lk-font-heading);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.65rem;
}

.kontakt-page__kicker {
  margin: 0 0 0.45rem;
}

.kontakt-page__intro {
  margin: 0;
}

.contact-grid--page {
  gap: 2rem 2.5rem;
}

.contact-details__heading,
.contact-form__heading {
  margin: 0 0 1rem;
  font-family: var(--lk-font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-details__row {
  margin: 0 0 0.85rem;
  font-size: 0.98rem;
  line-height: 1.55;
}

.contact-details__row a {
  color: inherit;
}

.contact-map {
  margin: 1rem 0 0.55rem;
  overflow: hidden;
  border: 2px solid color-mix(in srgb, var(--lk-text) 14%, transparent);
  border-radius: 1rem;
  background: color-mix(in srgb, var(--lk-background) 62%, #fff);
}

.contact-map iframe {
  display: block;
  width: 100%;
  min-height: 15rem;
  border: 0;
}

.contact-map-link {
  display: inline-flex;
  margin-bottom: 0.75rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-details__hours {
  margin: 2.25rem 0 0;
  font-size: 0.98rem;
}

.contact-details__hours strong {
  display: block;
  margin-bottom: 0.55rem;
  font-family: var(--lk-font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(26, 43, 74, 0.1);
  font-size: 0.95rem;
}

.contact-hours-list li:last-child {
  border-bottom: 0;
}

.contact-details__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.contact-social-link {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border: 2px solid var(--lk-text);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.contact-grid--page .contact-form {
  border: 2px solid var(--lk-text);
  border-radius: 1.35rem;
  padding: 1.25rem 1.15rem 1.35rem;
  box-shadow: none;
}

.contact-grid--page .contact-form input,
.contact-grid--page .contact-form textarea,
.contact-grid--page .contact-form select {
  border: 2px solid rgba(26, 43, 74, 0.12);
  border-radius: 0.65rem;
}

.contact-grid--page .btn {
  border-radius: 0.9rem;
  min-width: 11rem;
  padding: 0.8rem 1.45rem;
}

body.brochure-only.layout-heroCentered .kontakt-page-section {
  flex: 1;
}

@media (min-width: 901px) {
  body.brochure-only.layout-heroCentered .kontakt-page-section .container {
    padding-left: 2.85rem;
  }
}
