:root {
  --bg: #f8f3ec;
  --paper: #fffaf3;
  --text: #2e2a26;
  --muted: #71685e;
  --accent: #6f8468;
  --accent-dark: #53634d;
  --sage: #dfe8dc;
  --line: #e5d8c8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background:
  radial-gradient(circle at 15% 0%, #dfe8dc 0, transparent 32%),
  radial-gradient(circle at 85% 0%, #edf1e7 0, transparent 30%),
  #f7f5ef;
  color: var(--text);
  line-height: 1.6;
}

.hero {
  min-height: 100vh;
  padding: 28px;
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand strong {
  display: block;
  font-size: 22px;
  font-weight: 500;
}

.brand span {
  color: var(--muted);
}

.button {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-family: Arial, sans-serif;
}

.button:hover {
  background: var(--accent-dark);
}

.button.big {
  margin-top: 20px;
  padding: 17px 28px;
}

.hero-content {
  max-width: 1180px;
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 52px;
  align-items: center;
}

.eyebrow {
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: Arial, sans-serif;
  font-size: 13px;
}

h1 {
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin: 0;
  max-width: 780px;
  font-weight: 500;
}

.lead {
  max-width: 650px;
  font-size: 22px;
  color: var(--muted);
}

.photo-card {
  min-height: 620px;
  padding: 34px;
  border-radius: 36px;
  background: rgba(255, 250, 243, 0.78);
  box-shadow: 0 30px 80px rgba(78, 55, 39, 0.15);
  border: 1px solid rgba(255,255,255,0.7);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.photo-placeholder {
  min-height: 470px;
  border-radius: 30px;
  background:
    linear-gradient(rgba(255,255,255,0.04), rgba(255,255,255,0.04)),
    url("../images/agnieszka-wojnowska.jpg");
  background-size: cover;
  background-position: center 38%;
  background-repeat: no-repeat;
}

.photo-card p {
  font-size: 30px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 28px;
}

.section h2 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.cards article,
.calm,
.contact {
  padding: 32px;
  border-radius: 28px;
  background: rgba(255, 250, 243, 0.78);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(78, 55, 39, 0.08);
}

.cards p,
.calm p,
.contact p {
  color: var(--muted);
  font-size: 18px;
}

footer {
  padding: 40px 28px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-family: Arial, sans-serif;
}

@media (max-width: 850px) {
  .hero-content,
  .cards {
    grid-template-columns: 1fr;
  }

  .nav {
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
  }

  .photo-card {
    min-height: 420px;
  }
}
.section-heading {
  max-width: 860px;
  margin-bottom: 42px;
}

.section-heading p:last-child {
  max-width: 760px;
  color: var(--muted);
  font-size: 22px;
}

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

.cards article {
  min-height: 220px;
}

.cards h3 {
  font-size: 26px;
  line-height: 1.15;
  margin: 0 0 14px;
  font-weight: 500;
}

.process {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: stretch;
}

.process-card {
  border-radius: 34px;
  padding: 44px;
  box-shadow: 0 24px 70px rgba(78, 55, 39, 0.11);
}

.process-card.dark {
   background: linear-gradient(145deg, #eef1ea, #dfe5d9);
  color: var(--text);
  border: 1px solid var(--line);
}

.process-card.dark .eyebrow {
  color: var(--accent-dark);
}

.process-card.dark p {
  color: var(--muted);

}

.process-card.light {
  background: rgba(255, 250, 243, 0.78);
  border: 1px solid var(--line);
}

.process-card h2 {
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 500;
}

.process-card p {
  font-size: 20px;
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(248, 243, 236, 0.75);
  border: 1px solid var(--line);
}

.step span {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--sage);
  color: var(--accent-dark);
  font-family: Arial, sans-serif;
  font-size: 13px;
}

.step h3 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 500;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

@media (max-width: 850px) {
  .cards.six,
  .process {
    grid-template-columns: 1fr;
  }

  .process-card {
    padding: 30px;
  }
}
.about-section {
  padding-top: 40px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.about-photo {
  min-height: 720px;
  border-radius: 36px;
  background:
    linear-gradient(rgba(255,255,255,0.05), rgba(255,255,255,0.05)),
    url("../images/agnieszka-wojnowska-about.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 30px 80px rgba(78, 55, 39, 0.15);
}

.about-content {
  padding: 10px 0;
}

.about-content h2 {
  font-size: clamp(42px, 5vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 500;
  margin-bottom: 28px;
}

.about-content p {
  font-size: 21px;
  color: var(--muted);
  max-width: 720px;
}

.qualifications {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.qualification {
  padding: 20px;
  border-radius: 22px;
  background: rgba(223, 232, 220, 0.72);
  color: #4d5648;
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.45;
}

@media (max-width: 850px) {

  .about-grid,
  .qualifications {
    grid-template-columns: 1fr;
  }

  .about-photo {
    min-height: 480px;
  }
}
.contact-section {
  padding-top: 40px;
}

.contact-box-large {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  padding: 60px;
  border-radius: 40px;
  background:
    radial-gradient(circle at top left, rgba(223,229,217,0.9), transparent 38%),
    rgba(255,250,243,0.82);
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(78,55,39,0.12);
}

.contact-left h2 {
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 500;
  max-width: 760px;
  margin-bottom: 24px;
}

.contact-left p {
  font-size: 21px;
  color: var(--muted);
  max-width: 680px;
}

.contact-button {
  display: inline-block;
  margin-top: 34px;
  padding: 18px 30px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 16px;
  transition: all .25s ease;
}

.contact-button:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.contact-right {
  display: grid;
  gap: 16px;
}

.contact-card {
  padding: 28px;
  border-radius: 26px;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(229,216,200,0.7);
}

.contact-card span {
  display: block;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.contact-card strong {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 500;
}

footer {
  margin-top: 60px;
  padding: 40px 28px 70px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-family: Arial, sans-serif;
}

@media (max-width: 850px) {

  .contact-box-large {
    grid-template-columns: 1fr;
    padding: 34px;
  }

  .contact-left h2 {
    font-size: 52px;
  }
}
html {
  scroll-behavior: smooth;
}

.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card {
  padding: 34px;
  border-radius: 30px;
  background: rgba(255,250,243,0.82);
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(78,55,39,0.08);
}

.price-card h3 {
  font-size: 25px;
  line-height: 1.15;
  font-weight: 500;
  min-height: 90px;
}

.price-card strong {
  display: block;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.06em;
  margin: 20px 0 8px;
}

.price-card span {
  color: var(--muted);
  font-family: Arial, sans-serif;
}

@media (max-width: 850px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}
.credibility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.credibility-card {
  padding: 30px;
  border-radius: 30px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(78,55,39,0.06);
}

.credibility-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  border-radius: 50%;
  background: rgba(122,130,112,0.14);
  color: var(--accent-dark);
  font-family: Arial, sans-serif;
  font-size: 13px;
}

.credibility-card h3 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.12;
  font-weight: 500;
}

.credibility-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

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

@media (max-width: 650px) {
  .credibility-grid {
    grid-template-columns: 1fr;
  }
}
.faq-list {
  max-width: 980px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 14px;
  border-radius: 24px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 28px 30px;
  font-size: 24px;
  font-weight: 500;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 30px 30px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.presence-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.presence-photo {
  min-height: 650px;
  border-radius: 36px;

  background:
    url("../images/agnieszka-natura.jpg");

  background-size: cover;
  background-position: center;

  box-shadow: 0 24px 70px rgba(0,0,0,0.08);
}

.presence-content h2 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  font-weight: 500;
}

.presence-content p {
  font-size: 20px;
  color: var(--muted);
}

@media (max-width: 900px) {

  .presence-grid {
    grid-template-columns: 1fr;
  }

  .presence-photo {
    min-height: 420px;
  }
}
.booking-widget-box {
  padding: 28px;
  border-radius: 34px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(0,0,0,0.06);
  overflow: hidden;
}
.button.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--line);
}

.button.secondary:hover {
  background: rgba(122,130,112,0.10);
}
@media (max-width: 850px) {

  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-actions .btn {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    overflow-wrap: anywhere;
  }
}
@media (max-width: 850px) {
  .contact .button,
  .contact-section .button,
  .contact-button,
  a[href^="mailto:"] {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    text-align: center;
    line-height: 1.35;
  }
}
.booking-fallback {
  text-align: center;
}

.booking-fallback h3 {
  margin: 0 0 14px;
  font-size: 28px;
  font-weight: 500;
}

.booking-fallback p {
  max-width: 680px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 18px;
}
#twoj-psycholog-widget {
  display: block;
  width: 100%;
  min-height: 820px;
}

.booking-section {
  overflow: visible;
}

.booking-widget-box {
  overflow: visible;
  min-height: 820px;
}