/* 
  Hipnoza Transpersonalna — statyczna strona one-page
  Pliki gotowe do wrzucenia przez FTP.
*/

:root {
  --bg: #fbfaf6;
  --bg-muted: #f1eee6;
  --text: #26302b;
  --muted: #647168;
  --primary: #244f3e;
  --primary-dark: #17382c;
  --accent: #d1ab5c;
  --accent-dark: #b28327;
  --accent-light: #a0e2c7;
  --card: #ffffff;
  --line: #dbd3c4;
  --shadow: 0 20px 50px rgba(27, 33, 29, 0.25);
  --radius: 22px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

p {
  margin: 0 0 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 246, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(221, 215, 203, .7);
}

.header-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-weight: 700;
  letter-spacing: .06em;
  font-family: Arial, sans-serif;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: .82rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  font-family: Arial, sans-serif;
  font-size: 1rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--muted);
}

.main-nav a:hover {
  color: var(--primary-dark);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--primary);
  color: white !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.section {
  padding: clamp(68px, 8vw, 110px) 0;
}

.container {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}



.hero {
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  color: #fff8ee;

  background:
    radial-gradient(circle at 82% 18%, rgba(29, 167, 116, 0.3), transparent 34%),
    radial-gradient(circle at 18% 82%, rgba(54, 155, 119, 0.22), transparent 38%),
    linear-gradient(135deg, #17382c 0%, #244f3e 42%, #3d604e 100%);
}

.hero::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    url("tree.svg") right top / 900px no-repeat;

  opacity: .03;

  pointer-events: none;

  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}



@media (max-width: 1800px) {
  .hero::after {
    display: none;
  }
}





.hero-grid,
.contact-grid,
.split {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}


.eyebrow {
  margin-bottom: 12px;
  color: var(--accent);
  font-family: Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  font-size: .82rem;
}
.eyebrowbray {
  color: var(--muted);
}
 
h1,
h2,
h3,
h4 {
  line-height: 1.15;
  margin: 0 0 25px;
  font-weight: 500;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.35rem, 6vw, 4.2rem);
  letter-spacing: -.04em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -.03em;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

h4 {
  font-size: 1.35rem;
}

.lead {
  max-width: 720px;
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  color: var(--accent-light);
}

.hero-note {
  max-width: 680px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 35px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 35px;
  border: 0;
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  font-size: 1.10rem;
}

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

.button.primary:hover {
  background: var(--primary-dark);
  color: #fff;
}

.button.secondary {
  background: white;
  color: var(--primary-dark);
  border: 1px solid var(--line);
}

.hero-card,
.card,
.info-box,
.price-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .84);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: clamp(24px, 4vw, 38px);
  color: var(--primary-dark);
}

.hero-card ul {
  padding-left: 22px;
  margin: 0 0 20px;
}

#o-mnie.section-bottom {
  padding-top: 50px;
  padding-bottom: 0; 
}


#o-mnie .split {
   align-items: start;
}

#o-mnie .anna-bg {
    overflow: hidden;
    max-height: 720px;
    text-align: center;

    transition:
      max-height .6s ease,
      overflow .3s ease;
}

#o-mnie .anna-bg.expanded {
    overflow: visible;
}




.certificates-section {
  background: var(--bg-muted);
  padding: clamp(68px, 8vw, 70px) 0;  
}



.certificates-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
}

.certificates-copy {
  max-width: 430px;
}

.certificates-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

/* =========================
   GRID CERTYFIKATÓW
   ========================= */

.certificates-thumbs {
  display: grid;
  /* 4 pionowe w rzędzie */
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: start;
}

/* wspólne ustawienia */
.cert-thumb {
  padding: 10px;
  border-radius: 18px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(35,45,38,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition:
    transform .22s ease,
    box-shadow .22s ease;
}

.cert-thumb:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(35,45,38,.12);
}

.cert-thumb img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}


/* poziomy certyfikat */
.cert-thumb:last-child {
  grid-column: 1 / -1;
  min-height: 140px;
  max-width: 760px;
  justify-self: left;
}

.cert-thumb:last-child img {
  width: auto;
  max-width: 100%;
  max-height: 145px;
}

/* =========================
   TABLET / MOBILE
   ========================= */
@media (max-width: 900px) {

  .certificates-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .certificates-copy {
    max-width: 100%;
  }

  .cert-thumb:last-child {
    grid-column: 1 / -1;
    min-height: 110px;
    max-width: 100%;
  }


}

/* =========================
   MAŁE TELEFONY
   ========================= */
@media (max-width: 520px) {
    
  .certificates-thumbs {
    grid-template-columns: repeat(2, 1fr);
  }

  .certificates-section {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .certificates-thumbs {
    gap: 10px;
  }

  .cert-thumb {
    padding: 8px;
    border-radius: 14px;
  }

}








.transpersonal-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(200, 169, 106, .18), transparent 34%),
    linear-gradient(135deg, #fbfaf6 0%, #f1eee6 100%);
}

.transpersonal-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: start;
}



.transpersonal-intro .lead {
  color: var(--primary-dark);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.transpersonal-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow);
}

.transpersonal-card p:last-child {
  margin-bottom: 0;
}

.transpersonal-points {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 10px;
}

.transpersonal-points article {
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 38px rgba(35, 45, 38, .07);
}

.transpersonal-points span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent);
  font-family: Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .12em;
}

.transpersonal-points h3 {
  color: var(--primary-dark);
}

.transpersonal-points p {
  color: var(--muted);
}

.transpersonal-summary {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding: 30px 34px;
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(36, 79, 62, .06);
}

.transpersonal-summary p {
  margin: 0;
  color: var(--primary-dark);
  font-size: 1.12rem;
}

@media (max-width: 900px) {
  .transpersonal-grid,
  .transpersonal-points {
    grid-template-columns: 1fr;
  }

  .transpersonal-intro {
    position: static;
  }
}





.small,
.form-note {
  color: var(--muted);
  font-size: .92rem;
  font-family: Arial, sans-serif;
}

.section-muted {
  background: var(--bg-muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading p {
  color: var(--muted);
}

.content p {
  font-size: 1.08rem;
  color: var(--primary-dark);
}

.cards {
  display: grid;
  gap: 22px;
}

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

.card {
  padding: 28px;
}

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

.checklist-wrap {
  margin-top: 38px;
  padding: 32px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--line);
}

.checklist {
  columns: 2;
  gap: 34px;
  padding-left: 0;
  list-style: none;
}

.checklist li {
  break-inside: avoid;
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

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

.process {
  margin-top: 44px;
}

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

.timeline article {
  position: relative;
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}

.timeline span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: Arial, sans-serif;
  font-weight: 700;
}


.timeline span {
display: grid;
    place-items: center;
    width: 80px;
    height: 42px;
    margin-bottom: 25px;
    border-radius: 10px;
    background: var(--accent);
    color: var(--text);
    font-family: Arial, sans-serif;
    font-weight: 700;
}



.pricing,
.columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.price-card,
.info-box {
  padding: 30px;
}

.price-card.featured {
  border-color: rgba(111, 127, 115, .55);
  background: linear-gradient(145deg, #fff, #f5f2ea);
}

.price-card {
  background: var(--accent);
  margin-bottom: 30px;
}

.price {
  margin: 6px 0 12px;
  font-size: 2.4rem;
  color: var(--primary-dark);
  line-height: 1;
}

.info-box ul {
  padding-left: 20px;
}

.info-box li {
  margin-bottom: 10px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}

summary {
  cursor: pointer;
  font-weight: 700;
  font-family: Arial, sans-serif;
}

details p {
  margin-top: 14px;
  color: var(--muted);
}

.contact-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(29, 167, 116, 0.3), transparent 34%),
    radial-gradient(circle at 18% 82%, rgba(54, 155, 119, 0.22), transparent 38%),
    linear-gradient(135deg, #17382c 0%, #244f3e 42%, #3d604e 100%);
  color: #fff8ee;
}


.contact-section p {
  color: #efe3cd;
}

.contact-methods {
  margin: 28px 0;
  font-family: Arial, sans-serif;
}

.contact-methods a {
  color: #d8bd7a;
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: bold;
}

address {
  color: #efe9dc;
  font-style: normal;
}

.time-session {
  margin-top: 25px;
}

.contact-form {
  padding: clamp(24px, 4vw, 34px);
  color: var(--text);
}

.contact-form .form-note {
  padding-bottom: 10px;
}

.contact-form label {
  display: block;
  margin-bottom: 16px;
  color: var(--primary-dark);
  font-family: Arial, sans-serif;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  margin-top: 8px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font: inherit;
  font-weight: normal;
}

textarea {
  resize: vertical;
}

.site-footer {
  padding: 24px 0;
  background: #123127;
  color: #eadcc6;
  font-family: Arial, sans-serif;
  border-top: 1px solid rgba(216, 189, 122, .22);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: #f0d38c;
}


.read-more-content {
  display: none;
}

.read-more-content.is-visible {
  display: block;
}

.read-more-btn {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 25px;
  border: 1px solid rgba(200, 169, 106, .65);
  border-radius: 999px;
  background: #244f3e;
  color: #fff8ee;
  font-family: Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 35px;
}

.read-more-btn:hover {
  background: #17382c;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 760px;
  aspect-ratio: 16 / 9;
  margin-top: 22px;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 18px;
}




@media (max-width: 900px) {
  .hero-grid,
  .contact-grid,
  .split,
  .pricing,
  .columns,
  .cards.three,
  .timeline {
    grid-template-columns: 1fr;
  }


}

@media (max-width: 560px) {
  .brand small {
    display: none;
  }

  .hero-actions,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .button {
    width: 100%;
  }
}


.pricing .button.primary {
  background: rgba(255, 255, 255, .90);
  font-size: 1rem;
}
.pricing .button.primary:hover {
  background: rgba(255, 255, 255, .75);
  color: var(--primary-dark);
}
.price-info {
  margin-bottom: 1.3rem;
  font-size: 17px;
}

.hero .eyebrow {
  color: #d8bd7a;
}

.hero h1 {
  color: #fff8ee;
}

.hero .lead {
  color: #f5ead8;
}

.hero .hero-note {
  color: #eadcc6;
}

.hero .button.primary {
  background: var(--accent);
  color: var(--text);
}

.hero .button.primary:hover {
  background: #d7bd80;
}

.hero .button.secondary {
  background: rgba(255, 255, 255, .12);
  color: #fff8ee;
  border-color: rgba(216, 189, 122, .55);
}

.hero .button.secondary:hover {
  background: rgba(255, 255, 255, .18);
}

.hero .hero-card {
  background: rgba(255, 251, 242, .85);
  color: var(--text);
  border-color: rgba(216, 189, 122, .55);
  box-shadow: 0 24px 70px rgba(11, 29, 22, .28);
}

.hero .hero-card h2 {
  color: #17382c;
}

.hero .hero-card li::marker {
  color: var(--accent);
}

.hero .hero-card .small {
  color: var(--muted);
}


.contact-section h2,
.contact-section h3 {
  color: #fff8ee;
}

.contact-section strong {
  color: #f0d38c;
}

.contact-section ul {
  color: #efe3cd;
}

.contact-methods a {
  color: #f0d38c;
  text-decoration-color: rgba(240, 211, 140, .55);
}

.contact-methods a:hover {
  color: #fff1c2;
}

.contact-form {
  background: rgba(255, 251, 242, .97);
  border-color: rgba(216, 189, 122, .65);
  box-shadow: 0 24px 70px rgba(11, 29, 22, .30);
}

.contact-form h3 {
  color: #17382c;
}


.contact-form label {
  color: #244f3e;
}

.contact-form input,
.contact-form textarea {
  border-color: rgba(200, 169, 106, .45);
  background: #fffdf8;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(200, 169, 106, .45);
  border-color: #c8a96a;
}


.contact-form .button.primary:hover {
  background: #d7bd80;
  color: var(--text);
}


/* ==============================
   POPRAWIONE MENU MOBILNE
   ============================== */

.nav-toggle {
  position: relative;
  z-index: 1001;
  flex: 0 0 auto;
  cursor: pointer;
}

.nav-toggle span {
  transition: transform .25s ease, opacity .2s ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1080px) {
  .header-inner {
    min-height: 68px;
    gap: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    white-space: nowrap;
  }

  .brand small {
    white-space: nowrap;
  }

  .main-nav {
    gap: 14px;
    font-size: .92rem;
  }
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .header-inner {
    width: min(var(--max), calc(100% - 28px));
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 78px;
    z-index: 1000;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;

    max-height: calc(100vh - 96px);
    padding: 14px;
    overflow-y: auto;

    border: 1px solid rgba(216, 189, 122, .45);
    border-radius: 20px;
    background:
      radial-gradient(circle at 90% 10%, rgba(209, 171, 92, .16), transparent 30%),
      linear-gradient(135deg, #17382c 0%, #244f3e 100%);
    box-shadow: 0 24px 70px rgba(11, 29, 22, .35);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity .22s ease,
      transform .22s ease,
      visibility .22s ease;
  }

  body.nav-open .main-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    display: block;
    padding: 14px 16px;
    border-radius: 14px;
    color: #fff8ee;
    font-size: 1.05rem;
    line-height: 1.25;
  }

  .main-nav a:hover,
  .main-nav a:focus {
    color: #fff8ee;
    background: rgba(255, 255, 255, .10);
    outline: none;
  }

  .main-nav .nav-cta {
    margin-top: 8px;
    text-align: center;
    background: var(--accent);
    color: var(--primary-dark) !important;
  }

  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(12, 28, 22, .46);
    backdrop-filter: blur(2px);
  }

  .site-header,
  .header-inner,
  .nav-toggle,
  .brand,
  .main-nav {
    isolation: isolate;
  }

  .hero-grid,
  .contact-grid,
  .split,
  .pricing,
  .columns,
  .cards.three,
  .timeline {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .header-inner {
    width: calc(100% - 24px);
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: .98rem;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .main-nav {
    left: 12px;
    right: 12px;
    top: 72px;
    max-height: calc(100vh - 88px);
  }
}


@media (max-width: 768px) {
  .checklist {
    columns: 1;
  }
}

@media (max-width: 900px) {
  #o-mnie .anna-bg, #o-mnie anna-bg.expanded {
    overflow: hidden !important;
    max-height: 450px;
  }
  #o-mnie .video1 {
      display: none;  
  }
}
@media (max-width: 900px) {
  #o-mnie.dziekuje .anna-bg {
      display: none !important;
  }
}

@media (min-width: 901px) {
   #o-mnie .video2 {
      display: none;  
   }
}


.legal h1 {
  font-size: 3.0rem;
}
.legal h2 {
  font-size: 2.0rem;
  margin: 30px 0 20px;
}

