/* ===================================================
   LOARÉ Skin Rituals — Global Stylesheet
   Inspired by: AA Kosmetologia clean/spacious layout
   =================================================== */

/* Google Fonts loaded via <link> in HTML (non-render-blocking) */

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --cream:       #F2EBE1;
  --cream-light: #FAF7F4;
  --white:       #FFFFFF;
  --black:       #111111;
  --taupe:       #B5A090;
  --taupe-mid:   #C8BBAF;
  --text:        #111111;
  --text-mid:    #5A5550;
  --text-light:  #9A9390;
  --border:      rgba(181, 160, 144, 0.22);

  --dark-warm: #6B5C52;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  --max-w:      960px;
  --nav-h:      158px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.15;
  color: var(--black);
}
h1 { font-size: clamp(2.2rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.65rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1rem; font-weight: 500; font-family: var(--font-sans); }
em { font-style: italic; }
strong { font-weight: 500; }

p { color: var(--text-mid); line-height: 1.9; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 1rem;
  display: block;
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}
.container--wide { max-width: 1100px; }
.container--narrow { max-width: 680px; }

section { padding: clamp(3.5rem, 8vw, 6rem) clamp(1.25rem, 4vw, 2rem); }

hr.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 1px 12px rgba(17,17,17,0.05); }

.nav-inner {
  max-width: calc(var(--max-w) + 120px);
  margin: 0 auto;
  padding: 0 2.75rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

/* Logo */
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 79px; width: auto; display: block; }

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
}
.nav-links a,
.nav-links .nav-drop-toggle {
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.09em;
  color: var(--text-mid);
  padding: 0.7rem 1.3rem;
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s;
  display: block;
}
.nav-links a:hover,
.nav-links .nav-drop-toggle:hover { color: var(--black); }

/* Dropdown */
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 8px 28px rgba(17,17,17,0.09);
  padding: 10px 0 0.6rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* zamykanie z opóźnieniem 250ms, otwieranie natychmiastowe */
  transition: opacity 0.2s ease 0.25s, visibility 0s linear 0.45s, transform 0.2s ease 0.25s;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown,
.nav-item.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.15s ease 0s, visibility 0s linear 0s, transform 0.15s ease 0s;
}
.nav-dropdown a {
  display: block;
  padding: 0.75rem 1.4rem;
  font-size: 0.75rem;
  color: var(--text-mid);
  letter-spacing: 0;
}
.nav-dropdown a:hover { color: var(--black); background: var(--cream-light); }

/* CTA button in nav */
.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white) !important;
  background: #222222;
  padding: 0 1.75rem;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--taupe) !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-right: -10px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--black);
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile menu overlay */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 199;
  background: var(--white);
  flex-direction: column;
  padding: var(--nav-h) 2rem 3rem;
  overflow-y: auto;
}
.nav-mobile-overlay.open { display: flex; }

.nav-mobile-overlay a {
  display: flex;
  align-items: center;
  min-height: 44px;
  font-size: 1.05rem;
  color: var(--text-mid);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-serif);
  font-weight: 300;
  letter-spacing: 0.04em;
}
.nav-mobile-overlay a:hover { color: var(--black); }
.nav-mobile-overlay .nav-cta {
  display: block;
  text-align: center;
  margin-top: 2rem;
  padding: 1rem;
  font-family: var(--font-sans);
}

/* Back link (subpages) */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.2s;
  margin-bottom: 1.5rem;
}
.back-link:hover { color: var(--black); }
.back-link::before { content: '←'; font-size: 0.8rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn-dark   { background: #222222; color: var(--white); }
.btn-dark:hover { background: #444444; }
.btn-outline { border: 1px solid var(--black); color: var(--black); background: transparent; }
.btn-outline:hover { background: var(--dark-warm); color: var(--white); }
.btn-taupe  { background: var(--taupe); color: var(--white); }
.btn-taupe:hover { background: var(--dark-warm); }

/* ===== HERO ===== */
.hero {
  min-height: 92svh;
  display: flex;
  align-items: stretch;
  background: var(--cream-light);
  padding: calc(var(--nav-h) + 3.5rem) 2rem 3.5rem;
  overflow: hidden;
}
.hero-inner {
  max-width: calc(var(--max-w) + 180px);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 57fr 43fr;
  gap: 4rem;
  align-items: center;
}
.hero-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-photo {
  align-self: stretch;
  background: var(--cream);
  border-radius: 2px;
  min-height: 420px;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
}
.hero-eyebrow {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 1.75rem;
}
.hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  font-weight: 400;
  line-height: 1.18;
  margin: 0 0 1.5rem;
  color: var(--black);
}
.hero h1 em {
  font-style: italic;
  color: var(--text-mid);
}
.hero-desc {
  font-size: 0.875rem;
  color: var(--text-mid);
  max-width: 430px;
  line-height: 1.7;
  margin-bottom: 2.25rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-manifest {
  margin-top: 2.25rem;
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-style: italic;
  color: var(--text-light);
  max-width: 400px;
  line-height: 1.7;
}

/* ===== FILOZOFIA ===== */
.filozofia { background: var(--white); }
.filozofia-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.filozofia-img {
  background: var(--cream);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.filozofia-img img { width: 100%; height: 100%; object-fit: cover; }
.filozofia-img-placeholder {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe-mid);
}
.filozofia-text h2 { margin-bottom: 1.5rem; }
.filozofia-text p { margin-bottom: 1rem; }
.filozofia-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 300;
  font-style: italic;
  color: var(--taupe);
  border-left: 2px solid var(--taupe-mid);
  padding: 0.5rem 0 0.5rem 1.75rem;
  margin: 2rem 0;
  line-height: 1.5;
}
.filozofia-cta { margin-top: 2rem; }

/* ===== KONSULTACJA ===== */
.konsultacja { background: var(--cream-light); }
.konsultacja .container { max-width: var(--max-w); }
.konsultacja-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.konsultacja-list {
  margin: 1.75rem 0 2rem;
}
.konsultacja-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.87rem;
  color: var(--text-mid);
}
.konsultacja-list li:last-child { border-bottom: none; }
.konsultacja-list li::before {
  content: '→';
  color: var(--taupe);
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.konsultacja-visual {
  background: var(--cream);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.konsultacja-visual-label {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--taupe-mid);
  text-align: center;
}

/* ===== DLA KOGO ===== */
.dla-kogo { background: var(--white); }
.dla-kogo .container { max-width: 680px; text-align: center; }
.dla-kogo h2 { margin-bottom: 1.25rem; }
.dla-kogo p { margin-bottom: 0.9rem; }

/* ===== TERAPIE — AA style ===== */
.terapie { background: var(--cream-light); }
.terapie .container { max-width: var(--max-w); }
.terapie-header { margin-bottom: 3.5rem; }

.terapie-category { margin-bottom: 4rem; }
.terapie-category:last-child { margin-bottom: 0; }

.terapie-category-header {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 3.5rem;
  align-items: start;
}

.terapie-category-photo {
  background: var(--cream);
  aspect-ratio: 16/9;
  overflow: hidden;
  flex-shrink: 0;
}
.terapie-category-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.terapie-category-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe-mid);
  background: var(--cream);
  min-height: 210px;
}

.terapie-category-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 1rem;
  display: block;
}
.terapie-list { margin-top: 0.5rem; }
.terapie-list li {
  border-bottom: 1px solid var(--border);
}
.terapie-list li:first-child { border-top: 1px solid var(--border); }
.terapie-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  font-size: 0.87rem;
  color: var(--text-mid);
  transition: color 0.2s, padding-left 0.2s;
  gap: 1rem;
}
.terapie-list li a:hover { color: var(--black); padding-left: 0.5rem; }
.terapie-list li a::after {
  content: '→';
  font-size: 0.8rem;
  color: var(--taupe-mid);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.terapie-list li a:hover::after { transform: translateX(3px); color: var(--taupe); }

/* ===== TECHNOLOGIE ===== */
.technologie { background: var(--white); }
.technologie .container { max-width: var(--max-w); }
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3rem;
  border: 1px solid var(--border);
}
.tech-item {
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.tech-item:nth-child(3n) { border-right: none; }
.tech-item:nth-last-child(-n+3) { border-bottom: none; }

.tech-item h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--black);
}
.tech-item p { font-size: 0.82rem; line-height: 1.75; }

/* ===== O MNIE ===== */
.o-mnie { background: var(--cream-light); }
.o-mnie-grid {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 5rem;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
}
.o-mnie-photo {
  overflow: hidden;
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.o-mnie-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.o-mnie-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe-mid);
  min-height: 480px;
}
/* Text column */
.o-mnie-text { padding-top: 0.5rem; }
.o-mnie-founder {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--taupe);
  margin: 0.5rem 0 0.75rem;
  letter-spacing: 0.02em;
}
.o-mnie-text h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
}
.o-mnie-body p {
  margin-bottom: 1.75rem;
  font-size: 0.9rem;
  line-height: 1.95;
  color: var(--text-mid);
}
.o-mnie-body p:last-child { margin-bottom: 0; }
.o-mnie-link {
  display: inline-block;
  margin-top: 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #A98B5D;
  text-decoration: none;
  border-bottom: 1px solid rgba(169,139,93,0.4);
  padding-bottom: 3px;
  transition: color 0.25s, border-color 0.25s;
}
.o-mnie-link:hover { color: #2A2622; border-color: rgba(42,38,34,0.55); }
/* Legacy — kept for other pages */
.o-mnie-stats { display: none; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  display: block;
  color: var(--black);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ===== OPINIE ===== */
.opinie { background: var(--white); }
.opinie .container { max-width: var(--max-w); }
.opinie-scores {
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 2.5rem 0;
}
.opinie-score-item {
  text-align: center;
  flex: 1;
  max-width: 200px;
  padding: 0 2rem;
  border-right: 1px solid var(--border);
}
.opinie-score-item:last-child { border-right: none; }
.opinie-score-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  display: block;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}
.opinie-score-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}
.opinie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.opinia-card {
  padding: 2rem;
  background: var(--cream-light);
  display: flex;
  flex-direction: column;
}
.opinia-stars { color: var(--taupe); font-size: 0.75rem; letter-spacing: 0.15em; margin-bottom: 1rem; }
.opinia-text {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.opinia-autor { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-top: auto; padding-top: 1.25rem; }

/* ===== WIZYTA KROKI ===== */
.wizyta { background: var(--cream-light); }
.wizyta .container { max-width: var(--max-w); }
.wizyta-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 3rem;
  margin-top: 3rem;
}
.krok-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--taupe-mid);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.krok h4 { margin-bottom: 0.4rem; font-size: 0.88rem; }
.krok p { font-size: 0.82rem; line-height: 1.75; }

/* ===== LOKALIZACJA ===== */
.lokalizacja { background: var(--white); }
.lokalizacja-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
}
.lokalizacja-text h2 { margin-bottom: 1.5rem; }
.lokalizacja-text p { margin-bottom: 1rem; }
.contact-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-mid);
}
.contact-row:last-of-type { border-bottom: none; }
.contact-row svg { flex-shrink: 0; color: var(--taupe); }
.lokalizacja-btns { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2rem; }
.lokalizacja-map {
  background: var(--cream);
  height: 360px;
  overflow: hidden;
}
.lokalizacja-map iframe { width: 100%; height: 100%; border: none; filter: grayscale(0.2) contrast(1.05); }
.map-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  color: var(--taupe-mid);
  text-align: center;
}

/* ===== FAQ ===== */
.faq { background: var(--cream-light); }
.faq .container { max-width: 720px; }
.faq-list { margin-top: 2.5rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 0.75rem 0;
  min-height: 44px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 300;
  color: var(--black);
  line-height: 1.3;
}
.faq-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--taupe);
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 0 1.25rem;
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.85;
}
.faq-item.open .faq-answer { display: block; }

/* ===== CTA FINALE ===== */
.cta-finale {
  background: var(--cream-light);
  text-align: center;
  padding: 8rem 2rem;
}
.cta-finale .eyebrow { color: var(--taupe); }
.cta-finale h2 { color: var(--black); margin-bottom: 1.25rem; }
.cta-finale p { color: var(--text-mid); max-width: 500px; margin: 0 auto 2.5rem; }
.cta-finale .btn-dark { background: #222222; color: var(--white); }
.cta-finale .btn-dark:hover { background: #444444; color: var(--white); }

/* ===== SUBPAGE HEADER ===== */
.page-hero {
  background: var(--cream-light);
  padding: calc(var(--nav-h) + 4rem) 2rem 4rem;
}
.page-hero .container { max-width: var(--max-w); }
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p { font-size: 0.95rem; max-width: 580px; }

/* ===== ARTICLE (subpages) ===== */
.article-content { background: var(--white); padding: 4.5rem 2rem; }
.article-content .container { max-width: var(--max-w); }

.article-body { max-width: 680px; }
.article-body h2 { font-size: 1.5rem; margin: 2.5rem 0 0.9rem; }
.article-body h3 { font-size: 1.1rem; margin: 2rem 0 0.6rem; }
.article-body p { margin-bottom: 1rem; }

/* O-nas style variant for article-body */
.article-body--onas h2 { font-size: clamp(1.65rem, 3.2vw, 2.6rem); font-weight: 300; color: var(--dark-warm); margin: 3rem 0 1.2rem; }
.article-body--onas p { font-size: 0.9rem; line-height: 2; margin-bottom: 1.4rem; }
.article-body--onas ul li { font-size: 0.9rem; line-height: 1.9; }
.article-img { margin: 2.5rem 0; }
.article-img img { width: 100%; height: auto; display: block; }

/* Article split: two-column text + photo layout */
.article-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin: 3.5rem 0;
}
.article-split-visual {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--cream);
}
.article-split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.article-split-text h2 {
  font-size: 1.5rem;
  margin: 0 0 0.9rem;
}
.article-split-text p {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 1rem;
}
.article-split-text ul {
  font-size: 0.87rem;
  line-height: 1.8;
  color: var(--text-mid);
  padding-left: 1.2rem;
  margin: 0;
}
.article-split-text ul li { margin-bottom: 0.35rem; }
@media (max-width: 900px) {
  .article-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .article-split-visual { aspect-ratio: 16/10; }
}
.article-body ul { margin: 0.75rem 0 1.5rem; }
.article-body ul li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.25rem;
  font-size: 0.87rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}
.article-body ul li:first-child { border-top: 1px solid var(--border); }
.article-body ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--taupe);
  font-size: 0.75rem;
  top: 0.55rem;
}

/* Indications/contraindications box */
.info-box {
  padding: 1.5rem 0;
  margin: 2rem 0;
  border-top: 1px solid rgba(169,139,93,0.22);
}
.info-box h4 {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.75rem;
}
.info-box p { font-size: 0.82rem; line-height: 1.8; }

/* Price block */
.price-block {
  margin: 2.5rem 0;
}
.price-block-header {
  padding: 0 0 0.75rem;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
  border-bottom: 1px solid rgba(169,139,93,0.22);
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(169,139,93,0.12);
  font-size: 0.87rem;
  color: var(--text-mid);
  gap: 1.5rem;
}
.price-note { font-size: 0.78rem; color: var(--text-light); font-style: italic; }

/* Article CTAs */
.article-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2.5rem 0;
}

/* First-time CTA strip */
.first-time {
  background: var(--cream);
  padding: 4rem 2rem;
  text-align: center;
}
.first-time .container { max-width: 560px; }
.first-time h3 { font-family: var(--font-serif); font-size: 1.6rem; margin-bottom: 0.75rem; }
.first-time p { margin-bottom: 2rem; }

/* ===== FOOTER ===== */
.footer {
  background: var(--cream);
  padding: 4.5rem 2rem 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-logo { margin-bottom: 1.25rem; }
.footer-logo img { height: 38px; width: auto; opacity: 1; filter: brightness(0); }
.footer-desc { font-size: 0.8rem; color: var(--text-mid); line-height: 1.8; }

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.1rem;
}
.footer-col a {
  display: block;
  font-size: 0.8rem;
  color: var(--text-mid);
  padding: 0.3rem 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--black); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.7rem;
  color: var(--text-light);
}
.footer-legal-link {
  color: var(--text-light);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.footer-legal-link:hover { opacity: 1; }

/* ===== PRIVACY PAGE ===== */
.privacy-subtitle {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-top: 0.5rem;
  font-style: italic;
}
.privacy-body h2 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  color: var(--dark-warm);
  margin: 2.5rem 0 0.8rem;
}
.privacy-body p, .privacy-body li {
  font-size: 0.9rem;
  line-height: 1.9;
}
.privacy-body h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark-warm);
  margin: 1.8rem 0 0.5rem;
  font-family: var(--font-sans);
  letter-spacing: 0.02em;
}

/* ===== FADE ANIMATION ===== */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
/* ===== TABLET (≤960px) ===== */
@media (max-width: 960px) {
  section { padding: 4rem 1.5rem; }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-photo { display: block; order: -1; max-height: 55vw; overflow: hidden; border-radius: 4px; }
  .hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

  .filozofia-grid,
  .konsultacja-grid,
  .lokalizacja-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .o-mnie-grid { grid-template-columns: 1fr; gap: 3rem; }
  .o-mnie-photo { position: static; }
  .o-mnie-text h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 1.75rem; }

  .terapie-category-header { grid-template-columns: 1fr; gap: 1.75rem; }

  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-item:nth-child(3n) { border-right: 1px solid var(--border); }
  .tech-item:nth-child(2n) { border-right: none; }

  .opinie-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

/* ===== TABLET MID (≤768px) ===== */
@media (max-width: 768px) {
  section { padding: 3.5rem 1.25rem; }

  /* Pomoc section — reduce gap on tablet */
  .pomoc-lista { column-gap: 3rem; }

  /* Zabieg grid — tighter gap */
  .zabieg-grid { column-gap: 2.5rem; }

  /* Filary — already 2-col at 860px, refine */
  .filary-grid { column-gap: 2rem; }

  /* Reduce nav height */
  :root { --nav-h: 120px; }
}

/* ===== MOBILE (≤600px) ===== */
@media (max-width: 600px) {
  :root { --nav-h: 86px; }
  section { padding: 3rem 1.25rem; }

  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { width: 100%; text-align: center; }
  .hero { min-height: auto; padding-bottom: 3rem; }

  .tech-grid { grid-template-columns: 1fr; }
  .tech-item { border-right: none !important; }
  .tech-item:nth-last-child(-n+3) { border-bottom: 1px solid var(--border); }
  .tech-item:last-child { border-bottom: none; }

  .opinie-scores { justify-content: center; }
  .opinie-score-item { max-width: none; flex: 1; padding: 0 1rem; }
  .opinie-score-num { font-size: 2rem; }
  .o-mnie-stats { flex-direction: column; gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .article-ctas { flex-direction: column; }
  .article-ctas .btn { text-align: center; }

  .price-row { flex-direction: column; align-items: flex-start; gap: 0.25rem; }

  /* Larger base text on small screens for readability */
  p, li { font-size: 0.95rem; }
  .pomoc-name, .zabieg-card-name, .filar-name { font-size: 1.1rem; }
  .pomoc-desc, .zabieg-card-desc, .filar-desc { font-size: 0.85rem; }
}

/* ===== CYTAT MARKI ===== */
.cytat {
  background: var(--white);
  padding: 6rem 2rem;
  text-align: center;
}
.cytat blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--dark-warm);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}
.cytat cite {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-style: normal;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* ===== WARTOŚCI ===== */
/* ===== FILARY MARKI ===== */
.filary {
  background: var(--white);
  padding: 5rem 0 5.5rem;
}
.filary-container {
  max-width: var(--max-w);
}
.filary-h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 2.5vw, 2.3rem);
  font-weight: 300;
  color: var(--dark-warm);
  margin: 0.5rem 0 3.5rem;
  letter-spacing: -0.02em;
}
.filary-h2 em { font-style: italic; font-weight: 300; }
.filary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 3.5rem;
}
.filar {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(169,139,93,0.3);
}
.filar-name {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
  font-style: italic;
  color: var(--dark-warm);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.filar-desc {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.8;
}
@media (max-width: 860px) {
  .filary-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 3rem; }
  .filar { border-bottom: 1px solid rgba(169,139,93,0.3); padding-bottom: 1.75rem; }
}
@media (max-width: 480px) {
  .filary-grid { grid-template-columns: 1fr; gap: 0; }
  .filar { border-bottom: 1px solid rgba(169,139,93,0.3); padding-bottom: 1.5rem; margin-bottom: 0.25rem; }
  .filar:last-child { border-bottom: none; }
}

.wartosci { background: var(--white); }
.wartosci .container { max-width: var(--max-w); }
.wartosci-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3rem;
  border: 1px solid var(--border);
}
.wartosc-item {
  padding: 2.25rem 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.wartosci-grid .wartosc-item:nth-child(3n) { border-right: none; }
.wartosci-grid .wartosc-item:nth-last-child(-n+3) { border-bottom: none; }
.wartosc-nr {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  color: var(--taupe-mid);
  display: block;
  margin-bottom: 0.75rem;
}
.wartosc-item h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 0.6rem;
}
.wartosc-item p { font-size: 0.82rem; line-height: 1.8; }

/* ===== OFERTA (kafelki hover) ===== */
.oferta { background: var(--cream-light); padding-top: 8rem; padding-bottom: 8rem; }
.oferta .container { max-width: var(--max-w); }
.oferta-cat-label {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--black);
  display: block;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.oferta-cat { margin-bottom: 5rem; }
.oferta-cat:last-child { margin-bottom: 0; }
.oferta-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  background: none;
  border: none;
  margin-bottom: 1rem;
}
.oferta-tile {
  background: var(--white);
  padding: 1.75rem 2.75rem;
  cursor: pointer;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(17,17,17,0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.oferta-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(17,17,17,0.09);
}
.oferta-tile-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
.oferta-tile-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--black);
  line-height: 1.35;
}
.oferta-tile-plus {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0;
  color: transparent;
}
.oferta-tile-plus::after {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid var(--taupe);
  border-bottom: 1.5px solid var(--taupe);
  transform: rotate(45deg);
  margin-top: -4px;
  transition: transform 0.35s ease, margin-top 0.35s ease;
}
.oferta-tile:hover .oferta-tile-plus::after,
.oferta-tile.open .oferta-tile-plus::after {
  transform: rotate(-135deg);
  margin-top: 3px;
}
.oferta-tile-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.35s ease;
}
.oferta-tile:hover .oferta-tile-body,
.oferta-tile.open .oferta-tile-body {
  max-height: 700px;
  opacity: 1;
}
.oferta-tile-body-inner {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  margin-top: 1.25rem;
}
.oferta-tile-body-inner p {
  font-size: 0.82rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}
.oferta-tile-body-inner h5 {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
  margin: 1rem 0 0.5rem;
}
.oferta-tile-body-inner ul {
  list-style: none;
  padding: 0;
}
.oferta-tile-body-inner ul li {
  font-size: 0.8rem;
  color: var(--text-mid);
  padding: 0.2rem 0;
  padding-left: 1rem;
  position: relative;
}
.oferta-tile-body-inner ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--taupe);
}

/* ===== RESPONSIVE — new sections ===== */
@media (max-width: 960px) {
  .wartosci-grid { grid-template-columns: repeat(2, 1fr); }
  .wartosci-grid .wartosc-item:nth-child(3n) { border-right: 1px solid var(--border); }
  .wartosci-grid .wartosc-item:nth-child(2n) { border-right: none; }
  .wartosci-grid .wartosc-item:nth-last-child(-n+3) { border-bottom: 1px solid var(--border); }
  .wartosci-grid .wartosc-item:nth-last-child(-n+2) { border-bottom: none; }

  .oferta-tiles { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
@media (max-width: 600px) {
  .wartosci-grid { grid-template-columns: 1fr; }
  .wartosci-grid .wartosc-item { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .wartosci-grid .wartosc-item:last-child { border-bottom: none !important; }

  .oferta-tiles { grid-template-columns: 1fr; gap: 1rem; }
}

/* ===== BOOKSY NOTICE ===== */
.booksy-notice {
  background: var(--cream-light);
  border: 1px solid var(--border);
  border-left: 3px solid var(--taupe);
  padding: 2rem 2.25rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.booksy-notice-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.booksy-notice-text .eyebrow { margin-bottom: 0.4rem; }
.booksy-notice-text p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin: 0 0 1.25rem 0;
  line-height: 1.7;
}
.booksy-notice-text .btn { margin-top: 0; }

/* ===== CENNIK PAGE ===== */
.cennik-category {
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.cennik-cat-header {
  background: var(--cream-light);
  padding: 1.5rem 2rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.cennik-cat-header .eyebrow { margin-bottom: 0.3rem; }
.cennik-cat-header h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 300;
  margin: 0;
  color: var(--text);
}
.cennik-services { padding: 0.5rem 0; }
.cennik-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 2rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-mid);
  transition: background 0.15s;
}
.cennik-row:last-child { border-bottom: none; }
.cennik-row:hover { background: var(--cream-light); }

.cennik-booksy-cta {
  background: var(--dark-warm);
  margin-top: 3rem;
  margin-bottom: 2rem;
}
.cennik-booksy-inner {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 580px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .cennik-cat-header { padding: 1.25rem 1.25rem 1rem; }
  .cennik-row { padding: 0.85rem 1.25rem; }
}

/* ── Cennik tabs ── */
.cn-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.cn-tab {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-mid);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  min-height: 44px;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 2px;
}
.cn-tab:hover { border-color: var(--taupe); color: var(--text); }
.cn-tab.active { background: var(--dark-warm); border-color: var(--dark-warm); color: var(--white); }
.cn-table { display: none; }
.cn-table.cn-active { display: block; }
.cn-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.cn-row:last-child { border-bottom: none; }
.cn-name { font-size: 0.88rem; color: var(--text); }
.cn-time { font-size: 0.7rem; color: var(--text-mid); margin-top: 3px; }
.cn-price {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--dark-warm);
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 560px) {
  .cn-tabs { gap: 0.35rem; }
  .cn-tab { font-size: 0.65rem; padding: 0.45rem 0.75rem; }
  .cn-row { flex-direction: column; gap: 0.25rem; }
  .cn-price { font-size: 1.15rem; }
}

/* ── ZABIEG GRID (twarz.html siatka kafelków) ── */
.zabieg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 5rem;
  margin: 3rem 0 3.5rem;
  border-top: 1px solid rgba(169,139,93,0.20);
}
.zabieg-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(169,139,93,0.20);
  text-decoration: none;
  cursor: pointer;
  position: relative;
}
/* Hover: animated underline on name */
.zabieg-card:hover .zabieg-card-name::after {
  width: 100%;
}
.zabieg-card-name {
  font-family: 'Fraunces', serif;
  font-optical-sizing: auto;
  font-size: 1.2rem;
  font-weight: 300;
  color: #2A2622;
  line-height: 1.3;
  margin-bottom: 0.45rem;
  position: relative;
  display: inline-block;
}
.zabieg-card-name::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #A98B5D;
  transition: width 0.45s cubic-bezier(0.4,0,0.2,1);
}
.zabieg-card-desc {
  font-size: 0.79rem;
  color: rgba(42,38,34,0.58);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.zabieg-card-arrow {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #A98B5D;
  text-decoration: none;
  margin-top: auto;
  padding-top: 0.5rem;
}
@media (max-width: 480px) {
  .zabieg-grid { grid-template-columns: 1fr; column-gap: 0; }
  .zabieg-card { padding: 1.5rem 0; }
}

/* Twarz page hero */
.page-hero-subtitle {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--taupe);
  margin: 0.5rem 0 1.25rem;
}
.page-hero-desc {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.85;
  max-width: 480px;
}

/* ── PODSTRONA ZABIEGU ── */
.zabieg-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--cream-light);
  border-left: 3px solid var(--taupe);
}
.zabieg-meta-item { display: flex; flex-direction: column; gap: 0.2rem; }
.zabieg-meta-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 500;
}
.zabieg-meta-value {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--black);
}
.back-to-twarz {
  display: inline-block;
  margin-top: 2.5rem;
  font-size: 0.84rem;
  color: var(--text-mid);
  text-decoration: none;
  letter-spacing: 0.03em;
}
.back-to-twarz:hover { color: var(--black); }

/* ── DEPILACJA — tabela odstępów ── */
.depilacja-tabela {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.75rem;
  font-size: 0.85rem;
}
.depilacja-tabela th {
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--taupe);
  padding: 0 1rem 0.6rem 0;
  border-bottom: 1px solid var(--border);
}
.depilacja-tabela td {
  padding: 0.55rem 1rem 0.55rem 0;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}
.depilacja-tabela td:first-child { color: var(--black); }

/* ── VIRTUE RF "DLACZEGO" ── */
.virtue-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 1.5rem 0 0.5rem;
}
.virtue-why-card {
  padding: 0 2.5rem 2rem 0;
  border-right: 1px solid rgba(169,139,93,0.18);
}
.virtue-why-card:last-child {
  border-right: none;
  padding-right: 0;
}
.virtue-why-card:not(:first-child) {
  padding-left: 2.5rem;
}
.virtue-why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  color: var(--dark-warm);
  margin: 0 0 0.85rem;
  line-height: 1.2;
}
.virtue-why-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin: 0;
}
@media (max-width: 900px) {
  .virtue-why-grid { grid-template-columns: repeat(2, 1fr); }
  .virtue-why-card { padding: 0 2rem 2rem 0; }
  .virtue-why-card:nth-child(even) { border-right: none; padding-right: 0; padding-left: 2rem; }
  .virtue-why-card:nth-child(odd):not(:first-child) { padding-left: 0; }
  .virtue-why-card:nth-child(n+3) { padding-top: 1.75rem; border-top: 1px solid rgba(169,139,93,0.18); }
}
@media (max-width: 540px) {
  .virtue-why-grid { grid-template-columns: 1fr; }
  .virtue-why-card { padding: 1.5rem 0; border-right: none; border-top: 1px solid rgba(169,139,93,0.18); }
  .virtue-why-card:first-child { padding-top: 0; border-top: none; }
  .virtue-why-card:not(:first-child) { padding-left: 0; }
}

/* ── RYTUAŁY ── */
.rytualy-sekcja { margin: 3.5rem 0 0; }
.rytualy-item { padding: 0 0 3.5rem; }
.rytualy-item h2 { margin-top: 0; }
.rytualy-tagline {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 300;
  color: var(--taupe);
  margin: -0.4rem 0 1.5rem;
  font-style: italic;
}
.rytualy-motto {
  margin-top: 1.75rem;
  color: var(--taupe);
  font-size: 0.95rem;
  line-height: 1.85;
  border-left: 2px solid var(--border);
  padding-left: 1.25rem;
}
.rytualy-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 0 3.5rem;
}

/* ═══════════════════════════════════════════════════════
   MOBILE-FIRST ADDITIONS
   Base = mobile (≤480px). Min-width queries add desktop styles.
   ═══════════════════════════════════════════════════════ */

/* Ensure tap targets are large enough across interactive elements */
button, [role="button"], input[type="submit"] {
  min-height: 44px;
  touch-action: manipulation;
}

/* Tighter hero on smallest screens */
@media (max-width: 480px) {
  :root { --nav-h: 82px; }
  .hero { padding-top: calc(var(--nav-h) + 2rem); padding-bottom: 2.5rem; }
  .hero h1 { margin-bottom: 0.75rem; }
  .page-hero { padding: calc(var(--nav-h) + 2.5rem) 1rem 2.5rem; }
  .cta-finale { padding: 4rem 1rem; }
  .footer { padding: 3rem 1rem 2rem; }
  .article-content { padding: 2.5rem 1rem; }
  .first-time { padding: 3rem 1rem; }
}

/* Tablet: 481px–1024px */
@media (min-width: 481px) and (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* Desktop: >1024px — restore multi-column defaults */
@media (min-width: 1025px) {
  .nav-links, .nav-cta { display: flex; }
  .nav-hamburger { display: none; }
  .hero-photo { display: block; }
}

/* Price row: stack on very small screens */
@media (max-width: 480px) {
  .price-row { flex-direction: column; align-items: flex-start; gap: 0.2rem; }
  .zabieg-meta { flex-direction: column; gap: 1rem; }
}

/* Responsive images (when added) */
img { height: auto; }

/* ===== ARTICLE — lead, area chips, steps ===== */
.article-lead {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  font-weight: 300;
  font-style: italic;
  color: var(--dark-warm);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

/* Area chips */
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0 2rem;
}
.area-chip {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--taupe);
  border: 1px solid var(--taupe-mid);
  border-radius: 2rem;
  background: var(--cream-light);
}

/* Step-by-step */
.zabieg-steps {
  margin: 0.75rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.zabieg-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 0 0 2rem;
  position: relative;
}
.zabieg-step:last-child { padding-bottom: 0; }
.zabieg-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 0.9375rem;
  top: 2.15rem;
  bottom: 0;
  width: 1px;
  background: var(--border);
}
.step-num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid var(--taupe-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--taupe);
  margin-top: 0.1rem;
  position: relative;
  z-index: 1;
  background: var(--white);
}
.step-body { flex: 1; }
.step-body strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 0.3rem;
}
.step-body p {
  font-size: 0.87rem;
  color: var(--text-mid);
  margin: 0;
}

/* ===== INFO-BANER (zabieg params strip) ===== */
.info-baner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1.5rem 2rem;
  margin: 2rem 0 2.5rem;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(169,139,93,0.22);
  border-bottom: 1px solid rgba(169,139,93,0.22);
}
.info-baner-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 1rem;
  border-left: 1px solid rgba(169,139,93,0.30);
}
.info-baner-label {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.35rem;
}
.info-baner-value {
  font-size: 0.83rem;
  color: var(--text-mid);
  line-height: 1.4;
}
@media (max-width: 600px) {
  .info-baner {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 1.5rem;
  }
}

/* ===== PREPARAT CARDS (3-column groups) ===== */
.preparat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin: 1.25rem 0 2.5rem;
}
.preparat-card {
  background: var(--white);
  padding: 1.5rem 1.25rem;
}
.preparat-card h3 {
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0 0 0.6rem;
  color: var(--black);
}
.preparat-card > p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.preparat-card-sublabel {
  font-size: 0.6rem !important;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe) !important;
  margin-bottom: 0.25rem !important;
}
.preparat-card ul {
  margin: 0 !important;
}
@media (max-width: 600px) {
  .preparat-cards { grid-template-columns: 1fr; }
}

/* ===== CONTRAINDICATIONS BOX ===== */
.contraindications-box {
  background: var(--cream-light);
  border-left: 3px solid var(--taupe-mid);
  padding: 1.5rem 1.75rem;
  margin: 0.75rem 0 2rem;
}
.contraindications-box > p {
  font-size: 0.82rem;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}
.contraindications-box ul {
  margin: 0 !important;
}

/* Article inline FAQ (no background — inherits article-body) */
.article-faq { max-width: 680px; }

/* ===== "W CZYM MOŻEMY CI POMÓC" SECTION (home) ===== */
.pomoc {
  background: #F7F4EF;
  padding: 6rem 0 5.5rem;
}
.pomoc-container {
  max-width: 880px;
}
.pomoc-h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 300;
  color: #2A2622;
  margin: 0.6rem 0 3.5rem;
  letter-spacing: -0.02em;
}
/* Grid — 10 rows split 5+5 across 2 columns, rows auto-equalized */
.pomoc-lista {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(5, auto);
  column-gap: 5rem;
}
/* Column 1: items 1–5 */
.pomoc-row:nth-child(1)  { grid-area: 1 / 1; }
.pomoc-row:nth-child(2)  { grid-area: 2 / 1; }
.pomoc-row:nth-child(3)  { grid-area: 3 / 1; }
.pomoc-row:nth-child(4)  { grid-area: 4 / 1; }
.pomoc-row:nth-child(5)  { grid-area: 5 / 1; }
/* Column 2: items 6–10 */
.pomoc-row:nth-child(6)  { grid-area: 1 / 2; }
.pomoc-row:nth-child(7)  { grid-area: 2 / 2; }
.pomoc-row:nth-child(8)  { grid-area: 3 / 2; }
.pomoc-row:nth-child(9)  { grid-area: 4 / 2; }
.pomoc-row:nth-child(10) { grid-area: 5 / 2; }
/* Row base */
.pomoc-row {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(169,139,93,0.20);
  cursor: default;
}
/* Bottom border only on last row of each column */
.pomoc-row:nth-child(5),
.pomoc-row:nth-child(10) {
  border-bottom: 1px solid rgba(169,139,93,0.20);
}
/* Name — Fraunces serif */
.pomoc-name {
  font-family: 'Fraunces', serif;
  font-optical-sizing: auto;
  font-size: 1.2rem;
  font-weight: 300;
  color: #2A2622;
  line-height: 1.3;
  position: relative;
  display: inline-block;
}
/* Animated underline on hover */
.pomoc-name::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #A98B5D;
  transition: width 0.45s cubic-bezier(0.4,0,0.2,1);
}
.pomoc-row:hover .pomoc-name::after {
  width: 100%;
}
/* Description */
.pomoc-desc {
  font-family: var(--font-sans);
  font-size: 0.79rem;
  color: rgba(42,38,34,0.58);
  line-height: 1.75;
}
/* CTA */
.pomoc-cta-wrap {
  margin-top: 3.5rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
}
.pomoc-cta-link {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #A98B5D;
  text-decoration: none;
  border-bottom: 1px solid rgba(169,139,93,0.4);
  padding-bottom: 3px;
  transition: color 0.25s, border-color 0.25s;
}
.pomoc-cta-link:hover {
  color: #2A2622;
  border-color: rgba(42,38,34,0.55);
}
/* Mobile */
@media (max-width: 540px) {
  .pomoc { padding: 3.5rem 0 3rem; }
  .pomoc-lista {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    column-gap: 0;
  }
  .pomoc-row { grid-area: auto !important; padding: 1.5rem 0; }
  .pomoc-row:nth-child(5) { border-bottom: none; }
}

/* ===== VOUCHER PAGE ===== */
.voucher-opcje {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 1.5rem 0 2.5rem;
}
.voucher-karta {
  background: var(--cream-light);
  border-top: 2px solid var(--taupe-mid);
  padding: 2rem 1.75rem 1.75rem;
}
.voucher-karta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--dark-warm);
  margin-bottom: 0.75rem;
}
.voucher-karta p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}
@media (max-width: 640px) {
  .voucher-opcje { grid-template-columns: 1fr; }
}

@media (max-width: 960px) { .onas-inner { grid-template-columns: 1fr; gap: 3rem; } }

/* ════════════════════════════════════════════════
   O-NAS PAGE
════════════════════════════════════════════════ */

/* ── HERO ── */
.onas-hero {
  background: var(--cream);
  padding: calc(var(--nav-h) + 3.5rem) 0 clamp(3.5rem, 7vw, 6rem);
}
.onas-hero-grid {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 4rem;
  align-items: center;
}
.onas-hero-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}
.onas-hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.8vw, 2.15rem);
  font-weight: 300;
  color: var(--dark-warm);
  line-height: 1.38;
  margin-bottom: 1.4rem;
}
.onas-hero-subtitle {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: var(--taupe);
  margin-bottom: 1.6rem;
  line-height: 1.5;
}
.onas-hero-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.95;
  margin-bottom: 2.5rem;
}
.btn-primary {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F7F4EF;
  background: #2A2622;
  padding: 0.95rem 2.2rem;
  border-radius: 1px;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}
.btn-primary:hover {
  background: var(--taupe);
}

/* ── FILOZOFIA ── */
.onas-filozofia {
  background: var(--white);
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}
.onas-filozofia-content {
  max-width: 680px;
}
.onas-filozofia-h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--dark-warm);
  margin-bottom: 2rem;
  line-height: 1.15;
}
.onas-filozofia-body p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 2;
  margin-bottom: 1.4rem;
}
.onas-filozofia-cytat {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 300;
  font-style: italic;
  color: var(--dark-warm);
  margin: 2.8rem 0 0;
  padding: 1.6rem 0 0 2rem;
  border-top: 1px solid rgba(169,139,93,0.2);
  border-left: 2px solid var(--taupe);
  line-height: 1.7;
}

/* ── NASZE PODEJŚCIE ── */
.onas-podejscie {
  background: var(--cream);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.onas-podejscie-h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--dark-warm);
  margin-bottom: 3rem;
}
.onas-podejscie-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.onas-filar {
  padding: 0 2.5rem 2rem 0;
  border-right: 1px solid rgba(169,139,93,0.18);
  margin-right: 0;
}
.onas-filar:last-child {
  border-right: none;
  padding-right: 0;
}
.onas-filar:not(:first-child) {
  padding-left: 2.5rem;
}
.onas-filar-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 300;
  font-style: italic;
  color: var(--dark-warm);
  margin-bottom: 0.9rem;
  line-height: 1.2;
}
.onas-filar-desc {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.85;
}

/* ── ZAŁOŻYCIELKA ── */
.onas-zalozycielka {
  background: var(--white);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.onas-zalozycielka-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 5rem;
  align-items: start;
}
.onas-zalozycielka-photo {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.onas-zalozycielka-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}
.onas-zalozycielka-tytul {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 300;
  color: var(--taupe);
  margin-bottom: 0.25rem;
}
.onas-zalozycielka-exp {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(42,38,34,0.45);
  margin-bottom: 2.5rem;
}
.onas-zalozycielka-body p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.95;
  margin-bottom: 1.8rem;
  padding-top: 0.1rem;
  border-top: 1px solid rgba(169,139,93,0.1);
}
.onas-zalozycielka-body p:first-child {
  border-top: none;
  padding-top: 0;
}
.onas-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(169,139,93,0.2);
  font-family: var(--font-sans);
  font-size: 0.77rem;
  color: rgba(42,38,34,0.55);
  line-height: 1.6;
}
.onas-hl-sep {
  color: var(--taupe);
  margin: 0 0.6rem;
}

/* ── SPECJALIZACJE ── */
.onas-specjalizacje {
  background: var(--cream);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.onas-specjalizacje h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--dark-warm);
  margin-bottom: 1rem;
}
.onas-spec-intro {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.onas-spec-lista {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 5rem;
  border-top: 1px solid rgba(169,139,93,0.2);
}
.onas-spec-lista li {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--dark-warm);
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(169,139,93,0.15);
  position: relative;
  padding-left: 1.2rem;
}
.onas-spec-lista li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--taupe);
  font-size: 0.85rem;
}
.onas-spec-closing {
  font-size: 0.88rem;
  color: rgba(42,38,34,0.55);
  font-style: italic;
  font-family: var(--font-serif);
  line-height: 1.7;
}

/* ── GABINET ── */
.onas-gabinet {
  background: var(--white);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.onas-gabinet-foto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}
.onas-gabinet-foto img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 2px;
}
.onas-gabinet-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--dark-warm);
  margin-bottom: 1rem;
}
.onas-gabinet-text p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.95;
  max-width: 600px;
}

/* ── LOKALIZACJA ── */
.onas-lokalizacja {
  background: var(--cream);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.onas-lok-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.onas-lok-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  font-weight: 300;
  color: var(--taupe);
  margin-bottom: 1.2rem;
}
.onas-lok-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.95;
  margin-bottom: 2rem;
}
.onas-lok-mapa iframe {
  display: block;
  width: 100%;
  border-radius: 2px;
}

/* ── RESPONSIVE ── */

/* tablet / wide phone */
@media (max-width: 900px) {
  .onas-hero-grid,
  .onas-zalozycielka-grid,
  .onas-lok-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .onas-hero-photo,
  .onas-zalozycielka-photo {
    position: static;
  }
  .onas-hero-photo img,
  .onas-zalozycielka-photo img {
    max-height: 480px;
    width: 100%;
    object-fit: cover;
    object-position: top;
  }
  .onas-podejscie-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 2.5rem;
  }
  .onas-filar {
    border-right: none;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .onas-filar:nth-child(odd) {
    border-right: 1px solid rgba(169,139,93,0.18);
    padding-right: 2rem !important;
  }
  .onas-filar:nth-child(even) {
    padding-left: 2rem !important;
  }
  .onas-spec-lista {
    grid-template-columns: 1fr;
  }
  .onas-highlights {
    flex-direction: column;
    align-items: flex-start;
  }
  .onas-hl-sep { display: none; }
  .onas-gabinet-text p { max-width: 100%; }
}

/* phone */
@media (max-width: 540px) {
  .onas-hero {
    padding-top: calc(var(--nav-h) + 2rem);
  }
  .onas-hero-grid {
    gap: 1.8rem;
  }
  .onas-hero-photo img {
    max-height: 340px;
  }
  .onas-hero-h1 {
    font-size: clamp(1.3rem, 6.5vw, 1.6rem);
    line-height: 1.35;
  }
  .onas-hero-subtitle { font-size: 0.95rem; }
  .onas-filozofia-content { max-width: 100%; }
  .onas-filozofia-cytat {
    font-size: 1rem;
    padding-left: 1.2rem;
  }
  .onas-podejscie-grid { grid-template-columns: 1fr; }
  .onas-filar:nth-child(odd) { border-right: none; padding-right: 0 !important; }
  .onas-filar:nth-child(even) { padding-left: 0 !important; }
  .onas-zalozycielka-grid { gap: 1.8rem; }
  .onas-lok-grid { gap: 2rem; }
  .onas-lok-mapa iframe { height: 280px; }
  .onas-spec-lista { column-gap: 0; }
}

/* ──────────────────────────────────────────────
   Formularz kontaktowy
────────────────────────────────────────────── */
.cf-form { max-width: 520px; margin-top: 2.5rem; }
.cf-group { margin-bottom: 1.4rem; }
.cf-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.45rem;
  font-family: var(--font-sans);
}
.cf-group input,
.cf-group textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(181,160,144,0.45);
  background: transparent;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--dark-warm);
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.cf-group input:focus,
.cf-group textarea:focus { border-bottom-color: var(--taupe); }
.cf-group textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
#cf-status {
  display: none;
  padding: 0.75rem 1rem;
  border-radius: 3px;
  font-size: 0.875rem;
  margin-bottom: 1.1rem;
  font-family: var(--font-sans);
}
#cf-status.ok  { background: #f4f9f4; color: #2d5f2d; border: 1px solid #c4d9c4; }
#cf-status.err { background: #fdf4f4; color: #8b2020; border: 1px solid #dcc4c4; }
