/* ============================================
   GOYKA LP — Świąteczna sesja rodzinna Poznań
   Ciepła elegancja: kremowa biel / butelkowa zieleń / złoto
   ============================================ */

:root {
  --cream: #FAF3E7;
  --cream-soft: #F1E7D6;
  --paper: #FFFFFF;
  --ink: #2B2118;
  --muted: #6B5D4C;
  --muted-2: #75654F; /* podniesione z #8A7B66 - 3,73:1 na kremie nie spelnialo AA (4.5:1), teraz 4,5-5,1:1 */

  --green-900: #14322A;
  --green-800: #1B4136;
  --green-700: #245046;
  --green-600: #2E5F50;
  --green-500: #3A7061; /* akcenty/hover, dekoracja - NIE uzywac --gold-soft jako tekstu na tym tle (3,7:1) */
  --green-100: #E1EBE5;

  --gold: #C79A44; /* tylko dekoracja / na ciemnym tle - 2,34:1 na kremie, nigdy jako kolor tekstu na jasnym tle */
  --gold-soft: #E7CD97;
  --gold-text: #8A6323;

  --bordo: #7A2E28;
  --bordo-light: #9B4038;

  --white: #FFFFFF;
  --border: #E3D6BF;
  --border-soft: rgba(43, 33, 24, .1);

  --font-display: 'Fraunces', serif;
  --font-body: 'DM Sans', sans-serif;

  --radius: 10px;
  --radius-lg: 20px;
  --container: 1160px;

  --shadow-card: 0 2px 8px rgba(43, 33, 24, .06), 0 12px 32px rgba(43, 33, 24, .08);
  --shadow-card-hover: 0 4px 16px rgba(43, 33, 24, .1), 0 20px 48px rgba(43, 33, 24, .12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* Defensywnie: WP/Trydo motyw ustawia html{font-size:10px}, LP jest w rem.
   Wymuszamy 16px root, zeby cala skala typograficzna nie skurczyla sie o ~37%. */
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--green-700); text-decoration: none; transition: color .2s; }
a:hover { color: var(--bordo); }
strong { font-weight: 700; color: var(--ink); }
::selection { background: var(--gold-soft); color: var(--ink); }
:focus-visible { outline: 2px solid var(--bordo); outline-offset: 3px; }
/* Motyw WP (Trydo) kasuje outline na a/button/input:focus z wyzsza specyficznoscia
   (0,1,1 vs 0,1,0). Podbijamy specyficznosc, zeby fokus wygrywal kaskade na produkcji. */
body a:focus-visible,
body button:focus-visible,
body [tabindex]:focus-visible,
body input:focus-visible,
body select:focus-visible,
body textarea:focus-visible {
  outline: 2px solid var(--bordo);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  html { scroll-behavior: auto; }
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
/* Header fixed .is-scrolled ~64px + 16px oddechu - zeby kotwice #hash nie chowaly tytulu pod headerem */
section[id] { scroll-margin-top: 80px; }
.is-hidden-todo { display: none !important; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* --- STICKY HEADER --- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 1.5rem;
  transition: background .4s, box-shadow .4s, padding .3s;
}
.header.is-scrolled {
  background: rgba(250, 243, 231, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border-soft), 0 12px 24px rgba(43, 33, 24, .06);
  padding: .6rem 1.5rem;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}
.header__logo {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.header__logo img {
  width: 130px;
  height: auto;
  filter: drop-shadow(0 1px 10px rgba(20, 50, 42, .45));
  transition: filter .35s;
}
.header__logo:hover img { filter: drop-shadow(0 1px 10px rgba(20, 50, 42, .45)) brightness(.85); }
/* Logo to biala grafika (przezroczyste tlo) - po scrollu header ma jasne tlo,
   invert(1) zamienia biel na czern, ktora ma dobry kontrast na --cream */
.header.is-scrolled .header__logo img {
  filter: invert(1);
}
.header.is-scrolled .header__logo:hover img { filter: invert(1) opacity(.75); }
.btn--sm { font-size: .85rem; padding: .75rem 1.35rem; min-height: 44px; }

/* --- SECTION TITLES --- */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.6vw, 2.85rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--green-900);
  margin-bottom: 2.5rem;
}
.section-title__label {
  display: block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: .85rem;
}
.section-title--center { text-align: center; }
/* Eyebrow jest rodzenstwem H2 (nie <span> w srodku), zeby outline naglowkow nie sklejal
   sie w "O sesjiSwiateczne chwile...". Wariant --center powtarza wyrownanie z H2. */
.section-title__label--center { text-align: center; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .98rem;
  padding: .9rem 2.1rem;
  min-height: 48px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  /* jawna lista zamiast `all` - `all` animowal takze outline, przez co wskaznik
     fokusu (WCAG 2.4.7) pojawial sie dopiero po 300 ms */
  transition: background-color .3s cubic-bezier(.4,0,.2,1), color .3s cubic-bezier(.4,0,.2,1),
              border-color .3s cubic-bezier(.4,0,.2,1), box-shadow .3s cubic-bezier(.4,0,.2,1),
              transform .3s cubic-bezier(.4,0,.2,1);
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--green-700);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(36, 80, 70, .28);
}
.btn--primary:hover {
  background: var(--green-600);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(36, 80, 70, .34);
  transform: translateY(-2px);
}
/* CTA na ciemnej zieleni (sekcja voucher) - wypelnienie gold-soft, tekst green-900 (8,9:1) */
.btn--gold {
  background: var(--gold-soft);
  color: var(--green-900);
  border-color: var(--gold-soft);
  box-shadow: 0 6px 20px rgba(20, 50, 42, .35);
}
.btn--gold:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--green-900);
  box-shadow: 0 10px 28px rgba(20, 50, 42, .42);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--green-900);
  border-color: var(--green-900);
}
.btn--outline:hover {
  background: var(--green-900);
  color: var(--white);
}
/* Tekstowe CTA drugorzedne - celowo lzejsze od .btn--primary, zeby nie konkurowac wizualnie */
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: transparent;
  padding-left: .5rem;
  padding-right: .5rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(250, 243, 231, .5);
}
.btn--ghost:hover {
  color: var(--gold-soft);
  text-decoration-color: var(--gold-soft);
}
.btn--lg { font-size: 1.05rem; padding: 1.05rem 2.5rem; }
.btn--full { width: 100%; }

/* =============================
   HERO
   ============================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--green-900);
}
/* Mobile (default): pojedyncze zdjecie rodzinne w tle */
.hero__bg-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero__bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.hero__bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(20,50,42,.94) 0%, rgba(20,50,42,.62) 42%, rgba(20,50,42,.28) 68%, rgba(20,50,42,.45) 100%),
    linear-gradient(90deg, rgba(20,50,42,.4) 0%, transparent 60%);
}
/* Desktop: przewijany pasek pionowych zdjec, wlaczany w media query nizej */
.hero__bg-strip { display: none; }
.hero__strip-track { display: flex; }

@keyframes heroStripScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 3px)); } /* -3px = polowa gap 6px miedzy kopiami zestawu, bez tego styk petli skacze o 3px */
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 8rem 1.5rem 3rem;
}
.hero__inner { max-width: 680px; margin: 0 auto; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--green-900);
  background: var(--gold-soft);
  padding: .5rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: slideUp .7s .2s ease forwards;
}
.hero__badge svg { flex-shrink: 0; }
@media (max-width: 767px) {
  .hero__badge { display: none; }
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 6.8vw, 4.1rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--white);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: slideUp .7s .4s ease forwards;
}
.hero__subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.65;
  color: rgba(250, 243, 231, .88);
  max-width: 520px;
  margin-bottom: 2.25rem;
  opacity: 0;
  animation: slideUp .7s .6s ease forwards;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: slideUp .7s .8s ease forwards;
}

/* =============================
   TRUST STRIP
   ============================= */
.trust-strip {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--paper);
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
.trust-strip__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}
.trust-strip__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-strip__text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green-900);
  margin-bottom: .15rem;
}
.trust-strip__text span {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.5;
}

/* =============================
   TEXT SECTIONS
   ============================= */
.text-section { padding: 5rem 0; }
.text-section--alt { background: var(--cream-soft); }
.text-section__content {
  max-width: 720px;
  margin: 0 auto;
}
/* Gdy naglowek sekcji nie jest wycentrowany (.section-title bez --center),
   akapit ma dzielic te sama lewa oś co H2, nie plywac wysrodkowany w kontenerze. */
.text-section__content--start { margin-left: 0; }
.text-section__content p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.text-section__content p:last-child { margin-bottom: 0; }
.text-section__content strong { color: var(--ink); }
.text-section__cta {
  max-width: 720px;
  margin: 2rem 0 0;
  font-size: 1.02rem;
  line-height: 1.7;
}
.text-section__cta a {
  color: var(--green-700);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--gold);
  text-underline-offset: 5px;
}
.text-section__cta a:hover { color: var(--bordo); text-decoration-color: var(--bordo); }
/* =============================
   SCENERIA
   ============================= */
.sceneria {
  padding: 5rem 0;
  background: var(--green-900);
  color: var(--cream);
}
.sceneria__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.sceneria__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.sceneria__media img {
  width: 100%;
  height: auto; /* atrybut height="1280" w markupie wygrywa nad aspect-ratio bez tego */
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.sceneria .section-title { color: var(--white); }
.sceneria .section-title__label { color: var(--gold-soft); }
.sceneria__text p {
  color: rgba(250, 243, 231, .82);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
/* =============================
   PHOTO BREAKS
   ============================= */
.photo-break {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* zdjecie nie klei sie do dolnej krawedzi sekcji nad nim - odstep w rytmie sekcji */
  padding: 2.5rem 0 1rem;
  margin-bottom: 2rem;
}
.photo-break__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.photo-break__inner img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-card);
}

/* =============================
   PROCESS
   ============================= */
.process { padding: 5rem 0; background: var(--paper); }
/* Kroki rezerwacji sa lista uporzadkowana (<ol>/<li>), bo to sekwencja.
   Numeracja zostaje w .process__number ("01"-"04"), markery listy wylaczone. */
.process__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  list-style: none;
}
.process__step {
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.process__step:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}
.process__number {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 3.5rem;
  line-height: .85;
  color: var(--gold);
  opacity: .35;
  margin-bottom: .5rem;
}
.process__heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--green-900);
  margin-bottom: .5rem;
}
.process__step p { color: var(--muted); font-size: .95rem; line-height: 1.65; }
.process__note {
  margin-top: 2.5rem;
  max-width: 62ch;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.6;
}

/* =============================
   GALLERY
   ============================= */
.gallery { padding: 5.5rem 0 3.5rem; background: var(--cream-soft); position: relative; }
.gallery .container { margin-bottom: 0; }
.gallery__scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 1.5rem;
  scroll-padding-inline: 1.5rem;
  cursor: grab;
  position: relative;
}
/* Fade sygnalizuje, ze pasek sie nie urywa - ostatnia karta ma miejsce, zeby "dojechac" w pelni widoczna */
.gallery__scroll::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 3rem;
  background: linear-gradient(90deg, transparent, var(--cream-soft));
  pointer-events: none;
}
.gallery__scroll:active { cursor: grabbing; }
.gallery__scroll::-webkit-scrollbar { display: none; }
.gallery__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding-right: 1.5rem;
}
.gallery__item {
  flex: 0 0 auto;
  width: 250px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
  /* reset przyciskowe - element jest teraz <button> (otwiera lightbox) */
  border: 0;
  padding: 0;
  background: none;
  display: block;
  cursor: zoom-in;
  font: inherit;
  text-align: left;
}
.gallery__item:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.gallery__item img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.gallery__item:hover img { transform: scale(1.06); }
/* Mobile: poziome kadry pokazujemy w ich wlasnej proporcji. Przy sztywnym kaflu
   250x340 zdjecie 3:2 tracilo polowe szerokosci i wygladalo jak zszyte z dwoch
   ujec (rozmyte swiatelka + ostry motyw). Decyzja Daniela 10.09.2026. */
@media (max-width: 767px) {
  .gallery__track { align-items: center; }
  .gallery__item { width: auto; max-width: calc(100vw - 3rem); }
  .gallery__item img {
    width: auto;
    height: 300px;
    object-fit: cover;
  }
  /* kadr poziomy: pelna szerokosc ekranu i wlasna proporcja, zero kadrowania */
  .gallery__item--wide img {
    width: calc(100vw - 3rem);
    height: auto;
  }
}
.gallery__note {
  max-width: 720px;
  margin: 2rem auto 0;
  padding: 0 1.5rem;
  font-size: .92rem;
  color: var(--muted-2);
  font-style: italic;
  text-align: center;
}
.gallery__link {
  max-width: 720px;
  margin: .85rem auto 0;
  padding: 0 1.5rem;
  font-size: .95rem;
  text-align: center;
}
.gallery__link a { text-decoration: underline; text-underline-offset: 3px; }
.gallery__hint {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: .5rem;
  font-size: .9rem;
  color: var(--muted-2);
  letter-spacing: .05em;
}
.gallery__hint svg { animation: nudgeRight 1.5s ease infinite; color: var(--gold-text); }

/* =============================
   PRICING
   ============================= */
.pricing { padding: 5.5rem 0; background: var(--paper); }
.pricing__intro {
  text-align: center;
  color: var(--muted);
  max-width: 560px;
  margin: -1.5rem auto 3rem;
  font-size: .98rem;
}
/* drugi akapit intro cennika (zdanie o zadatku) - domyka pare, nie zaczyna nowej */
.pricing__intro--sub { margin-top: -2.4rem; }
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 980px;
  margin: 0 auto;
}
.pricing__card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.pricing__card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}
.pricing__card--featured {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: var(--shadow-card);
}
.pricing__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bordo);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .45rem 1.4rem;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(122, 46, 40, .3);
}
.pricing__card-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.pricing__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--green-900);
  margin-bottom: .5rem;
}
.pricing__price { display: flex; align-items: baseline; justify-content: center; gap: .3rem; }
.pricing__amount {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 3rem;
  line-height: 1;
  color: var(--green-900);
}
.pricing__currency { font-family: var(--font-body); font-size: 1.1rem; color: var(--muted); }
.pricing__features { list-style: none; flex: 1; margin-bottom: 1.5rem; }
.pricing__features li {
  padding: .55rem 0 .55rem 1.75rem;
  position: relative;
  font-size: .92rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border-soft);
}
.pricing__features li:last-child { border: none; }
.pricing__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.pricing__card .btn { margin-top: auto; }
/* Tabela porownawcza pakietow: te same dane co karty, w formie, ktora czytaja
   modele jezykowe i czytniki ekranu. Na waskich ekranach przewija sie w poziomie
   (kontener z tabindex=0, zeby dalo sie ja przewinac z klawiatury). */
.pricing__compare {
  margin-top: 2rem;
  border-top: 1px solid var(--border);
  padding-top: .25rem;
}
.pricing__compare summary {
  cursor: pointer;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 0;
  font-size: .95rem;
  font-weight: 600;
  color: var(--green-900);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pricing__compare summary::-webkit-details-marker { display: none; }
.pricing__compare summary::after { content: '+'; font-weight: 400; }
.pricing__compare[open] summary::after { content: '\2212'; }
.pricing__compare summary:focus-visible { outline: 2px solid var(--green-900); outline-offset: 3px; }
.pricing__table-wrap {
  margin-top: 1rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.pricing__table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: .95rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.pricing__table caption {
  caption-side: top;
  text-align: left;
  padding-bottom: .75rem;
  font-size: .92rem;
  color: var(--muted);
}
.pricing__table th,
.pricing__table td {
  padding: .8rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.pricing__table thead th {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--green-900);
  background: var(--cream-soft);
  white-space: nowrap;
}
.pricing__table tbody th {
  font-weight: 700;
  color: var(--green-900);
}
.pricing__table tbody tr:last-child th,
.pricing__table tbody tr:last-child td { border-bottom: 0; }
.pricing__note {
  max-width: 62ch;
  margin: 2.5rem auto 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.6;
  text-align: center;
}
.pricing__note--sub { margin-top: .7rem; }

/* =============================
   TERMINY + GWARANCJA
   ============================= */
.terms { padding: 5.5rem 0; background: var(--cream-soft); }
.terms__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
}
.terms__text p { color: var(--muted); font-size: 1.02rem; line-height: 1.8; }
.guarantee {
  background: var(--green-900);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-card);
}
.guarantee__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--green-900);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.guarantee__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .75rem;
}
.guarantee p {
  color: rgba(250, 243, 231, .85);
  font-size: .98rem;
  line-height: 1.7;
}

/* =============================
   TESTIMONIALS (hidden until real content)
   ============================= */
.testimonials { padding: 5.5rem 0; background: var(--paper); }
.testimonials__more {
  margin-top: 2rem;
  text-align: center;
  font-size: .95rem;
}
.testimonials__more a { text-decoration: underline; text-underline-offset: 3px; }
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 980px;
  margin: 0 auto;
}
.testimonial {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  /* stopka z imieniem rowno na dole kazdej karty, mimo roznej dlugosci cytatow */
  display: flex;
  flex-direction: column;
}
.testimonial__stars { color: var(--gold); font-size: 1rem; letter-spacing: .1em; margin-bottom: .5rem; }
/* Motyw (Trydo) dokleja do blockquote ciezki, czerwony cudzyslow, ktory nachodzil
   na gwiazdki. Zerujemy go i rysujemy wlasny: cienki, zloty, nad cytatem. */
.testimonials .testimonial::before,
.testimonials .testimonial::after { content: none; }
.testimonial__text::before {
  content: '\201E';
  display: block;
  font-family: var(--font-display);
  font-weight: 300;
  font-style: normal;
  font-size: 3rem;
  line-height: .55;
  height: 1.45rem;
  color: var(--gold);
  margin-bottom: .55rem;
}
.testimonial__text { font-size: 1.02rem; line-height: 1.7; font-style: italic; margin-bottom: .75rem; color: var(--ink); }
.testimonial__author {
  margin-top: auto;
  padding-top: .75rem;
  font-size: .85rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .5rem;
}
.testimonial__author strong { color: var(--ink); }
.testimonial__source {
  font-size: .75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* =============================
   O FOTOGRAFCE / LOKALNIE
   ============================= */
/* Sekcja "Poznajmy sie": tekst i portret Gosi. Na mobile zdjecie pod tekstem. */
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.about__photo { margin: 0; }
.about__photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.about__note,
.local__list {
  margin-top: 1.5rem;
}
.local__list {
  list-style: none;
  display: grid;
  gap: .75rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.local__list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .98rem;
  color: var(--muted);
}
.local__list svg { flex-shrink: 0; margin-top: .2rem; color: var(--gold-text); }
.local__list strong { color: var(--ink); }

/* =============================
   FAQ
   ============================= */
.faq { padding: 5.5rem 0; background: var(--cream-soft); }
.faq__list { max-width: 760px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  padding: 1.5rem 0;
  cursor: pointer;
  color: var(--green-900);
  list-style: none;
  transition: color .2s;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold-text);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform .3s;
}
details[open] .faq__question::after { content: '\2212'; }
.faq__question:hover { color: var(--bordo); }
.faq__answer { padding-bottom: 1.5rem; color: var(--muted); line-height: 1.75; font-size: .97rem; }

/* =============================
   VOUCHER - pas "Podaruj emocje pod choinkę"
   Sprzedaje vouchery na sesje INNE niz swiateczna (kobieca / meska / sensualna /
   wizerunkowa). Voucher swiateczny ma osobne zasady i siedzi wylacznie w FAQ.
   ============================= */
.voucher {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
  color: var(--cream);
  /* karta vouchera jest obrocona i wysunieta - bez tego rotate dokladalby poziomy scroll */
  overflow: hidden;
}
.voucher__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
/* .section-title/.__label sa domyslnie na jasnym tle (green-900 / gold-text),
   tutaj lecą na ciemnej zieleni - przestawiamy na kremowy i gold-soft (8,9:1 i 5,9:1). */
.voucher .section-title { color: var(--white); margin-bottom: 1.5rem; }
.voucher .section-title__label { color: var(--gold-soft); }
.voucher__lead {
  color: var(--cream);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 46ch;
  margin-bottom: 1.75rem;
}
.voucher__chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 1.5rem;
}
.voucher__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .5rem 1.15rem;
  border: 1px solid rgba(231, 205, 151, .7); /* 3,7:1 wzgledem tla - WCAG 1.4.11 */
  border-radius: 100px;
  color: var(--cream);
  font-size: .92rem;
  font-weight: 500;
  transition: background .25s, color .25s, border-color .25s;
}
.voucher__chip:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  color: var(--green-900);
}
.voucher__meta {
  color: var(--gold-soft);
  font-size: .86rem;
  margin-bottom: 1.75rem;
}
.voucher__actions { margin-bottom: 1rem; }
.voucher__faq-note { font-size: .88rem; color: rgba(250, 243, 231, .9); }
.voucher__faq-note a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
}
.voucher__faq-note a:hover { color: var(--white); }
/* Globalny fokus (--bordo) na ciemnej zieleni ma 1,03:1 - niewidoczny.
   W scope sekcji podbijamy specyficznosc i dajemy gold-soft (5,9:1). */
body .voucher a:focus-visible,
body .voucher button:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
}

.voucher__media { position: relative; }
.voucher__strip {
  display: flex;
  gap: .75rem;
  justify-content: center;
}
.voucher__strip img {
  width: 100%;
  max-width: 200px;
  /* height="1199" z HTML wygralby nad aspect-ratio, stad jawne height:auto */
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}
.voucher__photo {
  display: block;
  position: relative;
  z-index: 2;
  width: 70%;
  max-width: 260px;
  height: auto;
  /* nachodzi tylko na dolna krawedz kadrow stripu - twarze zostaja odkryte */
  margin: -7% auto 0;
  border-radius: 8px;
  transform: rotate(-2deg);
  box-shadow: 0 8px 20px rgba(10, 25, 20, .32), 0 28px 64px rgba(10, 25, 20, .45);
}
@media (prefers-reduced-motion: reduce) {
  .voucher__photo { transform: none; }
}

/* =============================
   REZERWACJA (widget osadzony w modalu #lp-booking-modal, patrz sekcja
   MODAL REZERWACJI nizej - .booking__panel uzywany tylko tam)
   ============================= */
.booking__panel {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 2.25rem 2rem;
}

/* --- FOOTER --- */
.footer { padding: 3.5rem 0 2.5rem; background: var(--green-900); color: rgba(250, 243, 231, .8); }
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  align-items: center;
  text-align: center;
}
.footer__logo {
  width: 150px;
  height: auto;
  display: block;
}
.footer__brand p { font-size: .88rem; color: rgba(250, 243, 231, .68); margin-top: .35rem; }
.footer__contact { font-size: .88rem; color: rgba(250, 243, 231, .78); }
.footer__contact a {
  color: rgba(250, 243, 231, .78);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: .25rem 0;
}
.footer__contact a:hover { color: var(--gold-soft); }
.footer__links { display: flex; flex-wrap: wrap; gap: .25rem 1.5rem; justify-content: center; }
.footer__links a {
  font-size: .85rem;
  color: rgba(250, 243, 231, .78);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.footer__links a:hover { color: var(--gold-soft); }
.footer__social { display: flex; gap: .5rem; }
.footer__social a {
  color: rgba(250, 243, 231, .68);
  transition: color .2s, transform .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}
.footer__social a:hover { color: var(--gold-soft); transform: scale(1.12); }
.footer__legal { font-size: .78rem; color: rgba(250, 243, 231, .55); }
.footer__legal a {
  color: rgba(250, 243, 231, .55);
  text-decoration: underline;
  text-underline-offset: 3px;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.footer__legal a:hover { color: var(--gold-soft); }
.footer__credit {
  text-align: center;
  font-size: .75rem;
  color: rgba(250, 243, 231, .5);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250, 243, 231, .12);
  width: 100%;
}
.footer__credit-link {
  color: var(--gold-soft);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.footer__credit-link:hover { text-decoration: underline; }

/* =============================
   ANIMATIONS
   ============================= */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes nudgeRight {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
/* Bez JS (blokada skryptow, wolne 3G) tresc ma byc widoczna od razu, nie pusta */
@media (scripting: none) { .reveal { opacity: 1; transform: none; } }
.no-js .reveal { opacity: 1; transform: none; }

.process__grid .reveal:nth-child(2) { transition-delay: .1s; }
.process__grid .reveal:nth-child(3) { transition-delay: .2s; }
.process__grid .reveal:nth-child(4) { transition-delay: .3s; }
.pricing__grid .reveal:nth-child(2) { transition-delay: .1s; }
.pricing__grid .reveal:nth-child(3) { transition-delay: .2s; }
.trust-strip__grid .reveal:nth-child(2) { transition-delay: .1s; }
.trust-strip__grid .reveal:nth-child(3) { transition-delay: .2s; }

/* =============================
   DESKTOP
   ============================= */
@media (min-width: 768px) {
  .hero { min-height: 92vh; }
  .hero__content { padding: 9rem 3rem 5rem; }

  /* na desktopie chowamy pojedyncze zdjecie mobilne, pokazujemy przewijany pasek */
  .hero__bg-image--mobile { display: none; }
  .hero__bg-strip {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
  }
  .hero__strip-track {
    height: 100%;
    width: max-content;
    gap: 6px;
    /* 9 zdjec w zestawie (bylo 6) - czas przeliczony 65s * 9/6, zeby predkosc przesuwu zostala ta sama */
    animation: heroStripScroll 98s linear infinite;
  }
  .hero__strip-track img {
    height: 100%;
    width: auto;
    object-fit: cover;
    filter: brightness(.5) saturate(.92);
    flex-shrink: 0;
    /* gap 6px + border-right dorabia z przypadkowego zszycia kadrow (rozne proporcje
       zdjec) do celowego, filmowego "diapozytywu" - to samo co robi heroStripScroll */
    border-right: 1px solid rgba(231, 205, 151, .18);
  }
  .hero__bg-strip::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
      linear-gradient(0deg, rgba(20,50,42,.92) 0%, rgba(20,50,42,.5) 40%, rgba(20,50,42,.18) 65%, rgba(20,50,42,.38) 100%),
      linear-gradient(90deg, rgba(20,50,42,.58) 0%, transparent 55%);
  }

  .trust-strip__grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }

  .sceneria__grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .sceneria__media img { aspect-ratio: 1; }

  .process__grid { grid-template-columns: repeat(2, 1fr); }

  .gallery__item { width: 300px; }
  .gallery__item img { height: 400px; }

  .photo-break { padding-top: 4.5rem; }

  /* tekst po lewej, portret po prawej, oba od gornej krawedzi */
  .about__grid { grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: start; }

  .pricing__grid { grid-template-columns: repeat(3, 1fr); }
  /* trzy kolumny wchodza juz na tablecie, wiec karta oddaje troche oddechu bokom */
  .pricing__card { padding: 1.9rem 1.35rem; }
  .pricing__card--featured { transform: scale(1.04); }
  .pricing__card--featured:hover { transform: scale(1.05) translateY(-3px); }

  .terms__grid { grid-template-columns: 1.1fr .9fr; }

  .testimonials__grid { grid-template-columns: repeat(3, 1fr); }

  /* tekst 5/12, obraz 7/12 - kolejnosc w DOM (tekst, potem obraz) zostaje bez zmian */
  .voucher__grid { grid-template-columns: 5fr 7fr; gap: 4rem; }
  /* wysokosc = wysokosc zdjecia vouchera (340 x 16/9 = 604 px); strip stoi kolumna
     obok, dolne krawedzie obu elementow leza w jednej linii */
  .voucher__media { min-height: 604px; }
  .voucher__strip {
    position: absolute;
    left: 0;
    bottom: 0;
    flex-direction: column;
    justify-content: flex-end;
  }
  .voucher__strip img { width: 180px; max-width: none; }
  .voucher__photo {
    position: absolute;
    top: 0;
    right: 0;
    width: 340px;
    max-width: none;
    margin: 0;
  }


  .footer__inner { flex-direction: row; justify-content: space-between; text-align: left; }
  .footer__brand { text-align: left; }
}

@media (min-width: 1024px) {
  .pricing__card { padding: 2.25rem 2rem; }
  .process__grid { grid-template-columns: repeat(4, 1fr); }
  .gallery__item { width: 330px; }
  .gallery__item img { height: 440px; }
}

/* =============================
   LIGHTBOX (galeria)
   ============================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(22, 20, 16, .94);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 1rem 2rem;
}
.lightbox[hidden] { display: none; }
.lightbox__stage {
  width: 100%;
  max-width: 90vw;
  max-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}
.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(250, 243, 231, .3);
  background: rgba(250, 243, 231, .08);
  color: var(--cream);
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.lightbox__close:hover { background: rgba(250, 243, 231, .18); border-color: var(--gold-soft); }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(250, 243, 231, .3);
  background: rgba(250, 243, 231, .08);
  color: var(--cream);
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.lightbox__nav:hover { background: rgba(250, 243, 231, .18); border-color: var(--gold-soft); }
.lightbox__nav--prev { left: .5rem; }
.lightbox__nav--next { right: .5rem; }
.lightbox__counter {
  margin-top: 1.25rem;
  font-size: .85rem;
  letter-spacing: .04em;
  color: rgba(250, 243, 231, .75);
}

@media (min-width: 768px) {
  .lightbox { padding: 4rem; }
  .lightbox__close { top: 1.5rem; right: 1.5rem; }
  .lightbox__nav--prev { left: 1.5rem; }
  .lightbox__nav--next { right: 1.5rem; }
}

/* =============================
   MODAL REZERWACJI (Salon Booking)
   <dialog> natywny - focus-trap i Esc daje przegladarka, JS (lp-booking.js)
   dorzuca inert na reszte strony, klase lp-modal-open (blokada scrolla
   html/body) i zwrot fokusa po zamknieciu.
   ============================= */
html.lp-modal-open,
html.lp-modal-open body { overflow: hidden; }

.lp-modal {
  border: none;
  padding: 0;
  margin: auto;
  background: transparent;
  max-width: 760px;
  width: min(760px, calc(100vw - 2rem));
  max-height: 90vh;
}
.lp-modal::backdrop { background: rgba(20, 50, 42, .78); }
.lp-modal__inner {
  background: var(--cream);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-hover);
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: auto;
  padding: 0 1.5rem 2rem;
}
.lp-modal__head {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0 1rem;
  margin-bottom: .5rem;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.lp-modal__title {
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--gold-text);
}
.lp-modal__close {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.lp-modal__close:hover { background: var(--green-100); border-color: var(--green-700); }
.lp-modal .booking__panel { padding: 0; border: none; box-shadow: none; background: transparent; }
.lp-modal__note {
  margin-top: 1.25rem;
  font-size: .92rem;
  line-height: 1.65;
  color: var(--muted);
  text-align: center;
}

/* --- Modal voucher: intro + formularz Contact Form 7 (id 6947, "Voucher
   swiateczny 2026 (LP)") --- Formularz sam w sobie nie jest modyfikowany,
   tylko osadzony/ostylowany tutaj tak, zeby wygladal spojnie z reszta LP. */
.lp-modal__intro {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.65;
}

/* Ekran sukcesu po wpcf7mailsent (lp-booking.js wstawia .lp-modal__success
   zaraz po .lp-modal__head i chowa .lp-modal__intro/form.wpcf7-form atrybutem
   hidden - komunikat CF7 sam w sobie renderuje sie pod foldem modala, ten
   blok zastepuje formularz czytelnym potwierdzeniem nad foldem). */
.lp-modal__success {
  background: var(--cream);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}
.lp-modal__success[hidden] { display: none; }
.lp-modal__success-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
}
.lp-modal__success-title {
  font-family: var(--font-display);
  color: var(--green-800);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 .6rem;
}
.lp-modal__success p {
  color: var(--ink);
  font-size: .95rem;
  line-height: 1.6;
  margin: 0 0 1.25rem;
}
.lp-modal__success .btn { display: inline-flex; }

.lp-modal .wpcf7-form p { margin-bottom: 1rem; }
.lp-modal .wpcf7-form label {
  display: block;
  margin-bottom: .4rem;
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink);
}
.lp-modal .wpcf7-form input.wpcf7-form-control:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.lp-modal .wpcf7-form select.wpcf7-form-control,
.lp-modal .wpcf7-form textarea.wpcf7-form-control {
  width: 100%;
  min-height: 48px;
  padding: .65rem .9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: .98rem;
}
.lp-modal .wpcf7-form textarea.wpcf7-form-control { min-height: 120px; resize: vertical; }
.lp-modal .wpcf7-form .wpcf7-form-control::placeholder { color: var(--muted-2); opacity: .8; font-style: italic; }
.lp-modal .wpcf7-form .wpcf7-radio,
.lp-modal .wpcf7-form .wpcf7-checkbox { display: block; background: none; border: 0; padding: 0; min-height: 0; }
.lp-modal .wpcf7-form-control:focus-visible {
  outline: 2px solid var(--bordo);
  outline-offset: 2px;
  border-color: var(--bordo);
}
/* Submit dostaje klasy .btn .btn--primary .btn--full bezposrednio z CF7
   shortcode ([submit class:btn class:btn--primary class:btn--full ...]) -
   dziedziczy wyglad z globalnych .btn/.btn--primary/.btn--full, tutaj tylko
   odstep od pol powyzej. */
/* Motyw Trydo styluje input[type=submit] (czerwony, kanciasty) z wyzsza
   specyficznoscia niz .btn - nadpisujemy w scope modala z !important. */
#lp-voucher-modal .wpcf7-form input.wpcf7-submit[type="submit"] {
  display: block;
  width: 100% !important;
  min-height: 48px;
  margin-top: .5rem;
  padding: .9rem 2.1rem !important;
  border: 1px solid transparent !important;
  border-radius: 100px !important;
  background: var(--green-700) !important;
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  font-size: .98rem !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  box-shadow: 0 6px 20px rgba(36, 80, 70, .28) !important;
  cursor: pointer;
  transition: background .3s, box-shadow .3s, transform .3s;
}
#lp-voucher-modal .wpcf7-form input.wpcf7-submit[type="submit"]:hover {
  background: var(--green-600) !important;
  transform: translateY(-2px);
}
#lp-voucher-modal .wpcf7-form input.wpcf7-submit[type="submit"]:focus-visible {
  outline: 2px solid var(--bordo);
  outline-offset: 3px;
}
.lp-modal .wpcf7-spinner { display: block; margin: .6rem auto 0; }
.lp-modal .wpcf7-not-valid-tip {
  display: block;
  margin-top: .35rem;
  color: var(--bordo);
  font-size: .85rem;
}
.lp-modal .wpcf7-response-output {
  margin-top: 1.25rem;
  padding: .9rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: .92rem;
}
/* Sukces (form.sent) / blad (form.invalid, form.failed) - kontrast sprawdzony,
   oba warianty >= 7:1 na tle. Selektor na .wpcf7-form (CF7 dodaje klase
   statusu na <form>, nie na samym .wpcf7-response-output). */
.lp-modal .wpcf7-form.sent .wpcf7-response-output { border-color: var(--green-600); background: var(--green-100); color: var(--green-900); }
.lp-modal .wpcf7-form.invalid .wpcf7-response-output,
.lp-modal .wpcf7-form.failed .wpcf7-response-output { border-color: var(--bordo); color: var(--bordo); }
/* Markup formularza CF7 6947 (voucher swiateczny): grid pol, fieldset radio, klauzula RODO */
.lp-modal .lp-form__grid { display: grid; gap: .25rem; }
.lp-modal .lp-form__fieldset { border: 0; padding: 0; margin: 0 0 1rem; }
.lp-modal .lp-form__fieldset legend { font-weight: 700; font-size: .9rem; color: var(--ink); margin-bottom: .5rem; }
.lp-modal .wpcf7-list-item { display: flex; align-items: center; gap: .6rem; margin: 0 0 .5rem; min-height: 44px; }
.lp-modal .wpcf7-list-item label { display: flex; align-items: center; gap: .6rem; margin: 0; font-weight: 400; cursor: pointer; }
.lp-modal .wpcf7-list-item input[type="radio"] { width: 22px; height: 22px; accent-color: var(--green-700); margin: 0; }
.lp-modal .lp-form__rodo { font-size: .82rem; color: var(--muted); line-height: 1.5; margin: .25rem 0 1rem; }
.lp-modal .lp-form__rodo a { color: var(--green-700); text-decoration: underline; text-underline-offset: 3px; }

/* Karta cennika na telefonie: cala karta z cena i przyciskiem ma sie miescic
   w oknie 375x812, stad mniejsza cena, ciasniejsze wiersze i nizszy przycisk. */
@media (max-width: 767px) {
  .pricing { padding: 4rem 0; }
  .pricing__card { padding: 1.5rem 1.25rem; }
  .pricing__card-header { margin-bottom: 1rem; padding-bottom: 1rem; }
  .pricing__name { font-size: 1.2rem; margin-bottom: .25rem; }
  .pricing__amount { font-size: 2.4rem; }
  .pricing__features { margin-bottom: 1.1rem; }
  .pricing__features li { padding: .45rem 0 .45rem 1.6rem; font-size: .95rem; line-height: 1.35; }
  .pricing__card .btn { padding: .8rem 1.5rem; }
}

@media (max-width: 767px) {
  .lp-modal {
    max-width: 100vw;
    width: 100vw;
    max-height: 100dvh;
    height: 100dvh;
  }
  .lp-modal__inner {
    border-radius: 0;
    max-height: 100dvh;
    height: 100%;
    padding: 0 1rem 1.5rem;
  }
  .lp-modal__head { padding: 1.25rem 0 1rem; }
  /* Krok "date" widgetu (salon.js:2543, dateStepResize) na waskich ekranach
     (<=340px) wymusza na #sln-salon min-width: calc(100vw - 36px) i
     transform: translateX(...) - licząc, ze widget siedzi bezposrednio w
     dokumencie na pelnej szerokosci viewportu. W dialogu #sln-salon jest
     zagniezdzony w .lp-modal__inner z paddingiem 1rem/strona, wiec ten sam
     przelicznik "prawie 100vw" wypycha kalendarz poza karte (przycieta przez
     overflow karty). Neutralizujemy oba wymuszenia tylko w tym kontekscie -
     .lp-modal__inner ma wlasny overflow-x:auto jako dodatkowa siatka
     bezpieczenstwa, gdyby mimo to cos wystawalo. */
  #lp-booking-modal #sln-salon {
    min-width: 0 !important;
    transform: none !important;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .lp-modal {
    opacity: 0;
    transition: opacity .18s ease, overlay .18s ease allow-discrete, display .18s ease allow-discrete;
  }
  .lp-modal[open] { opacity: 1; }
  @starting-style {
    .lp-modal[open] { opacity: 0; }
  }
}
