/*
 * wioleta.css — FINAL v7
 * Senior UX/UI build
 * UWAGA: Eniteo root font-size = 10px → używamy px zamiast rem
 * Mobile-first | Premium | Konwersja
 */

/* ===== CSS VARIABLES ===== */
:root {
  --gold:      #C9A96E;
  --gold-l:    #DFC49A;
  --brown:     #3D2B1F;
  --brown-m:   #6B4C3B;
  --dark:      #1A1208;
  --beige:     #F5F0EB;
  --beige-d:   #EDE6DB;
  --cream:     #FDFAF7;
  --gray:      #8A8279;
  --gray-l:    #D4CEC7;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'DM Sans', system-ui, sans-serif;
  --r:         4px;
  --r-lg:      12px;
  --sh:        0 4px 24px rgba(61,43,31,.10);
  --sh-lg:     0 12px 48px rgba(61,43,31,.18);
  --tr:        0.26s cubic-bezier(.4,0,.2,1);
}

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 17px;        /* desktop body per spec */
  line-height: 1.65;
  color: var(--brown);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { transition: color var(--tr); }

/* Typografia bazowa — px zamiast rem (root=10px) */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark);
  margin-top: 0;
}
/* H1: desktop 48-56px per spec | na tej stronie root=10px więc px */
h1 { font-size: clamp(30px, 4.5vw, 52px); }
/* H2: desktop 32px, mobile 24px */
h2 { font-size: clamp(24px, 3vw, 34px); }
h3 { font-size: clamp(18px, 2.2vw, 24px); }
p  { font-size: 17px; line-height: 1.68; margin-bottom: 16px; }
em { font-style: italic; color: var(--gold); }

.section-label {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label--light { color: var(--gold-l); }
.section-title { margin-bottom: 20px; font-size: clamp(24px, 3vw, 34px); }
.section-sub { color: var(--gray); font-size: 17px; margin-bottom: 40px; }
.section-head { margin-bottom: 48px; }

.home-seo-heading-section {
  padding: 18px 0 8px;
  background: var(--cream);
}
.home-seo-heading {
  max-width: 780px;
  margin: 0 auto;
  font-family: var(--sans);
  font-size: clamp(15px, 1.8vw, 16px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--brown-m);
  text-align: center;
}
.offer-seo-note {
  margin: 18px 0 0;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--brown-m);
}
.section-local-seo {
  padding: 28px 0 88px;
  background: var(--cream);
}
.local-seo-box {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.local-seo-box p {
  max-width: 760px;
  margin: 0 auto 14px;
}
.local-seo-links {
  margin-bottom: 0;
  color: var(--gray);
}
.local-seo-links a {
  color: var(--brown);
  text-decoration: underline;
  text-decoration-color: rgba(201,169,110,.55);
  text-underline-offset: 3px;
}
.local-seo-links a:hover { color: var(--gold); }

/* ===== STICKY MOBILE CTA ===== */
.sticky-cta-mobile {
  display: none; /* tylko mobile — override poniżej */
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
}
.sticky-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 56px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-top: 2px solid rgba(255,255,255,.25);
  transition: background var(--tr);
}
.sticky-cta-btn:hover { background: #b8924a; color: var(--dark); }
.sticky-cta-btn .fa { font-size: 17px; }

/* ===== NAVBAR ===== */
.navbar-custom {
  background: rgba(253,250,247,.97);
  backdrop-filter: blur(12px);
  border: none;
  border-bottom: 1px solid var(--beige-d);
  box-shadow: none;
  min-height: 68px;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  will-change: transform;
  transition: transform .32s cubic-bezier(.4,0,.2,1), box-shadow var(--tr), background-color var(--tr);
}
.navbar-custom.scrolled { box-shadow: 0 2px 16px rgba(61,43,31,.09); }
.navbar-custom.nav-hidden {
  transform: translate3d(0, calc(-100% - 6px), 0) !important;
  -webkit-transform: translate3d(0, calc(-100% - 6px), 0) !important;
}
.navbar-custom.menu-open {
  transform: translate3d(0, 0, 0) !important;
  -webkit-transform: translate3d(0, 0, 0) !important;
}

/* Brand — zmniejsz agresywność per spec */
.navbar-custom .navbar-brand {
  padding: 12px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: var(--serif);
  text-decoration: none;
  line-height: 1;
}
.navbar-custom .navbar-brand-logo {
  display: block;
  width: auto;
  height: 64px;
  max-width: min(100%, 440px);
}
.navbar-custom .brand-name {
  display: block;
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.5px;
}
.navbar-custom .brand-sub {
  display: block;
  font-family: var(--sans);
  font-size: 12px;         /* spec: 12-14px */
  font-weight: 500;
  letter-spacing: 1.5px;  /* spec: letter-spacing 1.5px */
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;            /* spec: opacity 0.8 */
  margin-top: 2px;         /* spec: margin-bottom 12px equiv */
}

/* Nav links - wyraźne */
.navbar-custom .nav > li > a {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brown);
  padding: 28px 15px;
  transition: color var(--tr);
}
.navbar-custom .nav > li > a:hover,
.navbar-custom .nav > li.active > a {
  color: var(--gold);
  background: none;
}

/* NAPRAWKA MENU — flex tylko na desktop, żeby nie psuć Bootstrap collapse */
@media (min-width: 768px) {
  .navbar-custom .navbar-nav {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    margin: 0 !important;
  }
  .navbar-custom .navbar-nav > li {
    float: none !important;
  }
}
/* CTA button — high=40-44px, margin:0, flex align */
.navbar-custom .nav-cta > a {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  height: 42px !important;
  padding: 0 20px !important;
  margin: 0 !important;
  background: var(--brown) !important;
  color: var(--cream) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  border-radius: var(--r) !important;
  white-space: nowrap;
  transition: background var(--tr) !important;
}
.navbar-custom .nav-cta > a:hover { background: var(--gold) !important; color: var(--dark) !important; }

/* Pasek kontaktowy nad nav */
.nav-contact-bar {
  background: var(--beige-d);
  font-size: 13px;
  color: var(--gray);
  padding: 5px 0;
  text-align: right;
  line-height: 1.4;
}
.nav-contact-bar span { margin-left: 24px; }
.nav-contact-bar .fa { color: var(--gold); margin-right: 5px; }

/* Homepage header polish — wspólna oś logo, menu i CTA */
@media (min-width: 768px) {
  body:not(.page-home) #mainNav {
    min-height: 74px;
  }
  body:not(.page-home) #mainNav > .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 74px;
  }
  body:not(.page-home) #mainNav .navbar-header {
    float: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 74px;
    margin: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  body:not(.page-home) #mainNav .navbar-brand {
    float: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    padding: 0;
    line-height: 1;
  }
  body:not(.page-home) #mainNav .navbar-brand-logo {
    height: 68px;
    max-width: min(100%, 520px);
  }
  body:not(.page-home) #mainNav .navbar-collapse.collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding-left: 24px;
    padding-right: 0;
    border-top: none;
  }
  body:not(.page-home) #mainNav .navbar-nav {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 10px;
    float: none !important;
    margin: 0 0 0 auto !important;
  }
  body:not(.page-home) #mainNav .navbar-nav > li {
    float: none !important;
  }
  body:not(.page-home) #mainNav .nav > li > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 74px;
    padding: 0 14px;
    line-height: 1;
  }
  body:not(.page-home) #mainNav .nav-cta {
    margin-left: 8px;
  }
  body:not(.page-home) #mainNav .nav-cta > a {
    height: 42px !important;
    padding: 0 20px !important;
  }

  .page-home #mainNav {
    min-height: 74px;
  }
  .page-home #mainNav > .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 74px;
  }
  .page-home #mainNav .navbar-header {
    float: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 74px;
    margin: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .page-home #mainNav .navbar-brand {
    float: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    padding: 0;
    line-height: 1;
  }
  .page-home #mainNav .navbar-brand-logo {
    height: 68px;
    max-width: min(100%, 520px);
  }
  .page-home #mainNav .navbar-collapse.collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding-left: 28px;
    padding-right: 0;
    border-top: none;
  }
  .page-home #mainNav .navbar-nav {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 10px;
    float: none !important;
    margin: 0 0 0 auto !important;
  }
  .page-home #mainNav .navbar-nav > li {
    float: none !important;
  }
  .page-home #mainNav .nav > li > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 74px;
    padding: 0 14px;
    line-height: 1;
  }
  .page-home #mainNav .nav-cta {
    margin-left: 8px;
  }
  .page-home #mainNav .nav-cta > a {
    height: 44px !important;
    padding: 0 20px !important;
  }
  .page-home .hero {
    padding-top: 99px;
  }
}

@media (max-width: 767px) {
  body:not(.page-home) #mainNav {
    min-height: 68px;
  }
  body:not(.page-home) #mainNav .navbar-header {
    min-height: 68px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    margin: 0;
  }
  body:not(.page-home) #mainNav .navbar-brand {
    margin: 0;
    padding: 0;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: flex-start;
    max-width: calc(100% - 60px);
  }
  body:not(.page-home) #mainNav .navbar-brand-logo {
    height: 62px;
    max-width: min(100%, 360px);
  }
  body:not(.page-home) #mainNav .navbar-toggle {
    margin: 0;
    width: 42px;
    height: 42px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    flex: 0 0 42px;
  }

  .page-home #mainNav {
    min-height: 68px;
  }
  .page-home #mainNav .navbar-header {
    min-height: 68px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    margin: 0;
  }
  .page-home #mainNav .navbar-brand {
    margin: 0;
    padding: 0;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: flex-start;
    max-width: calc(100% - 60px);
  }
  .page-home #mainNav .navbar-brand-logo {
    height: 62px;
    max-width: min(100%, 360px);
  }
  .page-home #mainNav .navbar-toggle {
    margin: 0;
    width: 42px;
    height: 42px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    flex: 0 0 42px;
  }
}

/* Mobile hamburger */
.navbar-custom .navbar-toggle {
  width: 42px;
  height: 42px;
  padding: 0;
  margin: 0;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid rgba(61,43,31,.42);
  border-radius: 12px;
  background: rgba(253,250,247,.92);
  transition: border-color var(--tr), box-shadow var(--tr), background-color var(--tr);
}
.navbar-custom .navbar-toggle .icon-bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background-color: var(--brown);
  transition: transform var(--tr), opacity var(--tr);
}
.navbar-custom .navbar-toggle .icon-bar + .icon-bar { margin-top: 5px; }
.navbar-custom .navbar-toggle:hover {
  border-color: rgba(201,169,110,.72);
  background: rgba(253,250,247,.99);
}
.navbar-custom .navbar-toggle:focus,
.navbar-custom .navbar-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(201,169,110,.24);
}
.navbar-custom .navbar-collapse {
  background: rgba(253,250,247,.99);
  border-top: 1px solid var(--beige-d);
}
@media (min-width: 768px) {
  .navbar-custom .navbar-toggle {
    display: none !important;
  }
  .navbar-custom .navbar-collapse {
    background: transparent;
    border-top: none;
  }
}

/* Bootstrap collapse fix - bez tego menu potrafi być stale ukryte albo stale otwarte */
.navbar-collapse.collapse {
  display: none !important;
}
.navbar-collapse.collapse.in {
  display: block !important;
}
@media (min-width: 768px) {
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    overflow: visible !important;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--brown);
  background-image: url('../magazyn/image/slider/paznokcie-ktore-mowia-o-tobie-wiecej-niz-slowa.png');
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: right center;
  padding-top: 93px;
}
.hero--indiba    { background-image: url('../magazyn/image/slider/8.jpg'); background-position: center 35%; }
.hero--szkolenia { background-image: url('../magazyn/image/slider/zostan-profesjonalna-stylistka-paznokci.png'); background-position: right center; }
.hero--subpage   { min-height: 52vh; padding-top: 100px; background-image: url('../magazyn/image/slider/10.jpg'); }

/* OVERLAY: poziomy gradient (90deg) per spec — lewa ciemna, prawa czysta */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.60) 0%,
    rgba(0,0,0,0.30) 55%,
    rgba(0,0,0,0.05) 100%
  );
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-inner { max-width: 600px; padding: 48px 0; }

/* Pretitle — mały, dyskretny */
.hero-pretitle {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-l);
  margin-bottom: 16px;
  opacity: 0.9;
}

/* H1 HERO: desktop 48-56px per spec (px wartości) */
.hero-title {
  font-family: var(--serif);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 300;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 20px;
  max-width: 560px;
  text-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.hero-title em { color: var(--gold-l); font-style: italic; }

/* Podtytuł — konkret, czytelny */
.hero-subtitle {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,.88);
  margin-bottom: 36px;
  max-width: 520px;
}

/* CTA buttons group */
.hero-cta-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* Trust bar */
.hero-trust {
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(255,255,255,.6);
  letter-spacing: 0.3px;
}
.hero-trust .sep { margin: 0 10px; opacity: .5; }
.hero-trust .fa  { color: var(--gold); margin-right: 3px; }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-hint span {
  display: block; width: 1px; height: 48px;
  background: rgba(255,255,255,.4);
  animation: scrollHint 1.8s ease-in-out infinite;
}
@keyframes scrollHint {
  0%,100% { opacity:.2; transform: scaleY(.5); }
  50%      { opacity:1;  transform: scaleY(1); }
}

/* ===== PRZYCISKI ===== */
.btn {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--r);
  padding: 0 24px;
  height: 48px;
  min-height: 48px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--tr);
  line-height: 1;
  white-space: nowrap;
}

/* HERO PRIMARY: height 52px, font-weight 600, border-radius 8px per spec */
.btn-primary-w {
  background: #fff;
  color: var(--dark);
  height: 52px !important;
  min-height: 52px !important;
  padding: 0 28px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
}
.btn-primary-w:hover { background: var(--gold); color: var(--dark); }

.btn-ghost-w {
  background: transparent;
  color: rgba(255,255,255,.9);
  border: 1.5px solid rgba(255,255,255,.55);
  height: 52px !important;
  min-height: 52px !important;
  padding: 0 24px !important;
  border-radius: 8px !important;
}
.btn-ghost-w:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }

.btn-primary-dark {
  background: var(--brown);
  color: var(--cream);
  font-weight: 700;
}
.btn-primary-dark:hover { background: var(--gold); color: var(--dark); }

.btn-outline-dark {
  background: transparent;
  color: var(--brown);
  border: 1.5px solid var(--brown);
}
.btn-outline-dark:hover { background: var(--brown); color: var(--cream); }

.btn-offer {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  font-size: 13px;
  height: 44px;
  min-height: 44px;
  padding: 0 20px;
}
.btn-offer:hover { background: var(--gold); color: var(--dark); }

/* ===== O WIOLECIE ===== */
.section-about {
  padding: 88px 0;  /* desktop 80-100px per spec */
  background: var(--cream);
}
.about-row { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -ms-flex-wrap: wrap; flex-wrap: wrap; }
.about-img-col { margin-bottom: 32px; }
.about-img-wrap { position: relative; display: inline-block; width: 100%; }
.about-img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  object-fit: cover;
  object-position: center top;
  aspect-ratio: 4 / 5;
  min-height: 280px;
  max-height: 560px;
}
.about-badge {
  position: absolute;
  bottom: -16px; right: -12px;
  background: var(--gold);
  color: var(--dark);
  padding: 16px 20px;
  border-radius: var(--r-lg);
  text-align: center;
  box-shadow: var(--sh);
}
.badge-number { display: block; font-family: var(--serif); font-size: 36px; font-weight: 600; line-height: 1; }
.badge-label  { display: block; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; margin-top: 4px; }

.about-text-col { padding-left: 20px; }
.about-lead {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.65;
  color: var(--brown-m);
  margin-bottom: 16px;
}
.about-expand { overflow: hidden; max-height: 0; transition: max-height 0.5s ease; }
.about-expand.open { max-height: 320px; }
.about-expand p { font-size: 16px; color: var(--gray); }
.btn-read-more {
  background: none; border: none;
  color: var(--gold); font-size: 14px; font-weight: 600;
  letter-spacing: 0.5px; cursor: pointer; padding: 0;
  margin: 12px 0 28px; transition: color var(--tr);
  text-transform: uppercase;
}
.btn-read-more:hover { color: var(--brown); }
.btn-read-more.is-open i {
  transform: rotate(0deg);
}
.btn-read-more i {
  transition: transform var(--tr);
}
.btn-read-more.is-open i.fa-chevron-up,
.btn-read-more.is-open i.fa-chevron-down {
  transform: rotate(180deg);
}
.about-creds { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cred { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; gap: 10px; font-size: 15px; color: var(--brown-m); }
.cred .fa { color: var(--gold); font-size: 17px; width: 20px; }

/* ===== HOMEPAGE RHYTHM + ABOUT POLISH ===== */
.page-home {
  --home-space: 92px;
  --home-space-tight: 72px;
  --home-space-mobile: 56px;
}
.page-home .section-head { margin-bottom: 44px; }
.page-home .section-about,
.page-home .section-offer,
.page-home .section-indiba-teaser,
.page-home .section-final-cta,
.page-home .section-local-seo {
  padding-top: var(--home-space);
  padding-bottom: var(--home-space);
}
.page-home .section-reviews {
  padding-top: var(--home-space);
  padding-bottom: var(--home-space-tight);
}
.page-home .section-gallery {
  padding-top: var(--home-space-tight);
  padding-bottom: 84px;
}
.page-home .section-reviews .section-head { margin-bottom: 36px; }
.page-home .reviews-aggregate { margin: 0 auto 28px; }
.page-home .review-featured-box { margin-bottom: 28px; }
.page-home .reviews-cta-wrap { margin-top: 20px; }
.page-home .section-head-gallery {
  max-width: 620px;
  margin: 0 auto 32px;
}
.page-home .section-head-gallery .section-sub {
  margin-top: 10px;
  margin-bottom: 0;
}
.page-home .about-row { align-items: center; }
.page-home .about-img-col { margin-bottom: 0; }
.page-home .about-img-wrap {
  display: block;
  max-width: 452px;
  aspect-ratio: 4 / 5;
  margin-right: auto;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: var(--sh-lg);
}
.page-home .about-img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
  object-position: center 12%;
}
.page-home .about-badge {
  right: 16px;
  bottom: 16px;
  padding: 14px 18px;
}
.page-home .about-text-col { padding-left: 34px; }
.page-home .about-lead { margin-bottom: 18px; }
.page-home .about-expand p { margin-bottom: 0; }
.page-home .btn-read-more { margin: 14px 0 24px; }

/* ===== OFERTA ===== */
.section-offer { padding: 88px 0; background: var(--beige); }

/* Manicure — główna karta full-width */
.offer-main-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--brown);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  margin-bottom: 28px;
}
.offer-main-text {
  padding: 40px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.offer-main-label {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.offer-main-text .offer-card-icon { font-size: 32px; color: var(--gold-l); margin-bottom: 12px; }
.offer-main-text .offer-card-title {
  font-size: clamp(22px, 2.5vw, 30px);
  color: #fff;
  margin: 0 0 12px;
}
.offer-main-text .offer-card-text {
  color: rgba(255,255,255,.78);
  font-size: 16px;
  margin-bottom: 20px;
}

/* Konkretne benefity */
.offer-benefits {
  margin: 0 0 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.benefit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,.9);
  line-height: 1.5;
}
.benefit .fa { color: var(--gold); margin-top: 2px; -ms-flex-negative: 0; flex-shrink: 0; font-size: 15px; }
.benefit strong { color: #fff; }

.offer-price-info { font-size: 14px; color: rgba(255,255,255,.5); margin-bottom: 24px; font-style: italic; }

.offer-cta-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.offer-link-more {
  font-size: 14px; color: var(--gold-l);
  text-decoration: none; font-weight: 600;
  transition: color var(--tr);
  letter-spacing: 0.3px;
}
.offer-link-more:hover { color: var(--gold); }

.offer-main-img { position: relative; min-height: 340px; }
.offer-main-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Pozostałe karty */
.offer-card-col { margin-bottom: 24px; }
.offer-card {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 32px 28px;  /* spec: padding 24-32px */
  height: 100%;
  box-shadow: var(--sh);
  position: relative;
  transition: transform var(--tr), box-shadow var(--tr);
}
.offer-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.offer-card-icon { font-size: 32px; color: var(--gold); margin-bottom: 14px; }
.offer-card-badge-new {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--dark);
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 5px 14px; border-radius: 20px;
}
.offer-card-title { font-size: clamp(20px, 2vw, 26px); color: var(--dark); margin: 0 0 10px; }
.offer-card-text  { font-size: 16px; color: var(--gray); margin-bottom: 18px; line-height: 1.65; }

.offer-benefits-small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.benefit-s {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  color: var(--brown-m);
}
.benefit-s .fa { color: var(--gold); font-size: 13px; -ms-flex-negative: 0; flex-shrink: 0; }

/* ===== MID-PAGE CTA ===== */
/* Sekcja po ofercie — per spec */
.section-mid-cta { background: var(--gold); padding: 0; }
.mid-cta-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 28px 0;
}
.mid-cta-icon-fa { font-size: 32px; color: var(--dark); opacity: .45; -ms-flex-negative: 0; flex-shrink: 0; }
.mid-cta-text { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; min-width: 200px; }
.mid-cta-headline {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--dark);
  margin: 0 0 4px;
  line-height: 1.25;
}
.mid-cta-sub { font-size: 15px; color: rgba(26,18,8,.72); margin: 0; }
.mid-cta-btn {
  background: var(--dark) !important;
  color: #fff !important;
  height: 50px !important;
  min-height: 50px !important;
  padding: 0 28px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  white-space: nowrap;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 6px !important;
}
.mid-cta-btn:hover { background: var(--brown) !important; color: #fff !important; }

/* ===== INDIBA TEASER ===== */
/* Layout: lewa zdjęcie, prawa tekst + liczby per spec */
.section-indiba-teaser { padding: 88px 0; background: var(--cream); }
.indiba-teaser-row { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -ms-flex-wrap: wrap; flex-wrap: wrap; }
.indiba-img-col { margin-bottom: 32px; }
.indiba-teaser-img { border-radius: var(--r-lg); box-shadow: var(--sh-lg); width: 100%; object-fit: cover; }

.indiba-lead { font-size: 17px; color: var(--brown-m); margin-bottom: 28px; line-height: 1.7; }

/* Karty z liczbami — per spec: padding 24-32px, font-size liczby 24-28px */
.indiba-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 28px; }
.indiba-stat {
  background: var(--beige);
  border-radius: var(--r-lg);
  padding: 28px 24px;  /* spec: 24-32px */
  text-align: center;
}
.indiba-stat-val {
  display: block;
  font-family: var(--serif);
  font-size: 28px;     /* spec: 24-28px */
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 8px;
}
.indiba-stat-label { font-size: 14px; color: var(--gray); line-height: 1.4; }

.indiba-areas { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.indiba-areas span {
  background: var(--beige-d);
  color: var(--brown-m);
  font-size: 14px; font-weight: 500;
  padding: 7px 15px; border-radius: 20px;
}

/* ===== OPINIE ===== */
.section-reviews { padding: 88px 0; background: var(--beige); }

.reviews-aggregate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 24px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 auto 40px;
  padding: 24px 32px;
  background: var(--cream);
  border-radius: var(--r-lg);
  box-shadow: var(--sh);
  max-width: 580px;
}
.reviews-score-big {
  font-family: var(--serif);
  font-size: 52px;
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
}
.score-of { font-size: 24px; color: var(--gray); font-weight: 400; }
.reviews-agg-right { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; gap: 8px; }
.stars-row .fa { color: var(--gold); font-size: 18px; margin-right: 2px; }
.reviews-badges { display: -webkit-box; display: -ms-flexbox; display: flex; gap: 8px; -ms-flex-wrap: wrap; flex-wrap: wrap; }
.badge-plat {
  font-size: 12px; font-weight: 700;
  padding: 5px 12px; border-radius: 20px; letter-spacing: 0.3px;
}
.badge-google { background: #fff; color: #4285F4; border: 1px solid #dadce0; }
.badge-booksy { background: #6A1B9A; color: #fff; }
.badge-fb     { background: #1877F2; color: #fff; }
.reviews-count-txt { font-size: 13px; color: var(--gray); }

/* Wyróżniona długa opinia */
.review-featured-box {
  background: var(--brown);
  border-radius: var(--r-lg);
  padding: 40px 40px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}
.review-featured-quote {
  font-family: var(--serif);
  font-size: 80px;
  color: var(--gold);
  opacity: .25;
  line-height: .6;
  position: absolute;
  top: 24px; left: 32px;
  user-select: none;
  pointer-events: none;
}
.review-featured-text {
  font-family: var(--serif);
  font-size: 19px;
  color: rgba(255,255,255,.9);
  line-height: 1.72;
  margin-bottom: 24px;
  padding-left: 16px;
  position: relative; z-index: 1;
}
.review-featured-foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
  padding-left: 16px;
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brown-m);
  color: var(--cream);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 14px; font-weight: 700;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.review-avatar--lg { width: 52px; height: 52px; font-size: 16px; background: rgba(255,255,255,.15); }
.review-featured-foot strong { display: block; color: #fff; font-size: 16px; }
.review-featured-foot .review-source { font-size: 13px; color: var(--gold-l); }

/* Slider kart opinii */
.reviews-slider {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  overflow: visible;
  padding-bottom: 8px;
}
.reviews-slider::-webkit-scrollbar { display: none; }
.review-card {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  min-width: 0;
  max-width: none;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  scroll-snap-align: start;
  border: 1px solid var(--beige-d);
  box-shadow: var(--sh);
  height: 100%;
}
.review-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.review-meta strong { display: block; font-size: 15px; color: var(--dark); }
.review-source { font-size: 13px; color: var(--gray); }
.review-stars { margin-left: auto; color: var(--gold); font-size: 14px; }
.review-text { font-size: 15px; line-height: 1.72; color: var(--brown-m); font-style: italic; margin: 0; }

.reviews-nav {
  display: none;
  gap: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 16px 0 20px;
}
.review-prev, .review-next {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--beige-d);
  background: var(--cream); color: var(--brown);
  cursor: pointer; font-size: 15px;
  transition: all var(--tr);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.review-prev:hover, .review-next:hover { background: var(--brown); color: var(--cream); border-color: var(--brown); }
.reviews-cta-wrap { margin-top: 8px; }

/* ===== GALERIA Z PODPISAMI ===== */
.section-gallery { padding: 96px 0 80px; background: var(--beige); }
.section-head-gallery {
  max-width: 640px;
  margin: 0 auto 40px;
}
.section-head-gallery .section-sub {
  max-width: 560px;
  margin: 12px auto 0;
}
.gallery-shell {
  max-width: 1120px;
  margin: 0 auto;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
}
.gallery-item {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  display: block;
  text-align: left;
  background: #fff;
  box-shadow: 0 10px 28px rgba(61,43,31,.08);
  -webkit-appearance: none;
  appearance: none;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,18,8,.02) 0%, rgba(26,18,8,.16) 100%);
  opacity: 0;
  transition: opacity var(--tr);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.45s ease;
}
.gallery-item:hover img,
.gallery-item:focus-visible img { transform: scale(1.02); }
.gallery-item:hover::after,
.gallery-item:focus-visible::after { opacity: 1; }
.gallery-item:focus-visible {
  outline: 2px solid rgba(201,169,110,.75);
  outline-offset: 3px;
}
/* Podpis - widoczny zawsze, overlay gradient */
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(26,18,8,.82));
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 30px 16px 14px;
  letter-spacing: 0.24px;
  line-height: 1.3;
  z-index: 1;
}

.gallery-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 28px;
}

.gallery-lightbox-open {
  overflow: hidden;
}
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 24px;
}
.gallery-lightbox[hidden] {
  display: none !important;
}
.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26,18,8,.86);
}
.gallery-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1100px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}
.gallery-lightbox-figure {
  margin: 0;
}
.gallery-lightbox-figure img {
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 150px);
  display: block;
  margin: 0 auto;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.gallery-lightbox-caption {
  font-size: 14px;
  color: rgba(255,255,255,.84);
  text-align: center;
  margin-top: 16px;
  letter-spacing: 0.2px;
}
.gallery-lightbox-close,
.gallery-lightbox-nav {
  border: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: rgba(255,255,255,.1);
  color: #fff;
  cursor: pointer;
  transition: background var(--tr), transform var(--tr);
  -webkit-appearance: none;
  appearance: none;
}
.gallery-lightbox-close:hover,
.gallery-lightbox-close:focus-visible,
.gallery-lightbox-nav:hover,
.gallery-lightbox-nav:focus-visible {
  background: rgba(255,255,255,.18);
}
.gallery-lightbox-close:focus-visible,
.gallery-lightbox-nav:focus-visible {
  outline: 2px solid rgba(201,169,110,.75);
  outline-offset: 3px;
}
.gallery-lightbox-close {
  position: absolute;
  top: -10px;
  right: 56px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}
.gallery-lightbox-nav {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 16px;
}

/* ===== FINAL CTA ===== */
.section-final-cta { background: var(--brown); padding: 88px 0; text-align: center; }
.final-cta-inner { max-width: 620px; margin: 0 auto; }
.final-cta-title { color: #fff; font-size: clamp(24px, 4vw, 42px); margin-bottom: 16px; }
.final-cta-sub { color: rgba(255,255,255,.75); font-size: 18px; margin-bottom: 32px; line-height: 1.65; }
.final-cta-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.final-cta-contact { font-size: 15px; color: rgba(255,255,255,.5); }
.final-cta-contact .fa { color: var(--gold-l); margin-right: 5px; }

/* ===== STOPKA ===== */
.site-footer { background: var(--dark); color: rgba(255,255,255,.6); padding: 64px 0 32px; font-size: 15px; }
.footer-logo { font-family: var(--serif); font-size: 28px; color: var(--cream); line-height: 1.1; margin-bottom: 16px; }
.footer-logo small { display: block; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-top: 4px; font-family: var(--sans); }
.site-footer h4 { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0 0 24px; }
.site-footer ul li { margin-bottom: 9px; }
.site-footer ul a { color: rgba(255,255,255,.58); text-decoration: none; font-size: 15px; transition: color var(--tr); }
.site-footer ul a:hover { color: var(--gold); }
.site-footer address { font-style: normal; }
.site-footer address p { margin-bottom: 10px; font-size: 15px; }
.site-footer address .fa { color: var(--gold); margin-right: 8px; width: 14px; }
.site-footer address a { color: rgba(255,255,255,.58); text-decoration: none; }
.hours-table { width: 100%; font-size: 14px; }
.hours-table td { padding: 5px 0; }
.hours-table td:last-child { text-align: right; color: var(--gold-l); }
.footer-social { display: -webkit-box; display: -ms-flexbox; display: flex; gap: 9px; margin-top: 20px; -ms-flex-wrap: wrap; flex-wrap: wrap; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: -webkit-box; display: -ms-flexbox; display: flex;
  -webkit-box-align: center; -ms-flex-align: center; align-items: center;
  -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: 14px; text-decoration: none;
  transition: all var(--tr);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-social-booksy, .footer-social-tiktok { font-size: 10px; font-weight: 700; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px; margin-top: 32px;
  display: -webkit-box; display: -ms-flexbox; display: flex;
  -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between;
  -webkit-box-align: center; -ms-flex-align: center; align-items: center;
  -ms-flex-wrap: wrap; flex-wrap: wrap; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.32);
}
.footer-bottom p { margin: 0; }
.footer-credit a { color: rgba(255,255,255,.32); }

/* Page header dla podstron */
.page-header-section { background: var(--beige); padding: 7rem 0 3rem; border-bottom: 1px solid var(--beige-d); }
.page-header-title { font-size: clamp(32px, 5vw, 52px); margin: 8px 0 12px; }
.page-header-sub { font-size: 17px; color: var(--gray); margin: 0; }

/* ===== BLOG ===== */
.blog-list-section { padding: 88px 0 96px; background: var(--cream); }
.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.blog-card {
  display: flex; flex-direction: column;
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: var(--sh); color: var(--dark);
  text-decoration: none; transition: transform .25s, box-shadow .25s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.blog-card-image { aspect-ratio: 4 / 3; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; }
.blog-card-date { font-size: 12px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--gold); }
.blog-card-title { font-size: 20px; line-height: 1.35; margin: 0; font-family: var(--serif); }
.blog-card-excerpt { font-size: 15px; color: var(--gray); line-height: 1.65; margin: 0; }
.blog-card-link { font-size: 13px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--brown); }

.blog-article-section { padding: 88px 0 40px; background: var(--cream); }
.blog-article-hero { max-width: 980px; margin: 0 auto 32px; }
.blog-article-hero img { width: 100%; height: auto; display: block; border-radius: 18px; box-shadow: var(--sh); }
.blog-article-content { max-width: 820px; margin: 0 auto; font-size: 17px; line-height: 1.85; color: var(--dark); }
.blog-article-content p { margin: 0 0 18px; }
.blog-article-content img { max-width: 100%; height: auto; border-radius: 12px; margin: 16px auto; display: block; }
.blog-article-content h2, .blog-article-content h3, .blog-article-content h4 {
  margin: 26px 0 12px; font-family: var(--serif); color: var(--dark);
}
.blog-article-content a { color: var(--brown); text-decoration: underline; text-underline-offset: 3px; }
.blog-article-content .pull-left {
  float: left; margin: 6px 18px 14px 0; max-width: 48%;
}
.blog-article-content .pull-right {
  float: right; margin: 6px 0 14px 18px; max-width: 48%;
}
.blog-article-content::after { content: ""; display: block; clear: both; }
.blog-article-back { max-width: 820px; margin: 28px auto 0; text-align: center; }
.blog-more-section { padding: 56px 0 96px; background: var(--beige); }

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 992px) {
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .blog-article-hero { max-width: 100%; }
  .blog-article-content { max-width: 720px; }
  .offer-main-card { grid-template-columns: 1fr; }
  .offer-main-img { min-height: 280px; }
  .offer-main-img img { position: static; height: 280px; border-radius: 0 0 var(--r-lg) var(--r-lg); }
  .indiba-stats { grid-template-columns: 1fr 1fr; }
  .page-home .section-head { margin-bottom: 40px; }
  .page-home .section-about,
  .page-home .section-offer,
  .page-home .section-indiba-teaser,
  .page-home .section-final-cta,
  .page-home .section-local-seo {
    padding-top: 82px;
    padding-bottom: 82px;
  }
  .page-home .section-reviews {
    padding-top: 82px;
    padding-bottom: 64px;
  }
  .page-home .section-gallery {
    padding-top: 64px;
    padding-bottom: 76px;
  }
  .page-home .about-img-col { margin-bottom: 28px; }
  .page-home .about-img-wrap {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-home .about-text-col { padding-left: 15px; }
  .page-home .about-badge {
    right: 14px;
    bottom: 14px;
  }
  .page-home .reviews-aggregate { margin-bottom: 24px; }
  .page-home .section-head-gallery { margin-bottom: 28px; }
  .gallery-shell { max-width: 820px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-lightbox-dialog {
    width: min(100%, 860px);
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }
  .gallery-lightbox-close {
    top: -52px;
    right: 0;
  }
  .gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .gallery-lightbox-prev { left: 12px; }
  .gallery-lightbox-next { right: 12px; }
}

@media (max-width: 768px) {
  /* STICKY CTA — tylko mobile */
  .sticky-cta-mobile { display: block; }
  .page-home .sticky-cta-mobile { display: none !important; }

  /* Body mobile: 16px per spec */
  body { font-size: 16px; }
  p    { font-size: 16px; }

  /* Sekcje mobile: 52-64px per spec (50-70px) */
  .section-about, .section-offer, .section-reviews,
  .section-indiba-teaser, .section-gallery, .section-final-cta { padding: 56px 0; }
  .page-home .section-about,
  .page-home .section-offer,
  .page-home .section-indiba-teaser,
  .page-home .section-gallery,
  .page-home .section-final-cta,
  .page-home .section-reviews,
  .page-home .section-local-seo {
    padding-top: var(--home-space-mobile);
    padding-bottom: var(--home-space-mobile);
  }
  .page-home .section-head { margin-bottom: 30px; }
  .page-home .section-head-gallery { margin-bottom: 24px; }
  .page-home .section-reviews .section-head { margin-bottom: 28px; }
  .page-home .reviews-aggregate { margin-bottom: 20px; }
  .page-home .review-featured-box { margin-bottom: 24px; }

  /* Hero: mobile H1 30-34px per spec */
  .hero {
    min-height: 90vh;
    padding-top: 80px;
    background-size: cover;
    background-position: 70% center;
  }
  .hero-title { font-size: clamp(28px, 7.5vw, 34px) !important; }
  .home-seo-heading-section {
    padding: 14px 0 4px;
  }
  .home-seo-heading {
    font-size: 16px;
    line-height: 1.55;
    padding: 0 4px;
  }
  .hero-subtitle { font-size: 16px; }
  .hero-inner { padding: 32px 0 72px; }
  .hero-cta-group { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; gap: 12px; }
  .hero-cta-group .btn { width: 100%; }
  .hero-trust .sep { margin: 0 8px; }
  .btn-primary-w, .btn-ghost-w { height: 48px !important; min-height: 48px !important; }

  /* H2 mobile: 24px per spec */
  h2, .section-title { font-size: clamp(22px, 6vw, 28px) !important; }
  h3, .offer-card-title { font-size: 20px !important; }
  .offer-seo-note {
    font-size: 14px;
    margin-top: 16px;
  }
  .section-local-seo {
    padding-top: 18px;
  }
  .local-seo-box p {
    font-size: 16px;
    line-height: 1.7;
  }

  /* Nav mobile */
  .navbar-custom .container {
    padding-left: 18px;
    padding-right: 18px;
  }
  .navbar-custom .navbar-header {
    margin-left: 0;
    margin-right: 0;
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .navbar-custom .navbar-brand {
    order: 1;
    float: none !important;
    margin: 0 !important;
    margin-right: auto !important;
    padding: 0;
    text-align: left;
    justify-content: flex-start;
    max-width: calc(100% - 54px);
  }
  .navbar-custom .navbar-brand-logo {
    height: 62px;
    max-width: min(100%, 360px);
  }
  .navbar-custom .navbar-toggle {
    order: 2;
    float: none !important;
    margin: 0;
    margin-left: auto;
    width: 42px;
    height: 42px;
    padding: 0;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    flex: 0 0 42px;
    flex-shrink: 0;
  }
  .navbar-custom .navbar-collapse,
  .navbar-custom .navbar-collapse.collapse {
    display: block !important;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    pointer-events: none;
    background: rgba(253,250,247,.99);
    border: 1px solid transparent;
    border-radius: 16px;
    box-shadow: none;
    margin: 8px 0 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0 18px;
    transform: translateY(-8px);
    transition: max-height .28s ease, opacity .2s ease, transform .28s ease, visibility .28s ease, border-color .28s ease, box-shadow .28s ease, padding .28s ease;
  }
  .navbar-custom .navbar-collapse.collapse.in {
    max-height: 480px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    border-color: var(--beige-d);
    box-shadow: 0 14px 34px rgba(61,43,31,.14);
    padding: 8px 18px 16px;
  }
  .navbar-custom .navbar-collapse .navbar-nav {
    display: block !important;
    -ms-flex-align: normal !important;
    align-items: normal !important;
    margin: 0 !important;
    float: none !important;
  }
  .navbar-custom .navbar-collapse .nav > li {
    float: none !important;
  }
  .navbar-custom .navbar-collapse .nav > li + li {
    border-top: 1px solid rgba(237,230,219,.72);
  }
  .navbar-custom .navbar-collapse .nav > li > a {
    display: block;
    padding: 15px 0;
    font-size: 15px;
    line-height: 1.35;
  }
  .navbar-custom .navbar-collapse .nav-cta {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(237,230,219,.72);
  }
  .navbar-custom .navbar-collapse .nav-cta > a {
    margin: 0 !important;
    width: 100%;
    height: 48px !important;
    justify-content: center !important;
    display: flex !important;
    padding: 0 18px !important;
  }

  /* About */
  .about-text-col { padding-left: 0; }
  .about-img-col { margin-bottom: 40px; }
  .about-badge { right: 0; }
  .about-img {
    aspect-ratio: 4 / 5;
    object-position: center 12%;
    max-height: none;
  }
  .about-creds { grid-template-columns: 1fr; gap: 12px; }
  .about-lead { font-size: 18px; }
  .page-home .section-about .container {
    padding-left: 18px;
    padding-right: 18px;
  }
  .page-home .about-row {
    margin-left: 0;
    margin-right: 0;
  }
  .page-home .about-img-col { margin-bottom: 28px; }
  .page-home .about-img-col,
  .page-home .about-text-col {
    padding-left: 0;
    padding-right: 0;
  }
  .page-home .about-img-wrap {
    max-width: 360px;
    aspect-ratio: 4 / 5;
  }
  .page-home .about-badge {
    right: 12px;
    bottom: 12px;
    padding: 12px 16px;
  }
  .page-home .about-text-col { padding-left: 0; }
  .page-home .btn-read-more { margin-bottom: 22px; }

  /* Offer main */
  .offer-main-text { padding: 28px 24px; }
  .offer-main-text .offer-card-title { font-size: 22px; }
  .offer-card { padding: 28px 20px; }

  /* Mid CTA */
  .mid-cta-inner { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; text-align: center; padding: 24px 0; }
  .mid-cta-icon-fa { display: none; }
  .mid-cta-btn { width: 100%; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }
  .mid-cta-headline { font-size: 20px; }

  /* Indiba */
  .indiba-img-col { margin-bottom: 32px; }
  .indiba-stats { grid-template-columns: 1fr 1fr; gap: 14px; }
  .indiba-stat-val { font-size: 24px; }
  .indiba-stat { padding: 20px 16px; }

  /* Reviews */
  .reviews-aggregate { padding: 20px 20px; gap: 16px; max-width: 100%; }
  .reviews-score-big { font-size: 40px; }
  .review-featured-box { padding: 28px 24px; }
  .review-featured-text { font-size: 16px; padding-left: 0; }
  .reviews-slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .review-card { min-width: unset; max-width: 100%; }
  .reviews-nav { display: none; }

  /* Galeria */
  .section-head-gallery { margin-bottom: 26px; }
  .gallery-shell { max-width: none; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .gallery-item {
    aspect-ratio: 3 / 4;
    border-radius: 10px;
  }
  .gallery-caption {
    font-size: 12px;
    padding: 24px 12px 11px;
  }
  .gallery-lightbox { padding: 18px 12px; }
  .gallery-lightbox-figure img { max-height: calc(100vh - 170px); }
  .gallery-lightbox-close {
    top: -48px;
    width: 40px;
    height: 40px;
  }
  .gallery-lightbox-nav {
    width: 42px;
    height: 42px;
  }
  .gallery-lightbox-prev { left: 6px; }
  .gallery-lightbox-next { right: 6px; }

  /* Final CTA */
  .final-cta-btns { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -ms-flex-align: center; align-items: center; }
  .final-cta-btns .btn { width: 100%; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }
  .section-final-cta { padding-bottom: 80px; } /* miejsce na sticky CTA */
  .site-footer { padding-bottom: 80px; }
  .page-home .section-final-cta { padding-bottom: var(--home-space-mobile); }
  .page-home .site-footer { padding-bottom: 32px; }

  /* Footer */
  .site-footer {
    padding-top: 56px;
  }
  .site-footer .footer-main > [class*="col-"] {
    margin-bottom: 28px;
  }
  .site-footer .footer-brand {
    margin-bottom: 32px;
  }
  .site-footer .footer-social {
    margin-bottom: 22px;
  }
  .site-footer .footer-nav {
    margin-top: 2px;
  }
  .site-footer .footer-contact {
    margin-bottom: 0;
  }
  .footer-bottom { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; text-align: center; }

  /* Blog */
  .blog-list-section { padding: 64px 0 72px; }
  .blog-grid { grid-template-columns: 1fr; gap: 18px; }
  .blog-card-body { padding: 20px; }
  .blog-card-title { font-size: 19px; }
  .blog-article-section { padding: 64px 0 32px; }
  .blog-article-content { font-size: 16px; line-height: 1.8; }
  .blog-article-content .pull-left,
  .blog-article-content .pull-right {
    float: none; max-width: 100%; margin: 16px 0;
  }
  .blog-more-section { padding: 48px 0 72px; }
}

@media (max-width: 480px) {
  .page-home .about-img-wrap { max-width: 320px; }
  .page-home .about-badge {
    right: 10px;
    bottom: 10px;
    padding: 11px 14px;
  }
  .gallery-grid { grid-template-columns: 1fr; }
  .indiba-stats { grid-template-columns: 1fr 1fr; }
  .reviews-aggregate { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; text-align: center; }
  .reviews-agg-right { -webkit-box-align: center; -ms-flex-align: center; align-items: center; }
}
