:root {
  --bg: #f8f5ef;
  --bg-card: #ede8df;
  --bg-scene: #f2ebe4;
  --text: #1a1510;
  --text-muted: #8a7e75;
  --label-caps: #524840;
  --divider: #e0d8ce;
  --accent: #b5614e;
  --accent-dark: #8a3f34;
  --sage: #6e9478;
  --sage-soft: #e2ede6;
  --white: #fffef9;
  --shadow: 0 8px 32px rgba(26, 21, 16, 0.08);
  --radius: 14px;
  --radius-sm: 8px;
  --font-serif: Georgia, "Times New Roman", serif;
  --font-sans: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --max: 1120px;
  --pad: clamp(1rem, 4vw, 2rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
}

.container {
  width: min(var(--max), 100% - 2 * var(--pad));
  margin-inline: auto;
}

.ui {
  font-family: var(--font-sans);
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--label-caps);
}

h1,
h2,
h3 {
  font-family: var(--font-serif);
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

h1 {
  font-size: clamp(1.85rem, 5vw, 2.75rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.1rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 1rem;
}

.accent {
  color: var(--accent);
}

.sage {
  color: var(--sage);
}

.lead {
  font-size: 1.12rem;
  color: var(--text);
}

.muted {
  color: var(--text-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.4rem;
  border: none;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(165deg, #b06352 0%, var(--accent-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(181, 97, 78, 0.28);
}

.btn-secondary {
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--divider);
}

.btn-sage {
  background: var(--sage);
  color: var(--white);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  min-height: 40px;
  padding: 0.6rem 1rem;
  font-size: 0.88rem;
}

.section {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

.section + .section {
  border-top: 1px solid var(--divider);
}

.section-header {
  margin-bottom: 2rem;
  max-width: 42rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.grid-2 {
  display: grid;
  gap: 1.25rem;
}

.grid-3 {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

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

/* Hero */
.hero {
  padding-top: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.hero-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.cta-duo {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.cta-duo .btn {
  flex: 1 1 11rem;
  justify-content: center;
}

.cta-duo-block {
  flex-direction: column;
}

.cta-duo-block .btn {
  flex: 1 1 auto;
  width: 100%;
}

.recommendation .cta-duo {
  justify-content: flex-start;
}

@media (max-width: 480px) {
  .cta-duo {
    flex-direction: column;
  }

  .cta-duo .btn {
    width: 100%;
  }
}

/* Proof bar */
.proof-bar {
  background: var(--text);
  color: var(--white);
  padding: 1.25rem 0;
}

.proof-stats {
  display: grid;
  gap: 1rem;
  text-align: center;
}

.proof-stat strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 700;
}

.proof-stat span {
  font-size: 0.9rem;
  opacity: 0.85;
}

@media (min-width: 700px) {
  .proof-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.quote-strip {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.quote-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  font-style: italic;
  font-size: 0.95rem;
}

.quote-card cite {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  opacity: 0.7;
}

/* Narrative sections */
.narrow {
  max-width: 40rem;
  margin-inline: auto;
}

.narrative-section .section-header {
  margin-bottom: 1.5rem;
}

.story-prose p {
  font-size: 1.08rem;
  line-height: 1.75;
}

.story-prose p:last-child {
  margin-bottom: 0;
}

.example-block {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.75rem;
  padding: 1.25rem;
  background: var(--bg-scene);
  border-radius: var(--radius);
  border: 1px solid var(--divider);
}

.example-step {
  padding: 0.85rem 1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
}

.example-step p {
  margin: 0;
  font-size: 1.02rem;
}

.example-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--label-caps);
  margin-bottom: 0.4rem;
}

.example-step-effect {
  border-left: 3px solid var(--sage);
}

.promise-section {
  background: linear-gradient(180deg, var(--bg-scene) 0%, var(--bg) 100%);
}

.promise-scene {
  padding: 1.5rem 1.35rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--divider);
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}

.promise-scene p {
  font-size: 1.12rem;
  line-height: 1.75;
  margin-bottom: 0.85rem;
}

.promise-scene p:last-child {
  margin-bottom: 0;
}

.promise-effects {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.promise-effects li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--divider);
}

.promise-effects li::before {
  content: "";
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--sage);
}

/* About */
.about-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 2fr;
  }
}

.signature {
  width: min(220px, 70%);
  opacity: 0.9;
}

/* Chooser */
.chooser-intro {
  margin-bottom: 1.5rem;
}

.path-cards {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.path-card {
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.15s ease, background 0.15s ease;
  text-align: center;
}

.path-card-icon {
  display: flex;
  justify-content: center;
  margin: 0 auto 0.85rem;
  color: var(--text-muted);
  transition: color 0.15s ease, transform 0.15s ease;
}

.path-card-icon svg {
  width: 2.75rem;
  height: 2.75rem;
}

.path-card:hover .path-card-icon,
.path-card.is-active .path-card-icon {
  color: var(--accent);
  transform: translateY(-2px);
}

.path-card[data-path="wszystko"] .path-card-icon {
  color: var(--sage);
}

.path-card[data-path="wszystko"]:hover .path-card-icon,
.path-card[data-path="wszystko"].is-active .path-card-icon {
  color: var(--accent-dark);
}

.path-card:hover,
.path-card.is-active {
  border-color: var(--accent);
  background: var(--white);
}

.path-card h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
}

.path-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.recommendation {
  display: none;
  animation: fadeIn 0.25s ease;
}

.recommendation.is-visible {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.package-highlight {
  background: linear-gradient(180deg, var(--sage-soft) 0%, var(--bg-card) 100%);
  border: 2px solid var(--sage);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 2rem;
}

.package-highlight-soft {
  background: var(--bg-card);
  border: 1px solid var(--divider);
  box-shadow: none;
}

.package-highlight .badge {
  display: inline-block;
  background: var(--sage);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.package-highlight-soft .badge {
  background: transparent;
  color: var(--label-caps);
  border: 1px solid var(--divider);
  font-weight: 600;
}

.value-block {
  display: grid;
  gap: 0.65rem;
  margin: 1.25rem 0;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.92rem;
}

.value-block-soft {
  background: transparent;
  border: 1px dashed var(--divider);
  padding: 0.85rem 0;
}

.value-block-soft .value-row {
  padding: 0.15rem 0.5rem;
}

.value-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.value-row strong {
  color: var(--accent);
}

.value-block-soft .value-row strong {
  color: var(--text);
}

.value-row .strike {
  text-decoration: line-through;
  color: var(--text-muted);
}

/* Product details */
.product-block {
  margin-bottom: 2rem;
}

.product-head {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

@media (min-width: 768px) {
  .product-head {
    grid-template-columns: 180px 1fr;
  }
}

.product-cover {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.product-features li {
  padding: 0.35rem 0 0.35rem 1.4rem;
  position: relative;
}

.product-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}

.price-tag {
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0.5rem 0 1rem;
}

.price-tag .old {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-right: 0.5rem;
}

/* Ebook toggle */
.ebook-toggle {
  display: inline-flex;
  background: var(--bg-scene);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 1rem;
}

.toggle-btn {
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  color: var(--text-muted);
}

.toggle-btn.is-active {
  background: var(--white);
  color: var(--text);
  box-shadow: 0 2px 8px rgba(26, 21, 16, 0.08);
}

.ebook-panel {
  display: none;
}

.ebook-panel.is-active {
  display: block;
}

.note-box {
  background: var(--sage-soft);
  border-left: 3px solid var(--sage);
  padding: 0.85rem 1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.92rem;
  margin: 1rem 0;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid var(--divider);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 0.75rem;
}

.testimonial footer {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 1rem 1.1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.faq-a {
  display: none;
  padding: 0 1.1rem 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.faq-item.is-open .faq-a {
  display: block;
}

.faq-item.is-open .faq-q span:last-child {
  transform: rotate(45deg);
}

/* Final CTA */
.final-cta {
  background: var(--text);
  color: var(--white);
  text-align: center;
}

.final-cta .lead {
  color: rgba(255, 254, 249, 0.9);
}

.soft-exit {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.soft-exit h3 {
  font-size: 1.1rem;
}

.soft-exit p {
  color: rgba(255, 254, 249, 0.8);
  font-size: 0.95rem;
}

.site-footer {
  padding: 2rem 0;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.site-footer a {
  color: var(--text-muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Site nav */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(248, 245, 239, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--divider);
}

.site-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.site-nav-brand {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.site-nav-links {
  display: flex;
  gap: 1.1rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.site-nav-links a {
  color: var(--text);
  text-decoration: none;
}

.site-nav-links a:hover,
.site-nav-links a[aria-current="page"] {
  color: var(--accent);
}

/* About page */
.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.about-hero-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-timeline-item {
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
}

.about-timeline-item h3 {
  font-size: 1.15rem;
  margin: 0 0 0.6rem;
}

.about-timeline-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.about-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 2rem;
}

.about-photo-strip img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.about-books .card {
  padding: 1.35rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 820px) {
  .about-hero-grid,
  .about-timeline,
  .about-photo-strip,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .about-photo-strip {
    grid-template-columns: 1fr 1fr;
  }

  .about-photo-strip img:last-child {
    display: none;
  }
}

/* Landing pakietu (/pakiet.html) */
.urgency-bar {
  background: var(--accent-dark);
  color: var(--white);
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.pakiet-hero {
  padding-top: 2rem;
}

.pakiet-hero h1 em {
  color: var(--accent);
  font-style: normal;
}

.pakiet-hero-sub {
  font-size: 1.08rem;
}

.pakiet-hero-media {
  margin: 1.75rem 0 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pakiet-hero-media img {
  width: 100%;
  height: auto;
}

.pakiet-hero-media figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  background: var(--bg-card);
}

.pakiet-cta-band {
  padding-top: 0;
  margin-top: -0.5rem;
}

.pakiet-cta-box {
  background: var(--white);
  border: 2px solid var(--sage);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.pakiet-cta-question {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin: 0 0 1.25rem;
  line-height: 1.5;
}

.pakiet-cta-micro {
  margin: 0.85rem 0 0;
  font-size: 0.82rem;
}

.pakiet-element {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--divider);
}

.pakiet-element:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.pakiet-element-grid {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

@media (min-width: 768px) {
  .pakiet-element-grid {
    grid-template-columns: 200px 1fr;
  }
}

.pakiet-element-grid img {
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.about-portrait {
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.summary-check {
  list-style: none;
  padding: 0;
  margin: 0;
}

.summary-check li {
  padding: 0.5rem 0 0.5rem 1.6rem;
  position: relative;
  font-size: 1.02rem;
}

.summary-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}

.benefit-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (min-width: 960px) {
  .benefit-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--divider);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.25rem;
}

.benefit-card h3 {
  font-size: 1.02rem;
  margin: 0 0 0.5rem;
  color: var(--accent-dark);
}

.benefit-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.pricing-grid {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1.4fr 1fr;
  }
}

.pricing-cover {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-sm);
  margin: 0.75rem 0 1rem;
}

.pricing-solo {
  padding: 1.35rem;
  align-self: stretch;
}

.pricing-solo h3 {
  margin-top: 0;
}
