/*
 * CORPORATE PREMIUM — Navy & Gold  v7.1
 * Justyna Czudek – Trenerka Personalna / Corporate Wellness
 */

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

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Navy — kolor wiodący */
  --navy:        #0B1E3D;
  --navy-mid:    #1A3260;
  --navy-light:  #2A4A8A;
  --navy-pale:   #EEF2FA;

  /* Gold — premium akcent */
  --gold:        #B8913F;
  --gold-mid:    #D4AA58;
  --gold-light:  #F0D98B;
  --gold-pale:   #FBF6E9;

  /* Neutrals */
  --bg:          #FFFFFF;
  --bg-subtle:   #F6F8FC;
  --bg-dark:     #0B1E3D;
  --text:        #0D1B2A;
  --text-mid:    #334155;
  --text-muted:  #64748B;
  --border:      #CBD5E1;
  --border-light:#E2E8F0;

  /* Utility */
  --radius:      6px;
  --radius-lg:   10px;
  --shadow:      0 2px 12px rgba(11,30,61,.08);
  --shadow-lg:   0 8px 40px rgba(11,30,61,.14);
  --transition:  all .18s ease;
}

/* ============================================================
   BASE
   ============================================================ */
html { font-size: 100%; line-height: 1.6; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--navy) !important;
  padding: 9px 0 !important;
  font-size: 13px !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
}
.top-bar .container {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
}
.top-bar .top-bar-info {
  display: flex !important;
  gap: 24px !important;
  align-items: center !important;
}
.top-bar .top-bar-info span,
.top-bar .top-bar-info a {
  color: rgba(255,255,255,.75) !important;
  font-size: 13px !important;
  text-decoration: none !important;
  letter-spacing: .2px !important;
}
.top-bar .top-bar-info a:hover { color: var(--gold-light) !important; }
.top-bar .top-bar-location {
  background: rgba(255,255,255,.1) !important;
  padding: 3px 12px !important;
  border-radius: 20px !important;
  font-size: 12px !important;
  color: rgba(255,255,255,.75) !important;
  font-weight: 600 !important;
  letter-spacing: .3px !important;
}

/* Accessibility controls in topbar */
.a11y-controls { margin-left: auto; display: flex; gap: 6px; align-items: center; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: #fff !important;
  border-bottom: 1px solid var(--border-light) !important;
  box-shadow: 0 1px 0 var(--border-light) !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 100 !important;
}
.site-header .container {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px !important;
  padding: 12px 24px !important;
  min-height: 80px !important;
  height: auto !important;
}
.site-branding { flex: 1; min-width: 0; }
.site-description { display: none !important; }
.site-title { margin: 0 !important; padding: 0 !important; }
.site-title a {
  font-size: 22px !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  text-decoration: none !important;
  letter-spacing: -.3px !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
  display: inline-block !important;
}
.site-title-main {
  display: block !important;
  font-size: 22px !important;
  color: var(--navy) !important;
}
.site-title-sub {
  display: block !important;
  font-size: 12px !important;
  color: var(--text-muted) !important;
  font-weight: 500 !important;
  letter-spacing: .3px !important;
  text-transform: uppercase !important;
}

/* Nav */
.main-navigation {
  flex-shrink: 0 !important;
  border-top: none !important;
  width: auto !important;
  padding: 0 !important;
}
.nav-menu {
  display: flex !important;
  list-style: none !important;
  gap: 2px !important;
  margin: 0 !important;
  padding: 0 !important;
  align-items: center !important;
}
.nav-menu li a {
  display: block !important;
  padding: 8px 16px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--text-mid) !important;
  text-decoration: none !important;
  border-radius: var(--radius) !important;
  transition: var(--transition) !important;
  letter-spacing: .1px !important;
}
.nav-menu li a:hover,
.nav-menu li.is-active a {
  background: var(--navy-pale) !important;
  color: var(--navy) !important;
}
.nav-menu li:last-child a {
  background: var(--navy) !important;
  color: #fff !important;
  padding: 9px 22px !important;
  border-radius: var(--radius) !important;
}
.nav-menu li:last-child a:hover {
  background: var(--navy-mid) !important;
}

/* Mobile toggle */
.menu-toggle {
  display: none;
  background: var(--navy);
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  padding: 8px 12px;
  cursor: pointer;
  color: #fff;
}

.menu-icon span {
  background: #fff !important;
}

/* Menu otwarte - nadpisz !important z media query */
.nav-menu.active {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--navy);
  padding: 16px 20px;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.nav-menu.active li a {
  color: #fff !important;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ============================================================
   SKIP LINK
   ============================================================ */
.skip-link {
  position: absolute;
  top: -60px;
  left: 0;
  background: var(--navy);
  color: #fff;
  padding: 10px 18px;
  text-decoration: none;
  z-index: 9999;
  border-radius: 0 0 var(--radius) 0;
  font-weight: 600;
  font-size: 14px;
  transition: top .15s;
}
.skip-link:focus { top: 0; outline: 2px solid var(--gold); outline-offset: 2px; }

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */
.lp-container  { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.lp-section    { padding: 80px 0; background: var(--bg); }
.lp-section--alt  { background: var(--bg-subtle); }
.lp-section--teal { background: var(--navy); color: #fff; }
.lp-section--teal .lp-section-label,
.lp-section--teal .lp-card__title,
.lp-section--teal .lp-card__desc { color: #fff; }
.lp-section--teal .lp-link { color: var(--gold-light); }
.lp-section--teal .lp-link:hover { color: #fff; }
.lp-section--teal .lp-card { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); }
.lp-center     { text-align: center; }
.lp-mt         { margin-top: 40px; }
.lp-grid       { display: grid; gap: 24px; }
.lp-grid--2    { grid-template-columns: repeat(2, 1fr); }
.lp-grid--3    { grid-template-columns: repeat(3, 1fr); }
.lp-grid--4    { grid-template-columns: repeat(4, 1fr); }
.lp-grid--centered { align-items: center; }

/* Section label */
h2.lp-section-label,
p.lp-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

/* Section title */
.lp-section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.5px;
  line-height: 1.2;
  margin-bottom: 16px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.lp-btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: .3px;
}
.lp-btn--primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.lp-btn--primary:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(11,30,61,.25);
  color: #fff;
  text-decoration: none;
}
.lp-btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.lp-btn--ghost:hover {
  border-color: var(--navy);
  background: var(--navy-pale);
  color: var(--navy);
  text-decoration: none;
}
.lp-btn--gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.lp-btn--gold:hover {
  background: var(--gold-mid);
  border-color: var(--gold-mid);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184,145,63,.35);
  color: #fff;
  text-decoration: none;
}
.lp-btn--white {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
  font-weight: 700;
}
.lp-btn--white:hover {
  background: var(--gold-pale);
  border-color: var(--gold-light);
  color: var(--navy);
  text-decoration: none;
}

/* ============================================================
   HERO
   ============================================================ */
.lp-hero {
  background: var(--navy);
  background-image: url('/wp-content/uploads/2024/05/16.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
}
/* Dark overlay so text is always readable over photo */
.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(11,30,61,.90) 0%,
    rgba(11,30,61,.80) 45%,
    rgba(11,30,61,.40) 100%
  );
  pointer-events: none;
  z-index: 0;
}
.lp-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.lp-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  background: rgba(184,145,63,.15);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(184,145,63,.3);
}
.lp-hero__title {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  line-height: 1.06;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.lp-hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,.78);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
  font-weight: 400;
}
.lp-hero__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.lp-hero__btns .lp-btn--primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  font-size: 14px;
  padding: 14px 30px;
  font-weight: 700;
}
.lp-hero__btns .lp-btn--primary:hover {
  background: var(--gold-mid);
  border-color: var(--gold-mid);
  box-shadow: 0 6px 24px rgba(184,145,63,.4);
}
.lp-hero__btns .lp-btn--ghost {
  border-color: rgba(255,255,255,.35);
  color: #fff;
  font-size: 14px;
  padding: 14px 30px;
}
.lp-hero__btns .lp-btn--ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
  color: #fff;
}

/* Hero right — photo + stats */
.lp-hero__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.lp-hero__image { width: 100%; text-align: center; }
.lp-hero__img {
  width: 100%;
  max-width: 880px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.5));
}

/* Stats bar */
.lp-hero__stats {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  width: 100%;
  backdrop-filter: blur(12px);
}
.lp-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.lp-stat:last-child { border-right: none; }
.lp-stat__val {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}
.lp-stat__lbl {
  font-size: 11px;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  text-align: center;
  letter-spacing: .3px;
}

/* Tags */
.lp-hero__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.lp-tag {
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.12);
  letter-spacing: .2px;
}

/* ============================================================
   CARDS — Segment
   ============================================================ */
.lp-card {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.lp-card:hover {
  border-color: var(--navy-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.lp-card--seg .lp-card__icon {
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.lp-card--seg .lp-card__icon svg { stroke: var(--gold); }
.lp-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.lp-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}
.lp-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.lp-link:hover { color: var(--gold); text-decoration: none; gap: 7px; }

/* ============================================================
   CARDS — Service pricing
   ============================================================ */
.lp-card--srv { padding: 24px; }
.lp-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.lp-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}
.lp-badge {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  background: var(--navy);
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.lp-badge--alt {
  background: var(--gold-pale);
  color: var(--gold);
  border: 1px solid var(--gold-light);
}
.lp-card__price {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-top: 14px;
  letter-spacing: -.3px;
}
.lp-card__price span {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
}

/* ============================================================
   REVIEWS
   ============================================================ */
.lp-card--review { padding: 32px; position: relative; }
.lp-card--review::before {
  content: '\201C';
  position: absolute;
  top: 14px;
  left: 22px;
  font-size: 56px;
  color: var(--gold-light);
  font-family: Georgia, serif;
  line-height: 1;
  opacity: .6;
}
.lp-review__stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
  display: block;
}
.lp-review__text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
  margin-top: 24px;
  margin-bottom: 18px;
}
.lp-review__author {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .2px;
}

/* ============================================================
   STEPS
   ============================================================ */
.lp-step {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
}
.lp-step:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow);
}
.lp-step__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.lp-step__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.lp-step__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}
.lp-step__meta {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   FAQ
   ============================================================ */
.lp-faq {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: var(--transition);
}
.lp-faq:hover {
  border-left-color: var(--navy);
  box-shadow: var(--shadow);
}
.lp-faq__q {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.lp-faq__a {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.lp-about__photo {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}
.lp-about__role {
  font-size: 11px;
  color: var(--gold);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  display: block;
}
.lp-text--intro {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 24px;
}
.lp-about-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
}
.lp-about-list li {
  padding: 10px 0;
  color: var(--text);
  border-bottom: 1px solid var(--border-light);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-about-list li:last-child { border-bottom: none; }
.lp-contact-details {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.85;
}
.lp-contact-details strong { color: var(--text); }

/* ============================================================
   BOOKING STRIP
   ============================================================ */
.lp-booking-strip {
  background: var(--navy);
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,.05);
}
.lp-booking-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.lp-booking-strip__title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -.3px;
}
.lp-booking-strip__sub {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #080F1C !important;
  color: rgba(255,255,255,.55) !important;
  padding: 56px 0 28px !important;
  border-top: 1px solid rgba(255,255,255,.06) !important;
}
.footer-content {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 40px !important;
  margin-bottom: 40px !important;
}
.footer-widget h4 {
  font-size: 11px !important;
  font-weight: 700 !important;
  color: rgba(255,255,255,.4) !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  margin-bottom: 16px !important;
}
.footer-widget p,
.footer-widget li {
  font-size: 14px !important;
  color: rgba(255,255,255,.5) !important;
  margin-bottom: 8px !important;
  line-height: 1.65 !important;
}
.footer-widget a {
  color: rgba(255,255,255,.5) !important;
  text-decoration: none !important;
  transition: var(--transition) !important;
}
.footer-widget a:hover { color: var(--gold-light) !important; }
.footer-widget ul { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07) !important;
  padding-top: 24px !important;
  text-align: center !important;
  font-size: 12px !important;
  color: rgba(255,255,255,.25) !important;
  letter-spacing: .3px !important;
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 13px 20px 13px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: var(--transition);
  font-weight: 600;
  font-size: 14px;
}
.whatsapp-float:hover {
  background: #1ebe5d;
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}
.whatsapp-float svg { flex-shrink: 0; }
@media (max-width: 480px) {
  .whatsapp-float {
    border-radius: 50%;
    padding: 15px;
    bottom: 16px;
    right: 16px;
  }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
body.a11y-high-contrast,
body.a11y-high-contrast * {
  background-color: #fff !important;
  color: #000 !important;
  border-color: #000 !important;
  box-shadow: none !important;
  text-shadow: none !important;
}
body.a11y-high-contrast a,
body.a11y-high-contrast a:visited { color: #0000EE !important; text-decoration: underline !important; }
body.a11y-high-contrast a:hover,
body.a11y-high-contrast a:focus { color: #000 !important; background-color: #ff0 !important; outline: 3px solid #000 !important; }
body.a11y-high-contrast button { background-color: #000 !important; color: #fff !important; border: 2px solid #000 !important; }
body.a11y-high-contrast .top-bar,
body.a11y-high-contrast .site-header { background-color: #000 !important; color: #fff !important; }
body.a11y-high-contrast .top-bar a,
body.a11y-high-contrast .site-header a { color: #ff0 !important; }
body.a11y-high-contrast img { filter: contrast(1.2) brightness(1.1); }

body.a11y-font-110 { font-size: 110%; }
body.a11y-font-110 * { font-size: inherit; }
body.a11y-font-120 { font-size: 120%; }
body.a11y-font-120 * { font-size: inherit; }
body.a11y-font-130 { font-size: 130%; }
body.a11y-font-130 * { font-size: inherit; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .lp-hero__inner  { grid-template-columns: 1fr; gap: 40px; }
  .lp-hero__title  { font-size: 38px; }
  .lp-hero__right  { display: none; } /* ukryj zdjęcie na małych ekranach */
  .lp-grid--4      { grid-template-columns: repeat(2, 1fr); }
  .lp-grid--3      { grid-template-columns: 1fr 1fr; }
  .lp-grid--2      { grid-template-columns: 1fr; }
  .lp-booking-strip__inner { flex-direction: column; text-align: center; }
  .footer-content  { grid-template-columns: 1fr !important; }
  .lp-hero { padding: 60px 0; }
}
@media (max-width: 600px) {
  .lp-hero__title  { font-size: 30px; }
  .lp-section      { padding: 52px 0; }
  .lp-grid--4,
  .lp-grid--3      { grid-template-columns: 1fr; }
  .nav-menu        { display: none !important; }
  .menu-toggle     { display: flex !important; }
  .site-header .container { height: auto !important; padding: 12px 20px !important; }
  .top-bar .top-bar-info { gap: 12px !important; }
  .a11y-controls   { display: none !important; }
}
@media (max-width: 768px) {
  .a11y-controls { margin-left: 0 !important; margin-top: 8px; }
  .top-bar-content { flex-wrap: wrap; }
}

/* ============================================================
   SINGLE PRODUCT PAGE (sp-*)
   ============================================================ */

/* Breadcrumb */
.sp-breadcrumb { background: var(--bg-subtle); border-bottom: 1px solid var(--border-light); padding: 12px 0; }
.sp-breadcrumb__back {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--text-mid); font-size: 14px; font-weight: 500; text-decoration: none;
  transition: color .2s;
}
.sp-breadcrumb__back:hover { color: var(--gold); }

/* Hero */
.sp-hero {
  background: var(--navy);
  color: #fff;
  padding: 64px 0 56px;
}
.sp-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.sp-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.sp-pill {
  background: rgba(184,145,63,.2);
  color: var(--gold-light);
  border: 1px solid rgba(184,145,63,.4);
  border-radius: 100px;
  font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  padding: 4px 12px;
}
.sp-hero__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 24px;
}
.sp-meta-list { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.sp-meta-item { display: flex; align-items: baseline; gap: 8px; font-size: 14px; }
.sp-meta-item__label {
  color: var(--gold-light);
  font-weight: 600;
  min-width: 120px;
  flex-shrink: 0;
}
.sp-meta-item__value { color: rgba(255,255,255,.85); }
.sp-hero__excerpt { color: rgba(255,255,255,.78); font-size: 16px; line-height: 1.7; margin-bottom: 32px; }
.sp-hero__excerpt p { margin: 0 0 12px; }

/* Mobile CTA inside hero */
.sp-hero__cta-mobile { display: none; }
.sp-price { font-size: 26px; font-weight: 800; color: var(--gold-light); margin-bottom: 16px; }
.sp-price del { font-size: 18px; opacity: .6; margin-right: 8px; }

/* Hero image */
.sp-hero__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.sp-hero__img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* CTA button full-width in product context */
.sp-cta-btn { width: 100%; justify-content: center; font-size: 16px; padding: 16px 24px; }

/* Body */
.sp-body { padding: 64px 0 80px; }
.sp-body__inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: start;
}

/* Description */
.sp-description { font-size: 16px; line-height: 1.8; color: var(--text-mid); }
.sp-description h2 { font-size: 24px; font-weight: 700; color: var(--navy); margin: 32px 0 12px; }
.sp-description h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin: 24px 0 10px; }
.sp-description p { margin-bottom: 16px; }
.sp-description ul, .sp-description ol { padding-left: 20px; margin-bottom: 16px; }
.sp-description li { margin-bottom: 6px; }

.sp-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--border-light); }
.sp-tag {
  background: var(--navy-pale);
  color: var(--navy-mid);
  border-radius: var(--radius);
  font-size: 13px; font-weight: 500;
  padding: 4px 12px;
}

/* Sidebar card */
.sp-sidebar { position: sticky; top: 24px; }
.sp-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.sp-card__price {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}
.sp-card__price del { font-size: 18px; color: var(--text-muted); font-weight: 400; margin-right: 6px; }
.sp-card__meta { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.sp-card__meta li { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; }
.sp-card__meta-label { color: var(--text-muted); flex-shrink: 0; }
.sp-card__meta-value { color: var(--text); font-weight: 600; text-align: right; }

.sp-card__note {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-muted);
  margin: 16px 0 20px;
  padding: 12px;
  background: var(--bg-subtle);
  border-radius: var(--radius);
}
.sp-card__note svg { flex-shrink: 0; color: var(--gold); }

.sp-card__contact { display: flex; flex-direction: column; gap: 10px; border-top: 1px solid var(--border-light); padding-top: 20px; }
.sp-card__contact-link {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--text-mid); text-decoration: none;
  transition: color .2s;
}
.sp-card__contact-link:hover { color: var(--gold); }
.sp-card__contact-link svg { color: var(--gold); flex-shrink: 0; }

/* ============================================================
   PAGE HERO (pg-hero) – used by contact, about, etc.
   ============================================================ */
.pg-hero {
  background: var(--navy);
  color: #fff;
  padding: 56px 0;
  text-align: center;
}
.pg-hero__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
}
.pg-hero__sub { font-size: 18px; color: rgba(255,255,255,.75); margin: 0; }

/* ============================================================
   CONTACT PAGE (pg-*)
   ============================================================ */
.pg-contact-body { padding: 64px 0 80px; }
.pg-contact-body__inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}

/* Form */
.pg-contact-form { display: flex; flex-direction: column; gap: 20px; }
.pg-form-row { display: grid; gap: 20px; }
.pg-form-row--2 { grid-template-columns: 1fr 1fr; }
.pg-form-group { display: flex; flex-direction: column; gap: 6px; }
.pg-form-label { font-size: 14px; font-weight: 600; color: var(--text); }
.pg-required { color: var(--gold); }
.pg-form-input,
.pg-form-select,
.pg-form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  font-family: inherit;
}
.pg-form-input:focus,
.pg-form-select:focus,
.pg-form-textarea:focus {
  outline: none;
  border-color: var(--navy-light);
  box-shadow: 0 0 0 3px rgba(42,74,138,.12);
}
.pg-form-textarea { resize: vertical; min-height: 140px; }
.pg-form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer; }

.pg-form-footer { display: flex; flex-direction: column; gap: 12px; }
.pg-submit-btn { display: inline-flex; align-items: center; gap: 10px; align-self: flex-start; }
.pg-form-disclaimer { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); margin: 0; }
.pg-form-disclaimer svg { color: var(--text-muted); flex-shrink: 0; }

/* Form alerts */
.pg-form-success {
  text-align: center;
  padding: 48px 32px;
  background: var(--navy-pale);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11,30,61,.1);
}
.pg-form-success svg { color: #2DAA6E; margin-bottom: 16px; }
.pg-form-success h2 { font-size: 24px; color: var(--navy); margin: 0 0 8px; }
.pg-form-success p { color: var(--text-mid); margin: 0 0 24px; }
.pg-form-error {
  padding: 14px 18px;
  background: #FFF4F4;
  border: 1px solid #FCA5A5;
  border-radius: var(--radius);
  color: #B91C1C;
  font-size: 14px;
}

/* Info card */
.pg-info-card {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
}
.pg-info-card__title { font-size: 18px; font-weight: 700; color: #fff; margin: 0 0 24px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.12); }
.pg-info-list { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 20px; }
.pg-info-item { display: flex; gap: 14px; align-items: flex-start; }
.pg-info-item svg { color: var(--gold-light); flex-shrink: 0; margin-top: 2px; }
.pg-info-item div { display: flex; flex-direction: column; gap: 2px; }
.pg-info-label { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.pg-info-value { font-size: 15px; color: #fff; text-decoration: none; transition: color .2s; }
a.pg-info-value:hover { color: var(--gold-light); }
.pg-info-note { font-size: 12px; color: rgba(255,255,255,.5); }
.pg-info-response {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: var(--gold-light);
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.pg-info-response svg { color: #2DAA6E; }

/* ============================================================
   RESPONSIVE – offer + contact pages
   ============================================================ */
@media (max-width: 900px) {
  .sp-hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .sp-hero__image { order: -1; max-height: 300px; }
  .sp-hero__cta-mobile { display: block; }
  .sp-body__inner { grid-template-columns: 1fr; }
  .sp-sidebar { position: static; }
  .sp-card { display: none; } /* hidden on mobile – mobile CTA in hero */
  .pg-contact-body__inner { grid-template-columns: 1fr; }
  .pg-form-row--2 { grid-template-columns: 1fr; }
  .pg-info-card { order: -1; }
}

/* ============================================================
   SHOP / ARCHIVE (woocommerce.php)
   ============================================================ */

.shop-body { padding: 64px 0 80px; }

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
  flex-wrap: wrap;
  font-size: 14px;
}
.woocommerce-result-count { color: var(--text-muted); }
.woocommerce-ordering { display: flex; align-items: center; gap: 8px; }
.woocommerce-ordering select {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 32px;
  cursor: pointer;
  transition: border-color .2s;
}
.woocommerce-ordering select:focus { outline: none; border-color: var(--navy-light); }

.shop-grid {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  grid-auto-rows: 1fr;
}
.shop-item { display: flex; }

.shop-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: all .3s;
  box-shadow: var(--shadow);
}
.shop-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.shop-card__image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-subtle);
}
.shop-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.shop-card:hover .shop-card__img { transform: scale(1.05); }

.shop-card__cat {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.shop-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.shop-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
  line-height: 1.35;
  min-height: 40px;
}
.shop-card__excerpt {
  flex: 1;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.5;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.shop-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}
.shop-card__price {
  font-size: 18px;
  font-weight: 800;
  color: var(--gold);
}
.shop-card__price del { font-size: 14px; opacity: .6; margin-right: 6px; }
.shop-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-light);
  transition: color .2s;
}
.shop-card:hover .shop-card__cta { color: var(--gold); }

/* Empty state */
.shop-empty {
  text-align: center;
  padding: 80px 20px;
}
.shop-empty p { font-size: 18px; color: var(--text-mid); margin-bottom: 24px; }

/* Pagination */
.shop-pagination { text-align: center; margin-top: 40px; }
.woocommerce-pagination { list-style: none; margin: 0; padding: 0; display: inline-flex; gap: 8px; }
.woocommerce-pagination li { margin: 0; }
.woocommerce-pagination a,
.woocommerce-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 8px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  background: #fff;
  transition: all .2s;
}
.woocommerce-pagination a:hover { border-color: var(--gold); color: var(--gold); }
.woocommerce-pagination .current { background: var(--navy); color: #fff; border-color: var(--navy); }

/* WooCommerce default notices styling */
.woocommerce-info,
.woocommerce-error,
.woocommerce-message {
  margin: 0 0 20px;
  padding: 14px 18px;
  border-left: 4px solid var(--navy);
  border-radius: var(--radius);
  background: var(--navy-pale);
  color: var(--navy);
  font-size: 14px;
}
.woocommerce-error { border-left-color: #DC2626; background: #FEF2F2; color: #7F1D1D; }
.woocommerce-message { border-left-color: #16A34A; background: #F0FDF4; color: #15803D; }

/* ============================================================
   RESPONSIVE – SHOP
   ============================================================ */
@media (max-width: 900px) {
  .shop-toolbar { flex-direction: column; align-items: flex-start; }
  .shop-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
}
@media (max-width: 600px) {
  .shop-grid { grid-template-columns: 1fr; }
}

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

/* ============================================
   SINGLE OFFER PAGE — Experience Educator style
   ============================================ */

/* Hero */
.oh-hero {
  background: var(--navy);
  padding: 48px 0 0;
  color: #fff;
}
.oh-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}
.oh-breadcrumb {
  display: inline-block;
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  text-decoration: none;
  margin-bottom: 20px;
  transition: color .2s;
}
.oh-breadcrumb:hover { color: var(--gold-mid); }

.oh-pills { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.oh-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  background: rgba(184,145,63,.25);
  color: var(--gold-light);
  border: 1px solid rgba(184,145,63,.4);
}
.oh-pill--alt {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  border-color: rgba(255,255,255,.2);
}

.oh-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 20px;
}

.oh-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.oh-meta__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .875rem;
  color: rgba(255,255,255,.8);
}
.oh-meta__item svg { flex-shrink: 0; opacity: .7; }

.oh-tagline {
  font-size: 1rem;
  color: var(--gold-mid);
  font-style: italic;
  margin: 0;
  padding-bottom: 48px;
}

/* Hero image */
.oh-hero__right { align-self: center; }
.oh-hero__image {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  line-height: 0;
}
.oh-hero__img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

/* Body layout */
.oh-body { padding: 56px 0 80px; background: var(--bg-subtle); }
.oh-body__inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

/* Content sections */
.oh-section {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
}
.oh-section:last-child { margin-bottom: 0; }
.oh-section__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.oh-section__body {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--text-mid);
}
.oh-section__body p { margin: 0 0 1em; }
.oh-section__body p:last-child { margin-bottom: 0; }

/* Highlights */
.oh-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.oh-highlight {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  color: var(--text);
}
.oh-highlight svg { color: var(--gold); flex-shrink: 0; }

/* Sidebar card */
.oh-sidebar { position: sticky; top: 24px; }
.oh-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}

.oh-card__price-wrap {
  text-align: center;
  padding: 20px 0 24px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 20px;
}
.oh-card__from {
  display: block;
  font-size: .8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.oh-card__price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.oh-card__meta {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.oh-card__meta li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  color: var(--text-mid);
}
.oh-card__meta svg { color: var(--navy-light); flex-shrink: 0; }

.oh-card__btn {
  display: block;
  text-align: center;
  padding: 14px 24px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  letter-spacing: .02em;
  transition: background .2s, transform .15s;
}
.oh-card__btn:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}

.oh-card__trust {
  text-align: center;
  font-size: .78rem;
  color: var(--text-muted);
  margin: 12px 0 0;
  line-height: 1.5;
}

.oh-card__contact {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}
.oh-card__contact-label {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin: 0 0 10px;
}
.oh-card__contact-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .85rem;
  color: var(--navy);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color .2s;
}
.oh-card__contact-link:hover { color: var(--gold); }
.oh-card__contact-link svg { flex-shrink: 0; }

/* Responsive */
@media (max-width: 1024px) {
  .oh-body__inner { grid-template-columns: 1fr 300px; gap: 32px; }
}
@media (max-width: 900px) {
  .oh-hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .oh-hero__img { height: 260px; }
  .oh-hero__image { border-radius: var(--radius-lg); }
  .oh-tagline { padding-bottom: 32px; }
  .oh-body__inner { grid-template-columns: 1fr; }
  .oh-sidebar { position: static; }
  .oh-highlights { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .oh-section { padding: 24px; }
  .oh-card { padding: 24px; }
  .oh-meta { gap: 10px; }
}

/* ═══════════════════════════════════════════════════════════
   O MNIE PAGE  (.om-*)
═══════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────── */
.om-hero {
  background: var(--navy);
  color: #fff;
  padding: 72px 0 0;
  overflow: hidden;
}
.om-hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: flex-end;
}
.om-hero__text {
  padding-bottom: 64px;
}
.om-hero__label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 18px;
}
.om-hero__name {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 20px;
  color: #fff;
}
.om-hero__tagline {
  font-size: 1.15rem;
  line-height: 1.65;
  color: rgba(255,255,255,.82);
  max-width: 500px;
  margin: 0 0 36px;
}
.om-hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.om-hero__photo-wrap {
  align-self: flex-end;
}
.om-hero__photo {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  object-fit: cover;
  object-position: top center;
  filter: brightness(1.05) contrast(1.02);
}

/* ── Stats ────────────────────────────────────────────── */
.om-stats {
  background: var(--gold);
  padding: 36px 0;
}
.om-stats__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.om-stats__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.om-stats__number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.om-stats__desc {
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .06em;
  opacity: .8;
}

/* ── Bio ──────────────────────────────────────────────── */
.om-bio {
  background: #fff;
}
.om-bio__grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 64px;
  align-items: center;
}
.om-bio__heading {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 24px;
  position: relative;
  padding-bottom: 16px;
}
.om-bio__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.om-bio__content p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
  margin: 0 0 18px;
}
.om-bio__image-wrap {
  position: relative;
}
.om-bio__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(11,30,61,.18);
}

/* ── Philosophy ───────────────────────────────────────── */
.om-philosophy {
  background: var(--navy);
}
.om-philosophy__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.om-philosophy__icon {
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}
.om-philosophy__quote {
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,.92);
  margin: 0 0 20px;
  border: none;
  padding: 0;
}
.om-philosophy__quote strong {
  color: var(--gold-light);
  font-weight: 700;
}
.om-philosophy__cite {
  font-size: .9rem;
  font-style: normal;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* ── Values ───────────────────────────────────────────── */
.om-values {
  background: var(--navy-pale);
}
.om-values__heading {
  text-align: center;
  margin-bottom: 48px;
}
.om-values__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.om-values__item {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(11,30,61,.07);
  border-top: 3px solid var(--gold);
  transition: transform .2s, box-shadow .2s;
}
.om-values__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(11,30,61,.12);
}
.om-values__icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}
.om-values__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
}
.om-values__text {
  font-size: .93rem;
  line-height: 1.65;
  color: var(--text-light);
  margin: 0;
}

/* ── Credentials ──────────────────────────────────────── */
.om-creds {
  background: #fff;
}
.om-creds__heading {
  text-align: center;
  margin-bottom: 48px;
}
.om-creds__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.om-creds__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--navy-pale);
  border-radius: var(--radius);
  padding: 22px 20px;
  border-left: 4px solid var(--navy);
}
.om-creds__badge {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.om-creds__title {
  display: block;
  font-size: .97rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.om-creds__detail {
  font-size: .85rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

/* ── CTA ──────────────────────────────────────────────── */
.om-cta {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
}
.om-cta__inner {
  max-width: 600px;
}
.om-cta__heading {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
}
.om-cta__sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,.8);
  margin: 0 0 36px;
  line-height: 1.6;
}
.om-cta__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── O mnie — responsive ──────────────────────────────── */
@media (max-width: 1100px) {
  .om-hero__inner  { grid-template-columns: 1fr 340px; }
  .om-values__list { grid-template-columns: repeat(2, 1fr); }
  .om-creds__list  { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .om-hero__inner  { grid-template-columns: 1fr; padding-bottom: 0; }
  .om-hero__text   { padding-bottom: 32px; }
  .om-hero__photo  { max-width: 100%; border-radius: 0; }
  .om-hero__photo-wrap { order: -1; }
  .om-stats__list  { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .om-bio__grid    { grid-template-columns: 1fr; gap: 40px; }
  .om-bio__image-wrap::before { display: none; }
}
@media (max-width: 600px) {
  .om-values__list { grid-template-columns: 1fr; }
  .om-creds__list  { grid-template-columns: 1fr; }
  .om-stats__list  { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════════
   SUBPAGES  (.sp-*)
   Shared layout for: Dla firm, Trening online, Blisko Ciała,
   Opinie, Wakacje
═══════════════════════════════════════════════════════════ */

/* ── SVG icons inline ─────────────────────────────────── */
.sp-benefits__icon svg,
.sp-prog-card__icon svg,
.sp-feat__icon svg,
.sp-need__icon svg,
.sp-location__card-icon svg,
.om-values__icon svg,
.om-creds__badge svg {
  display: block;
  color: var(--gold);
}
.top-bar-info svg,
.top-bar-location svg,
.footer-widget svg {
  display: inline-block;
  vertical-align: middle;
  color: var(--gold-light);
  margin-right: 4px;
}
.sp-list-icon {
  display: inline-flex;
  align-items: center;
  margin-right: 6px;
  flex-shrink: 0;
  color: var(--gold);
}
.sp-list-icon svg { display: block; }

/* ── Hero (shared) ────────────────────────────────────── */
.sp-page { overflow-x: hidden; }
.sp-hero {
  background: var(--navy);
  color: #fff;
  padding: 72px 0 0;
}
.sp-hero__inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: center;
  padding-bottom: 64px;
}
.sp-hero__label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.sp-hero__title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 18px;
}
.sp-hero__sub {
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(255,255,255,.82);
  max-width: 520px;
  margin-bottom: 32px;
}
.sp-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* hero stats block (Dla firm) */
.sp-hero__stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-left: 2px solid rgba(255,255,255,.15);
  padding-left: 32px;
}
.sp-hero__stat { display: flex; flex-direction: column; }
.sp-hero__stat-n {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.sp-hero__stat span:last-child {
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 4px;
}

/* hero price card (Trening online) */
.sp-hero__price-card { align-self: center; }
.sp-price-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.sp-price-card__label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.sp-price-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.85);
  font-size: 1rem;
}
.sp-price-card__row strong { color: #fff; font-size: 1.25rem; }
.sp-price-card__row--featured {
  background: rgba(184,145,63,.15);
  border-radius: var(--radius);
  padding: 12px 14px;
  margin: 8px -14px;
  border-bottom: none;
}
.sp-price-card__row--featured strong { color: var(--gold-light); font-size: 1.5rem; }

/* hero badge (Blisko Ciała, Wakacje) */
.sp-hero__badge-wrap { display: flex; align-items: center; justify-content: center; }
.sp-badge-big {
  background: rgba(255,255,255,.07);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  text-align: center;
}
.sp-badge-big--summer { border-color: var(--gold-mid); }
.sp-badge-big__num {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}
.sp-badge-big__label {
  display: block;
  font-size: .85rem;
  color: rgba(255,255,255,.75);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── Benefits list ────────────────────────────────────── */
.sp-benefits {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.sp-benefits__item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(11,30,61,.06);
  border-left: 3px solid var(--gold);
}
.sp-benefits__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--navy-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp-benefits__icon svg { color: var(--navy); }
.sp-benefits__item strong { display: block; font-size: 1rem; color: var(--navy); margin-bottom: 6px; }
.sp-benefits__item p { font-size: .93rem; color: var(--text-light); line-height: 1.6; margin: 0; }

/* ── Program cards ────────────────────────────────────── */
.sp-programs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sp-prog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 2px 16px rgba(11,30,61,.07);
  border-top: 3px solid var(--navy);
}
.sp-prog-card__icon {
  width: 60px;
  height: 60px;
  background: var(--navy-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.sp-prog-card__icon svg { color: var(--navy); }
.sp-prog-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.sp-prog-card p { font-size: .93rem; color: var(--text-light); line-height: 1.6; margin-bottom: 18px; }
.sp-prog-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--navy-pale);
  padding-top: 16px;
}
.sp-prog-card__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: var(--text-light);
  padding: 5px 0;
}
.sp-prog-card__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Steps ────────────────────────────────────────────── */
.sp-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: steps;
}
.sp-steps--3 { grid-template-columns: repeat(3, 1fr); max-width: 840px; margin: 0 auto; }
.sp-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.sp-step::before {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(50% + 12px);
  width: calc(100% - 24px);
  height: 2px;
  background: var(--navy-pale);
}
.sp-step:last-child::before { display: none; }
.sp-step__num {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.sp-step strong { font-size: .97rem; color: var(--navy); }
.sp-step p { font-size: .88rem; color: var(--text-light); line-height: 1.6; margin: 0; }

/* ── Needs (Co potrzebujesz) ──────────────────────────── */
.sp-needs {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.sp-need {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: 0 2px 10px rgba(11,30,61,.05);
}
.sp-need__icon {
  width: 44px;
  height: 44px;
  background: var(--navy-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sp-need__icon svg { color: var(--navy); }
.sp-need span:last-child { font-size: .93rem; line-height: 1.6; color: var(--text-light); }
.sp-need strong { color: var(--navy); display: block; margin-bottom: 4px; }

/* ── For whom list ────────────────────────────────────── */
.sp-forwhom {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sp-forwhom li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: #fff;
  border-radius: var(--radius);
  font-size: .97rem;
  color: var(--navy);
  box-shadow: 0 1px 6px rgba(11,30,61,.05);
}
.sp-forwhom li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

/* ── Offer cards grid ─────────────────────────────────── */
.sp-offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sp-offer-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(11,30,61,.07);
  border-top: 3px solid var(--navy);
  transition: transform .2s, box-shadow .2s;
}
.sp-offer-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(11,30,61,.12); }
.sp-offer-card__cat {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.sp-offer-card__title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.sp-offer-card__duration { font-size: .85rem; color: var(--text-light); margin-bottom: 6px; }
.sp-offer-card__price { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-top: auto; padding-top: 12px; }
.sp-offer-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 12px;
}

/* ── Two-col (Blisko Ciała) ───────────────────────────── */
.sp-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.sp-two-col__text h2 { font-size: 1.8rem; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.sp-two-col__text p { font-size: 1rem; line-height: 1.75; color: var(--text); margin-bottom: 14px; }
.sp-two-col__features { display: flex; flex-direction: column; gap: 20px; }
.sp-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--navy-pale);
  border-radius: var(--radius);
}
.sp-feat__icon {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sp-feat__icon svg { color: var(--navy); }
.sp-feat strong { display: block; font-size: .95rem; color: var(--navy); margin-bottom: 4px; }
.sp-feat p { font-size: .88rem; color: var(--text-light); margin: 0; line-height: 1.5; }

/* ── Schedule ─────────────────────────────────────────── */
.sp-schedule { display: flex; flex-direction: column; gap: 2px; }
.sp-schedule__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: #fff;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background .15s;
  gap: 20px;
}
.sp-schedule__item:hover { background: var(--navy-pale); }
.sp-schedule__title { display: block; font-size: .97rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.sp-schedule__meta { font-size: .82rem; color: var(--text-light); }
.sp-schedule__price { font-size: 1.1rem; font-weight: 700; color: var(--navy); white-space: nowrap; flex-shrink: 0; }
.sp-schedule__note { text-align: center; margin-top: 24px; font-size: .9rem; color: var(--text-light); }
.sp-schedule__note a { color: var(--gold); font-weight: 600; text-decoration: none; }

/* ── Location ─────────────────────────────────────────── */
.sp-location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.sp-location__text h2 { font-size: 1.8rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.sp-location__text p { font-size: 1rem; line-height: 1.7; color: var(--text); margin-bottom: 12px; }
.sp-location__address {
  display: flex;
  align-items: center;
  gap: 8px;
  font-style: normal;
  font-weight: 600;
  color: var(--navy);
  margin-top: 20px;
  font-size: .97rem;
}
.sp-location__address svg { color: var(--gold); }
.sp-location__cards { display: flex; flex-direction: column; gap: 14px; }
.sp-location__card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--navy-pale);
  border-radius: var(--radius);
}
.sp-location__card-icon {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sp-location__card-icon svg { color: var(--navy); }
.sp-location__card strong { display: block; font-size: .92rem; color: var(--navy); margin-bottom: 4px; }
.sp-location__card p { font-size: .85rem; color: var(--text-light); margin: 0; line-height: 1.5; }

/* ── Reviews grid ─────────────────────────────────────── */
.sp-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sp-review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: 0 2px 14px rgba(11,30,61,.07);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sp-review-card__stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
}
.sp-review-card__text {
  font-size: .93rem;
  line-height: 1.7;
  color: var(--text);
  border: none;
  padding: 0;
  margin: 0;
  font-style: italic;
  flex: 1;
}
.sp-review-card__footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--navy-pale);
  padding-top: 14px;
  margin-top: auto;
}
.sp-review-card__name { font-size: .92rem; font-weight: 700; color: var(--navy); }
.sp-review-card__context { font-size: .8rem; color: var(--text-light); }

/* ── Proof bar ────────────────────────────────────────── */
.sp-proof-bar {
  background: var(--navy);
  padding: 40px 0;
}
.sp-proof-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.sp-proof-stat { display: flex; flex-direction: column; gap: 6px; }
.sp-proof-stat__n { font-size: 2rem; font-weight: 800; color: var(--gold); line-height: 1; }
.sp-proof-stat span:last-child { font-size: .82rem; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: .06em; }

/* ── Wakacje cards ────────────────────────────────────── */
.sp-wakacje-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.sp-wakacje-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: 0 2px 14px rgba(11,30,61,.07);
  position: relative;
}
.sp-wakacje-card__badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--navy-pale);
  color: var(--navy);
  border-radius: 4px;
  padding: 4px 10px;
  margin-bottom: 14px;
}
.sp-wakacje-card__badge--gold { background: var(--gold-pale); color: var(--gold); }
.sp-wakacje-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.sp-wakacje-card p { font-size: .93rem; line-height: 1.65; color: var(--text-light); margin-bottom: 16px; }

/* ── Partner ──────────────────────────────────────────── */
.sp-partner { max-width: 720px; margin: 0 auto; text-align: center; }
.sp-partner__text h2 { font-size: 1.6rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.sp-partner__text p { font-size: 1rem; line-height: 1.7; color: var(--text-light); }

/* ── CTA (navy footer section) ───────────────────────── */
.sp-cta {
  background: var(--navy);
  padding: 72px 0;
  text-align: center;
}
.sp-cta__inner { max-width: 620px; }
.sp-cta h2 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 14px; }
.sp-cta p { font-size: 1.05rem; color: rgba(255,255,255,.8); margin-bottom: 32px; line-height: 1.6; }
.sp-cta__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Btn variants ─────────────────────────────────────── */
.lp-btn--navy {
  background: var(--navy);
  color: #fff;
  border: 2px solid var(--navy);
}
.lp-btn--navy:hover { background: var(--navy-mid); border-color: var(--navy-mid); }
.lp-btn--outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.45);
}
.lp-btn--outline-light:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }

/* ── Subpages responsive ──────────────────────────────── */
@media (max-width: 1100px) {
  .sp-programs          { grid-template-columns: 1fr 1fr; }
  .sp-offers-grid       { grid-template-columns: repeat(2, 1fr); }
  .sp-reviews-grid      { grid-template-columns: repeat(2, 1fr); }
  .sp-proof-bar__inner  { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .sp-hero__inner       { grid-template-columns: 1fr; padding-bottom: 40px; }
  .sp-hero__stats       { flex-direction: row; flex-wrap: wrap; border-left: none; border-top: 1px solid rgba(255,255,255,.15); padding-left: 0; padding-top: 24px; }
  .sp-benefits          { grid-template-columns: 1fr; }
  .sp-steps             { grid-template-columns: 1fr 1fr; }
  .sp-steps--3          { grid-template-columns: 1fr; }
  .sp-step::before      { display: none; }
  .sp-two-col           { grid-template-columns: 1fr; gap: 32px; }
  .sp-location          { grid-template-columns: 1fr; gap: 32px; }
  .sp-needs             { grid-template-columns: 1fr; }
  .sp-wakacje-cards     { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .sp-programs          { grid-template-columns: 1fr; }
  .sp-steps             { grid-template-columns: 1fr; }
  .sp-offers-grid       { grid-template-columns: 1fr; }
  .sp-reviews-grid      { grid-template-columns: 1fr; }
  .sp-proof-bar__inner  { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════════
   DLA FIRM PAGE  (.df-*)
═══════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────── */
.df-hero {
  background: var(--navy);
  color: #fff;
  padding: 72px 0 56px;
}
.df-hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.df-hero__label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 18px;
}
.df-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 20px;
  color: #fff;
}
.df-hero__tagline {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,.82);
  max-width: 520px;
  margin: 0 0 36px;
}
.df-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.df-hero__badges {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}
.df-badge {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 18px 28px;
  text-align: center;
  min-width: 160px;
}
.df-badge__number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}
.df-badge__label {
  display: block;
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* ── Intro ────────────────────────────────────────────── */
.df-intro { background: #fff; }
.df-intro__grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
}
.df-intro__heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 24px;
  padding-bottom: 16px;
  position: relative;
}
.df-intro__heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 48px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.df-intro__content p {
  font-size: 1.03rem;
  line-height: 1.78;
  color: var(--text);
  margin: 0 0 16px;
}
.df-aside-card {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: sticky;
  top: 100px;
}
.df-aside-card__quote {
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.65;
  color: rgba(255,255,255,.88);
  margin: 0 0 16px;
}
.df-aside-card__author {
  font-size: .85rem;
  font-weight: 700;
  color: var(--gold-light);
  margin: 0 0 24px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.df-aside-card__btn { width: 100%; text-align: center; }

/* ── Programs ─────────────────────────────────────────── */
.df-programs { background: var(--navy-pale); }
.df-programs__sub {
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  margin: -24px 0 48px;
}
.df-programs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.df-program-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(11,30,61,.07);
  border-top: 3px solid var(--navy-light);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .2s, box-shadow .2s;
}
.df-program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(11,30,61,.12);
}
.df-program-card--featured {
  border-top-color: var(--gold);
  box-shadow: 0 4px 24px rgba(11,30,61,.1);
}
.df-program-card__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.df-program-card__icon {
  width: 52px; height: 52px;
  background: var(--navy-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}
.df-program-card--featured .df-program-card__icon {
  background: var(--gold-pale);
  color: var(--gold);
}
.df-program-card__tag {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin: 0 0 4px;
}
.df-program-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}
.df-program-card__desc {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}
.df-program-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.df-program-card__features li {
  font-size: .88rem;
  color: var(--text);
  padding-left: 18px;
  position: relative;
}
.df-program-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ── CTA Band ─────────────────────────────────────────── */
.df-cta-band {
  background: var(--gold);
  padding: 40px 0;
}
.df-cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.df-cta-band__heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 6px;
}
.df-cta-band__sub {
  font-size: .95rem;
  color: var(--navy);
  opacity: .8;
  margin: 0;
}

/* ── Why ──────────────────────────────────────────────── */
.df-why { background: #fff; }
.df-why__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.df-why__item {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--navy-pale);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.df-why__icon {
  width: 52px; height: 52px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
}
.df-why__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}
.df-why__text {
  font-size: .9rem;
  line-height: 1.65;
  color: var(--text-light);
  margin: 0;
}

/* ── Final CTA ────────────────────────────────────────── */
.df-final-cta {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
}
.df-final-cta__inner { max-width: 560px; }
.df-final-cta__heading {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
}
.df-final-cta__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  line-height: 1.65;
  margin: 0 0 36px;
}
.df-final-cta__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.df-final-cta__contact-info {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
}
.df-final-cta__contact-info a {
  color: var(--gold-light);
  text-decoration: none;
}
.df-final-cta__contact-info a:hover { text-decoration: underline; }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1100px) {
  .df-hero__inner    { grid-template-columns: 1fr; }
  .df-hero__badges   { flex-direction: row; justify-content: flex-start; }
  .df-programs__grid { grid-template-columns: repeat(2, 1fr); }
  .df-why__list      { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .df-intro__grid  { grid-template-columns: 1fr; }
  .df-aside-card   { position: static; }
  .df-cta-band__inner { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .df-programs__grid { grid-template-columns: 1fr; }
  .df-why__list      { grid-template-columns: 1fr; }
  .df-hero__badges   { flex-direction: column; }
}

/* ============================================================
   BLISKO CIAŁA PAGE  (bc-*)
   ============================================================ */

/* Hero */
.bc-hero {
  background: linear-gradient(105deg, rgba(11,30,61,.90) 0%, rgba(11,30,61,.80) 45%, rgba(11,30,61,.40) 100%),
              url('') center/cover no-repeat;
  background-color: var(--navy);
  color: #fff;
  padding: 80px 0 64px;
}
.bc-hero__inner {
  display: flex;
  align-items: center;
  gap: 48px;
}
.bc-hero__text { flex: 1; }
.bc-hero__label {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.bc-hero__title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 18px;
  color: #fff;
}
.bc-hero__tagline {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.bc-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero badges */
.bc-hero__badges {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}
.bc-badge {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 18px 28px;
  text-align: center;
  min-width: 140px;
}
.bc-badge__number {
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.1;
}
.bc-badge__label {
  display: block;
  font-size: .78rem;
  color: rgba(255,255,255,.75);
  margin-top: 4px;
}

/* Pricing bar */
.bc-pricing {
  background: var(--gold-pale);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: 36px 0;
}
.bc-pricing__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.bc-pricing__label {
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
  font-weight: 600;
}
.bc-pricing__options {
  display: flex;
  gap: 20px;
  flex: 1;
  flex-wrap: wrap;
}
.bc-price-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.bc-price-card--featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(184,145,63,.15);
}
.bc-price-card__tag {
  position: absolute;
  top: -11px;
  left: 16px;
  background: var(--gold);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}
.bc-price-card__amount {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.bc-price-card__desc {
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.bc-pricing__note {
  font-size: .82rem;
  color: var(--text-muted);
  margin-left: auto;
  text-align: right;
  flex-shrink: 0;
}

/* Classes section */
.bc-classes__sub {
  text-align: center;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}
.bc-classes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* Class card */
.bc-class-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s;
}
.bc-class-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.bc-class-card__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.bc-class-card__icon {
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  padding: 10px;
  color: var(--gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bc-class-card__schedule {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.bc-class-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}
.bc-class-card__desc {
  color: var(--text-mid);
  line-height: 1.7;
  font-size: .97rem;
}
.bc-class-card__section { }
.bc-class-card__section-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.bc-class-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.bc-class-card__list li {
  font-size: .92rem;
  color: var(--text-mid);
  padding-left: 20px;
  position: relative;
}
.bc-class-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.bc-class-card__section--forwhom {
  background: var(--navy-pale);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.bc-class-card__section--forwhom .bc-class-card__section-title {
  color: var(--navy);
}
.bc-class-card__section--forwhom p {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}
.bc-class-card__btn {
  margin-top: auto;
  align-self: flex-start;
  text-decoration: none;
}

/* Location section */
.bc-location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.bc-location__heading {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.bc-location__text p {
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 12px;
}
.bc-location__address {
  display: flex;
  align-items: center;
  gap: 8px;
  font-style: normal;
  font-weight: 600;
  color: var(--navy);
  margin-top: 20px;
}
.bc-location__cards {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bc-location__card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-subtle);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.bc-location__card span {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.bc-location__card strong {
  display: block;
  font-size: .9rem;
  color: var(--navy);
  margin-bottom: 3px;
}
.bc-location__card p {
  font-size: .85rem;
  color: var(--text-muted);
  margin: 0;
}

/* CTA */
.bc-cta {
  background: var(--navy);
  color: #fff;
  padding: 64px 0;
  text-align: center;
}
.bc-cta__inner { max-width: 600px; margin: 0 auto; }
.bc-cta__heading {
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.bc-cta__sub {
  color: rgba(255,255,255,.80);
  line-height: 1.75;
  margin-bottom: 32px;
}
.bc-cta__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Responsive */
@media (max-width: 900px) {
  .bc-hero__inner    { flex-direction: column; }
  .bc-hero__badges   { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .bc-classes__grid  { grid-template-columns: 1fr; }
  .bc-location__grid { grid-template-columns: 1fr; }
  .bc-pricing__inner { flex-direction: column; align-items: flex-start; }
  .bc-pricing__note  { margin-left: 0; text-align: left; }
}
@media (max-width: 600px) {
  .bc-pricing__options { flex-direction: column; }
  .bc-class-card       { padding: 24px 20px; }
}

/* Offer single – "Dla kogo" section */
.oh-section--forwhom .oh-section__body {
  background: var(--navy-pale);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  color: var(--text-mid);
  line-height: 1.75;
}
.oh-section--forwhom .oh-section__body p { margin: 0; }

/* ============================================================
   SHOP CARDS – icon layout (replaces photo)
   ============================================================ */
.shop-card__icon-wrap {
  position: relative;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  flex-direction: column;
  gap: 12px;
}
.shop-card__icon-wrap svg {
  opacity: .9;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.25));
}
.shop-card__icon-wrap .shop-card__cat {
  position: static;
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}
.shop-card__icon-wrap .shop-card__location {
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-size: .7rem;
  color: rgba(255,255,255,.65);
  letter-spacing: .04em;
}
/* Hide old image fallback */
.shop-card__image { display: none; }

/* Single offer hero – icon instead of photo */
.oh-hero__right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.oh-hero__icon-wrap {
  width: 220px;
  height: 220px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
  align-self: center;
  margin: auto;
}
.oh-hero__icon-wrap svg {
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.3));
}

/* Price notes */
.oh-card__price-note {
  font-size: .78rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-light);
  padding-top: 10px;
  margin-top: 4px;
  line-height: 1.6;
}
.shop-card__price-col { display: flex; flex-direction: column; gap: 3px; }
.shop-card__price-note {
  font-size: .72rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.lp-card__price-note {
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.5;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--navy);
  border-top: 3px solid var(--gold);
  padding: 16px 24px;
}
.cookie-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  color: rgba(255,255,255,.88);
  font-size: .88rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
  min-width: 220px;
}
.cookie-banner__link {
  color: var(--gold-light);
  text-decoration: underline;
  white-space: nowrap;
}
.cookie-banner__btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-banner__btn {
  padding: 9px 20px;
  border-radius: var(--radius);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity .2s;
}
.cookie-banner__btn:hover { opacity: .85; }
.cookie-banner__btn--accept {
  background: var(--gold);
  color: #fff;
}
.cookie-banner__btn--reject {
  background: transparent;
  color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.3);
}

/* Footer legal links */
.footer-bottom a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
}
.footer-bottom a:hover { color: var(--gold-light); }

/* Phosphor Icons sizing */
[class^="ph-"], [class*=" ph-"] { line-height: 1; }
.ph-icon-sm  { font-size: 20px; }
.ph-icon-md  { font-size: 28px; }
.ph-icon-lg  { font-size: 36px; }
.ph-icon-xl  { font-size: 48px; }

/* ============================================================
   RELATED OFFERS — single-offer.php
   ============================================================ */
.oh-related {
  background: var(--bg-subtle);
  padding: 56px 0 64px;
}
.oh-related__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
  letter-spacing: -.01em;
}
.oh-related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.oh-related-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.oh-related-card:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
.oh-related-card__category {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gold);
}
.oh-related-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.oh-related-card__price {
  font-size: .875rem;
  color: var(--text-muted);
  margin-top: auto;
}
.oh-related-card__arrow {
  font-size: .8rem;
  color: var(--gold);
  font-weight: 600;
  margin-top: 4px;
}

/* ========== GALERIA ZAJĘĆ ========== */
.lp-gallery__lead {
  text-align: center;
  color: #555;
  max-width: 640px;
  margin: 0 auto 32px;
  font-size: 1rem;
}

.lp-gallery-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.lp-gallery-photos__item {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 4/3;
}

.lp-gallery-photos__item:nth-child(1),
.lp-gallery-photos__item:nth-child(2) {
  grid-column: span 1;
}

.lp-gallery-photos__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  display: block;
}

.lp-gallery-photos__item:hover img {
  transform: scale(1.04);
}

.lp-gallery-videos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.lp-gallery-videos__item {
  width: 100%;
  border-radius: 10px;
  background: #000;
  aspect-ratio: 9/16;
  max-height: 480px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .lp-gallery-photos {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-gallery-videos {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .lp-gallery-photos {
    grid-template-columns: 1fr;
  }
}

/* ========== BLOG – ARCHIWUM ========== */
.blog-archive__hero {
  background: var(--navy, #1a2744);
  padding: 60px 0 48px;
  text-align: center;
}
.blog-archive__hero .lp-eyebrow { color: var(--gold, #c9a84c); }
.blog-archive__title { color: #fff; font-size: clamp(2rem, 5vw, 3rem); margin: 8px 0 12px; }
.blog-archive__sub { color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto; }

.blog-archive__body { padding: 56px 0 80px; }

.blog-archive__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.blog-card:hover { box-shadow: 0 6px 28px rgba(0,0,0,.12); transform: translateY(-3px); }

.blog-card__body { padding: 28px 28px 24px; display: flex; flex-direction: column; gap: 10px; }

.blog-card__meta { font-size: .8rem; color: #888; }

.blog-card__title { font-size: 1.15rem; font-weight: 700; color: var(--navy, #1a2744); line-height: 1.35; }
.blog-card__title a { color: inherit; text-decoration: none; }
.blog-card__title a:hover { color: var(--gold, #c9a84c); }

.blog-card__excerpt { font-size: .92rem; color: #555; line-height: 1.6; }

.blog-card__read { font-size: .85rem; font-weight: 600; color: var(--gold, #c9a84c); text-transform: uppercase; letter-spacing: .05em; text-decoration: none; margin-top: 4px; }
.blog-card__read:hover { text-decoration: underline; }

.blog-archive__nav { text-align: center; }
.blog-archive__empty { text-align: center; color: #888; padding: 40px 0; }

/* ========== BLOG – POJEDYNCZY WPIS ========== */
.blog-post__hero {
  background: var(--navy, #1a2744);
  padding: 60px 0 48px;
}
.blog-post__meta { font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: 12px; }
.blog-post__meta-sep { margin: 0 8px; }
.blog-post__title { color: #fff; font-size: clamp(1.6rem, 4vw, 2.4rem); line-height: 1.25; max-width: 760px; margin: 0 0 16px; }
.blog-post__lead { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 680px; line-height: 1.65; }

.blog-post__body {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  padding: 56px 0 80px;
  align-items: start;
}

.blog-post__content {
  font-size: 1rem;
  line-height: 1.75;
  color: #333;
}
.blog-post__content h2 {
  font-size: 1.3rem;
  color: var(--navy, #1a2744);
  margin: 36px 0 12px;
}
.blog-post__content p { margin: 0 0 16px; }
.blog-post__content ul { padding-left: 20px; margin: 0 0 16px; }
.blog-post__content li { margin-bottom: 6px; }
.blog-post__content a { color: var(--gold, #c9a84c); }
.blog-post__content strong { color: var(--navy, #1a2744); }

.blog-cta-box {
  background: #f8f6f1;
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: sticky;
  top: 24px;
}
.blog-cta-box__eyebrow { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gold, #c9a84c); }
.blog-cta-box__title { font-weight: 700; color: var(--navy, #1a2744); font-size: 1rem; }
.blog-cta-box__desc { font-size: .88rem; color: #555; line-height: 1.55; }

.blog-post__nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 64px;
  border-top: 1px solid #eee;
  padding-top: 32px;
}
.blog-post__nav-link { text-decoration: none; display: flex; flex-direction: column; gap: 4px; max-width: 45%; }
.blog-post__nav-link--next { text-align: right; margin-left: auto; }
.blog-post__nav-dir { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gold, #c9a84c); }
.blog-post__nav-title { font-size: .92rem; color: var(--navy, #1a2744); font-weight: 600; }
.blog-post__nav-link:hover .blog-post__nav-title { text-decoration: underline; }

@media (max-width: 900px) {
  .blog-post__body { grid-template-columns: 1fr; }
  .blog-cta-box { position: static; }
}

/* ========== BLOG ARCHIVE – WYRÓŻNIONY POST ========== */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  overflow: hidden;
  margin-bottom: 48px;
}

.blog-featured__img-wrap {
  display: block;
  height: 380px;
  overflow: hidden;
}

.blog-featured__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  display: block;
}

.blog-featured:hover .blog-featured__img { transform: scale(1.04); }

.blog-featured__body {
  padding: 40px 40px 40px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-featured__title {
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: var(--navy, #1a2744);
  line-height: 1.3;
}
.blog-featured__title a { color: inherit; text-decoration: none; }
.blog-featured__title a:hover { color: var(--gold, #c9a84c); }

.blog-featured__excerpt {
  font-size: .97rem;
  color: #555;
  line-height: 1.65;
}

/* Karty z obrazkiem */
.blog-card__img-wrap {
  display: block;
  height: 200px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
  display: block;
}

.blog-card:hover .blog-card__img { transform: scale(1.05); }

/* Jeśli karta ma obrazek, body bez górnego borderradius */
.blog-card:has(.blog-card__img-wrap) {
  border-radius: 12px;
}
.blog-card:has(.blog-card__img-wrap) .blog-card__body {
  border-radius: 0 0 12px 12px;
}

@media (max-width: 768px) {
  .blog-featured {
    grid-template-columns: 1fr;
  }
  .blog-featured__img-wrap { height: 240px; }
  .blog-featured__body { padding: 28px; }
}

/* ========== BLOG – POPRAWKI KAFELKÓW ========== */
.blog-archive__grid {
  grid-template-columns: repeat(3, 1fr);
}

.blog-card {
  display: flex;
  flex-direction: column;
}

.blog-card__img-wrap {
  display: block;
  height: 210px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  flex-shrink: 0;
}

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
  display: block;
}
.blog-card:hover .blog-card__img { transform: scale(1.05); }

.blog-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 24px 22px;
  border-radius: 0 0 12px 12px;
}

.blog-card__read {
  margin-top: auto;
}

/* Wyróżniony post bez obrazka w bloku – dopasowanie wysokości */
.blog-featured__img-wrap {
  min-height: 360px;
}

@media (max-width: 900px) {
  .blog-archive__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .blog-archive__grid {
    grid-template-columns: 1fr;
  }
  .blog-featured {
    grid-template-columns: 1fr;
  }
  .blog-featured__img-wrap { min-height: 220px; }
  .blog-featured__body { padding: 24px; }
}
