/* ============================================================
   Лиляна Христова — клиничен психолог
   Топла, спокойна дизайн-система
   ============================================================ */

@font-face {
  font-family: "IBM Plex Sans";
  src: url("/fonts/IBMPlexSans-Variable.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #F7F2E9;
  --cream-deep: #EFE7D8;
  --sand: #E5DAC6;
  --white: #FFFDF8;
  --ink: #2C3830;
  --ink-soft: #55645B;
  --green: #4C6B58;
  --green-deep: #35503F;
  --green-mist: #DCE5DC;
  --terra: #C0764E;          /* декоративна употреба (рамки, орнаменти) */
  --terra-deep: #9C5530;     /* терракота за ТЕКСТ — WCAG AA върху крем/бяло */
  --terra-btn: #A55F35;      /* терракота за фон на бутони — WCAG AA с бял текст */
  --terra-soft: #E8CDB9;
  --terra-tint: #F3E6D9;     /* светъл фон за етикети с terra-deep текст */
  --gold: #B99B62;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "IBM Plex Sans", "Segoe UI", sans-serif;

  --radius: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 10px 40px -12px rgba(44, 56, 48, 0.14);
  --shadow-card: 0 6px 24px -8px rgba(44, 56, 48, 0.10);
  --maxw: 1160px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; overflow-x: clip; }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: var(--green-deep); text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; }

/* Зърнеста текстура върху целия фон */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.2 0 0 0 0 0.22 0 0 0 0 0.19 0 0 0 0.035 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
main, header, footer { position: relative; z-index: 1; }

::selection { background: var(--terra-soft); color: var(--ink); }

/* ---------- Типография ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: 0.005em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); font-weight: 600; }
p + p { margin-top: 1em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra-deep);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1.5px;
  background: var(--terra);
  opacity: 0.6;
}

.lead { font-size: 1.2rem; color: var(--ink-soft); }
.muted { color: var(--ink-soft); }

/* ---------- Оформление ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.2rem, 4vw, 2.5rem); }
.section { padding: clamp(4rem, 9vw, 7rem) 0; }
.section-tight { padding: clamp(2.6rem, 6vw, 4.2rem) 0; }
.section-alt { background: var(--white); }
.section-green {
  background: var(--green-deep);
  color: var(--cream);
}
.section-green h2, .section-green h3 { color: var(--cream); }
.section-green .muted { color: rgba(247, 242, 233, 0.75); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.center { text-align: center; }
.section-head { max-width: 640px; margin: 0 auto clamp(2.4rem, 5vw, 3.6rem); text-align: center; }

/* ---------- Бутони ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.3s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary {
  background: var(--green-deep);
  color: var(--cream);
  box-shadow: 0 8px 24px -8px rgba(53, 80, 63, 0.45);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--green); box-shadow: 0 14px 30px -10px rgba(53, 80, 63, 0.5); }
.btn-outline {
  border: 1.5px solid rgba(44, 56, 48, 0.3);
  color: var(--ink);
  background: transparent;
}
.btn-outline:hover { transform: translateY(-2px); border-color: var(--green-deep); background: rgba(76, 107, 88, 0.06); }
.btn-terra {
  background: var(--terra-btn);
  color: #FFF9F2;
  box-shadow: 0 8px 24px -8px rgba(165, 95, 53, 0.5);
}
.btn-terra:hover { transform: translateY(-2px); background: #94512B; }
.btn-light {
  background: var(--cream);
  color: var(--green-deep);
}
.btn-light:hover { transform: translateY(-2px); background: var(--white); }
.btn-lg { padding: 1.1rem 2.3rem; font-size: 1.06rem; }

/* ---------- Хедър ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 242, 233, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(44, 56, 48, 0.08);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 4px 24px -10px rgba(44, 56, 48, 0.15); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1.2rem, 4vw, 2.5rem);
  max-width: 1300px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: none; /* логото и името никога не се свиват */
}
.brand-logo { max-width: none; }
.brand-mark { width: 42px; height: 42px; flex: none; }
.brand-logo { height: 46px; width: auto; flex: none; }
.footer-brand .brand-logo { height: 54px; margin-bottom: 1rem; }
.brand-text { line-height: 1.2; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--ink);
  white-space: nowrap;
}
.brand-title {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}

.main-nav { display: flex; align-items: center; gap: 0.2rem; }
.main-nav > ul { display: flex; align-items: center; gap: 0.1rem; }
.main-nav a.nav-link {
  display: block;
  padding: 0.5rem 0.6rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: 10px;
  transition: background 0.25s, color 0.25s;
  white-space: nowrap;
}
.main-nav a.nav-link:hover { background: rgba(76, 107, 88, 0.09); }
.main-nav a.nav-link.active { color: var(--terra-deep); font-weight: 600; }

/* Падащо меню „Методи" */
.has-dropdown { position: relative; }
.has-dropdown > button.nav-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.6rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: 10px;
  transition: background 0.25s;
  white-space: nowrap;
}
.has-dropdown > button.nav-link:hover { background: rgba(76, 107, 88, 0.09); }
.has-dropdown > button.nav-link.active { color: var(--terra-deep); font-weight: 600; }
.has-dropdown svg { width: 12px; height: 12px; transition: transform 0.25s; }
.has-dropdown.open svg { transform: rotate(180deg); }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white);
  border: 1px solid rgba(44, 56, 48, 0.08);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  padding: 0.5rem;
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}
.has-dropdown.open .dropdown,
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: 0.65rem 0.9rem;
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--ink);
  transition: background 0.2s;
}
.dropdown a:hover { background: var(--green-mist); }
.dropdown a strong { display: block; font-weight: 600; }
.dropdown a span { font-size: 0.82rem; color: var(--ink-soft); }

.header-cta { flex: none; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--ink);
  white-space: nowrap;
  transition: color 0.25s;
}
.header-phone svg { width: 17px; height: 17px; color: var(--green-deep); }
.header-phone:hover { color: var(--green-deep); }
@media (max-width: 1420px) { .header-phone { display: none; } }

/* Мобилно меню */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  border-radius: 12px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1220px) {
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  /* backdrop-filter прави хедъра containing block за fixed елементи
     и чупи мобилното меню — затова тук е плътен фон без блър */
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--cream);
  }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    width: min(340px, 88vw);
    background: var(--white);
    box-shadow: -20px 0 60px -20px rgba(44, 56, 48, 0.3);
    transform: translateX(105%);
    transition: transform 0.4s var(--ease-out);
    padding: 5.5rem 1.6rem 2rem;
    overflow-y: auto;
    z-index: 99;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 0.2rem; }
  .main-nav a.nav-link, .has-dropdown > button.nav-link { font-size: 1.08rem; padding: 0.8rem 1rem; width: 100%; text-align: left; }
  .has-dropdown > button.nav-link { justify-content: space-between; }
  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: var(--cream);
    display: none;
    margin: 0.2rem 0 0.4rem;
  }
  .has-dropdown.open .dropdown { display: block; }
  .has-dropdown:hover .dropdown { transform: none; }
  .mobile-cta { display: block !important; margin-top: 1.4rem; }
}
.mobile-cta { display: none; }
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 56, 48, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  z-index: 98;
}
.nav-overlay.show { opacity: 1; visibility: visible; }
body.nav-open { overflow: hidden; }

/* ---------- Херо ---------- */
.hero {
  position: relative;
  padding: clamp(4rem, 9vw, 7.5rem) 0 clamp(4rem, 8vw, 6.5rem);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero h1 em {
  font-style: italic;
  color: var(--green-deep);
}
.hero .lead { margin: 1.4rem 0 2.2rem; max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }
.hero-note {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.hero-note svg { width: 17px; height: 17px; color: var(--green); flex: none; }

/* Херо портрет с дишащи кръгове зад него */
.hero-portrait {
  position: relative;
  display: grid;
  place-items: center;
  padding: 1.5rem 0;
}
.hero-portrait .breath-ring {
  z-index: 0;
}
.hero-portrait .portrait {
  position: relative;
  z-index: 1;
  width: min(360px, 82vw);
}
.hero-badge {
  position: absolute;
  z-index: 2;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(44, 56, 48, 0.08);
  border-radius: 100px;
  padding: 0.6rem 1.4rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
  white-space: nowrap;
}
.hero-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.2;
}
.hero-badge span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Дишащи кръгове — визуален акцент */
.breath-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}
.breath-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(76, 107, 88, 0.35);
  animation: breathe 7s ease-in-out infinite;
}
.breath-ring:nth-child(1) { width: 240px; height: 240px; animation-delay: 0s; }
.breath-ring:nth-child(2) { width: 330px; height: 330px; animation-delay: 0.6s; border-color: rgba(192, 118, 78, 0.28); }
.breath-ring:nth-child(3) { width: 420px; height: 420px; animation-delay: 1.2s; border-color: rgba(76, 107, 88, 0.18); }
.breath-core {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #6E8C77, var(--green-deep));
  display: grid;
  place-items: center;
  color: var(--cream);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  animation: breathe-core 7s ease-in-out infinite;
  box-shadow: 0 24px 60px -18px rgba(53, 80, 63, 0.55);
  text-align: center;
  line-height: 1.3;
  padding: 1rem;
}
@keyframes breathe {
  0%, 100% { transform: scale(0.94); opacity: 0.7; }
  50% { transform: scale(1.05); opacity: 1; }
}
@keyframes breathe-core {
  0%, 100% { transform: scale(0.97); }
  50% { transform: scale(1.04); }
}
@media (prefers-reduced-motion: reduce) {
  .breath-ring, .breath-core { animation: none; }
  html { scroll-behavior: auto; }
}

/* Меки декоративни петна */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: -1;
}
.blob-green { background: rgba(120, 150, 128, 0.35); }
.blob-terra { background: rgba(214, 160, 118, 0.3); }

/* ---------- Портрет ---------- */
.portrait {
  position: relative;
  width: min(380px, 100%);
  aspect-ratio: 4 / 5;
  border-radius: 999px 999px var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, var(--green-mist), var(--sand));
  box-shadow: var(--shadow-soft);
  margin: 0 auto;
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait.no-photo::after {
  content: "ЛХ";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 600;
  color: var(--green-deep);
  opacity: 0.5;
}
.portrait-frame {
  position: relative;
  display: inline-block;
}
.portrait-frame::before {
  content: "";
  position: absolute;
  inset: -14px -14px auto auto;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1.5px dashed rgba(192, 118, 78, 0.5);
  z-index: 1;
}

/* ---------- Карти ---------- */
.card {
  background: var(--white);
  border: 1px solid rgba(44, 56, 48, 0.07);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.card h3 { margin-bottom: 0.6rem; }
.card p { color: var(--ink-soft); font-size: 0.99rem; }
.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  background: var(--green-mist);
  color: var(--green-deep);
}
.card-icon svg { width: 26px; height: 26px; }
.card:nth-child(3n+2) .card-icon { background: var(--terra-soft); color: var(--terra); }
.card:nth-child(3n) .card-icon { background: var(--cream-deep); color: var(--gold); }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--green-deep);
}
.card-link svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease-out); }
.card-link:hover svg { transform: translateX(4px); }

/* Големи карти за методите */
.method-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 2.8rem);
  border: 1px solid rgba(44, 56, 48, 0.07);
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.method-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.method-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--green-mist);
  opacity: 0.6;
  transition: transform 0.5s var(--ease-out);
}
.method-card.terra::before { background: var(--terra-soft); }
.method-card:hover::before { transform: scale(1.25); }
.method-card > * { position: relative; }
.method-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--green-mist);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.1rem;
  align-self: flex-start;
}
.method-card.terra .method-tag { color: var(--terra-deep); background: var(--terra-tint); }
.method-card p { color: var(--ink-soft); margin-top: 0.7rem; flex: 1; }

/* ---------- Списъци с отметки ---------- */
.check-list { display: grid; gap: 0.7rem; margin-top: 1.4rem; }
.check-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--ink-soft);
}
.check-list li::before {
  content: "";
  flex: none;
  width: 22px;
  height: 22px;
  margin-top: 0.2rem;
  border-radius: 50%;
  background: var(--green-mist) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2335503F' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.section-green .check-list li { color: rgba(247, 242, 233, 0.85); }
.section-green .check-list li::before {
  background-color: rgba(247, 242, 233, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F7F2E9' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
}

/* ---------- Стъпки (как протича) ---------- */
.steps { display: grid; gap: 0; position: relative; max-width: 760px; margin: 0 auto; }
.step {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.4rem;
  padding-bottom: 2.6rem;
}
.step:last-child { padding-bottom: 0; }
.step::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 64px;
  bottom: 8px;
  width: 1.5px;
  background: linear-gradient(to bottom, rgba(76, 107, 88, 0.4), rgba(76, 107, 88, 0.08));
}
.step:last-child::before { display: none; }
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid rgba(76, 107, 88, 0.3);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green-deep);
  box-shadow: var(--shadow-card);
}
.step h3 { margin-bottom: 0.4rem; }
.step p { color: var(--ink-soft); }
/* В тъмнозелената секция текстът на стъпките е светъл (контраст) */
.section-green .step p { color: rgba(247, 242, 233, 0.88); }
.section-green .step p a { color: var(--cream); text-decoration: underline; }

/* ---------- ЧЗВ акордеон ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 0.9rem; }
.faq-item {
  background: var(--white);
  border: 1px solid rgba(44, 56, 48, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item[open] { box-shadow: var(--shadow-card); }
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: color 0.25s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--green-deep); }
.faq-item summary::after {
  content: "";
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-mist) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2335503F' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / 13px no-repeat;
  transition: transform 0.3s var(--ease-out);
}
.faq-item[open] summary::after { transform: rotate(45deg); background-color: var(--terra-soft); }
.faq-item .faq-body { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); }

/* ---------- Табела с контакти ---------- */
.contact-tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.contact-tile {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid rgba(44, 56, 48, 0.08);
  border-radius: var(--radius);
  padding: 1.4rem;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
  color: var(--ink);
}
a.contact-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.contact-tile .tile-icon {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--green-mist);
  color: var(--green-deep);
}
.contact-tile .tile-icon svg { width: 22px; height: 22px; }
.contact-tile.viber .tile-icon { background: #EFE6F7; color: #7360F2; }
.contact-tile.whatsapp .tile-icon { background: #E3F4E7; color: #1FAF57; }
.contact-tile strong { display: block; font-size: 1.02rem; }
.contact-tile span { font-size: 0.9rem; color: var(--ink-soft); }

/* Карта */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(44, 56, 48, 0.08);
}
.map-embed iframe { display: block; width: 100%; height: 380px; border: 0; }

/* ---------- Календар за запазване ---------- */
.booking-frame {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(44, 56, 48, 0.08);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  min-height: 500px;
}
.booking-frame iframe { display: block; width: 100%; height: 720px; border: 0; }
.booking-placeholder {
  display: grid;
  place-items: center;
  min-height: 500px;
  padding: 2.5rem;
  text-align: center;
}
.booking-placeholder .inner { max-width: 460px; }
.booking-placeholder h3 { margin-bottom: 0.7rem; }
.booking-placeholder p { color: var(--ink-soft); margin-bottom: 1.5rem; }

/* ---------- CTA секция ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--green-deep), #2A4234);
  color: var(--cream);
  padding: clamp(2.6rem, 6vw, 4.5rem);
  text-align: center;
}
.cta-band::before, .cta-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(247, 242, 233, 0.12);
}
.cta-band::before { width: 340px; height: 340px; top: -160px; left: -100px; }
.cta-band::after { width: 260px; height: 260px; bottom: -130px; right: -70px; border-color: rgba(192, 118, 78, 0.3); }
.cta-band h2 { color: var(--cream); margin-bottom: 0.8rem; }
.cta-band p { color: rgba(247, 242, 233, 0.8); max-width: 520px; margin: 0 auto 1.8rem; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- Подзаглавна лента (вътрешни страници) ---------- */
.page-hero {
  position: relative;
  padding: clamp(3.2rem, 7vw, 5.5rem) 0 clamp(2.6rem, 5vw, 4rem);
  overflow: hidden;
}
.page-hero .lead { margin-top: 1.2rem; max-width: 640px; }
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  font-size: 0.86rem;
  color: var(--ink-soft);
  margin-bottom: 1.6rem;
}
.breadcrumbs a { color: var(--ink-soft); }
.breadcrumbs a:hover { color: var(--green-deep); }
.breadcrumbs .sep { opacity: 0.5; }

/* ---------- Проза (дълги текстове) ---------- */
.prose { max-width: 720px; }
.prose h2 { margin: 2.4rem 0 0.9rem; }
.prose h3 { margin: 1.8rem 0 0.6rem; }
.prose p { color: var(--ink-soft); }
.prose strong { color: var(--ink); }
.prose blockquote {
  margin: 1.8rem 0;
  padding: 1.3rem 1.6rem;
  border-left: 3px solid var(--terra);
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink);
}

/* Кутия „накратко" — за AEO */
.answer-box {
  background: var(--white);
  border: 1px solid rgba(76, 107, 88, 0.25);
  border-radius: var(--radius);
  padding: 1.5rem 1.7rem;
  margin: 1.6rem 0;
  box-shadow: var(--shadow-card);
}
.answer-box .label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 0.6rem;
}
.answer-box .label svg { width: 15px; height: 15px; }
.answer-box p { color: var(--ink); }

/* ---------- Малка лента доверие ---------- */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.2rem, 4vw, 3rem);
  padding: 1.4rem 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.trust-item svg { width: 20px; height: 20px; color: var(--green); flex: none; }

/* ---------- Футър ---------- */
.site-footer {
  background: var(--green-deep);
  color: rgba(247, 242, 233, 0.8);
  margin-top: clamp(3rem, 7vw, 5rem);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2.5rem;
}
.site-footer h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--cream);
  margin-bottom: 1rem;
}
.site-footer a { color: rgba(247, 242, 233, 0.8); transition: color 0.25s; }
.site-footer a:hover { color: var(--cream); }
.footer-links { display: grid; gap: 0.5rem; }
.footer-contact { display: grid; gap: 0.7rem; }
.footer-contact li { display: flex; gap: 0.6rem; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; flex: none; margin-top: 0.25rem; opacity: 0.7; }
.footer-brand .brand-mark { width: 48px; height: 48px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.95rem; max-width: 300px; }
.footer-bottom {
  border-top: 1px solid rgba(247, 242, 233, 0.15);
  padding: 1.4rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(247, 242, 233, 0.6);
}

/* ---------- Плаващи бутони за връзка ---------- */
.float-contact {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  z-index: 90;
}
.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 10px 26px -8px rgba(44, 56, 48, 0.45);
  transition: transform 0.3s var(--ease-out);
}
.float-btn:hover { transform: translateY(-3px) scale(1.06); }
.float-btn svg { width: 26px; height: 26px; }
.float-btn.viber { background: #7360F2; }
.float-btn.whatsapp { background: #25D366; }

/* ---------- Анимации при скрол ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Отзивчивост ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .breath-wrap { min-height: 320px; order: -1; }
  .hero-portrait { order: -1; }
  .hero-portrait .portrait { width: min(300px, 78vw); }
  .hero-badge { bottom: 1rem; padding: 0.5rem 1.1rem; }
  .hero-badge strong { font-size: 1.05rem; }
  .breath-ring:nth-child(3) { width: 320px; height: 320px; }
  .breath-ring:nth-child(2) { width: 260px; height: 260px; }
  .breath-ring:nth-child(1) { width: 200px; height: 200px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .grid-3 { grid-template-columns: 1fr; }
  .contact-tiles { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .step { grid-template-columns: 48px 1fr; gap: 1rem; }
  .step-num { width: 48px; height: 48px; font-size: 1.2rem; }
  .step::before { left: 23px; top: 52px; }
  .brand-title { display: none; }
}

/* ---------- Блог ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .post-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .post-grid { grid-template-columns: 1fr; } }

.post-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(44, 56, 48, 0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  color: var(--ink);
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.post-card .post-cover {
  aspect-ratio: 16 / 9;
  background: linear-gradient(150deg, var(--green-mist), var(--sand));
  overflow: hidden;
}
.post-card .post-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.post-card:hover .post-cover img { transform: scale(1.04); }
.post-card .post-cover.placeholder {
  display: grid;
  place-items: center;
  color: var(--green-deep);
  opacity: 0.75;
}
.post-card .post-cover.placeholder svg { width: 44px; height: 44px; }
.post-card .post-body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.post-card time {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra-deep);
  margin-bottom: 0.5rem;
}
.post-card h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.post-card p { color: var(--ink-soft); font-size: 0.96rem; flex: 1; }
.post-card .card-link { margin-top: 1.1rem; }

/* Статия */
.post-hero { padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(1.6rem, 3vw, 2.4rem); }
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-top: 1.2rem;
}
.post-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--terra); }
.post-cover-full {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  max-height: 460px;
}
.post-cover-full img { width: 100%; height: 100%; object-fit: cover; }

.post-content { max-width: 720px; margin: 0 auto; }
.post-content h2 { margin: 2.2rem 0 0.8rem; }
.post-content h3 { margin: 1.7rem 0 0.6rem; }
.post-content p { color: var(--ink-soft); margin-bottom: 1em; }
.post-content strong { color: var(--ink); }
.post-content a { text-decoration: underline; text-underline-offset: 3px; }
.post-content ul, .post-content ol { margin: 0.6rem 0 1.2rem 1.3rem; color: var(--ink-soft); }
.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }
.post-content li { margin-bottom: 0.4rem; }
.post-content img { border-radius: var(--radius); margin: 1.4rem 0; }
.post-content blockquote {
  margin: 1.8rem 0;
  padding: 1.3rem 1.6rem;
  border-left: 3px solid var(--terra);
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink);
}

/* ---------- Мобилна полировка ---------- */
@media (max-width: 480px) {
  body { font-size: 1rem; }
  .hero { padding-top: 2.2rem; }
  .breath-wrap { min-height: 250px; }
  .breath-ring:nth-child(3) { width: 250px; height: 250px; }
  .breath-ring:nth-child(2) { width: 205px; height: 205px; }
  .breath-ring:nth-child(1) { width: 160px; height: 160px; }
  .breath-core { width: 130px; height: 130px; font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .btn-lg { padding: 1rem 1.6rem; }
  .float-contact { right: 0.9rem; bottom: 0.9rem; gap: 0.55rem; }
  .float-btn { width: 48px; height: 48px; }
  .float-btn svg { width: 23px; height: 23px; }
  .brand-logo { height: 38px; }
  .card, .method-card { padding: 1.5rem 1.3rem; }
  .cta-band { padding: 2.2rem 1.4rem; }
  .cta-band .hero-actions { align-items: stretch; }
  .map-embed iframe { height: 300px; }
  .booking-frame iframe { height: 620px; }
  .contact-tile { padding: 1.15rem; }
  .faq-item summary { padding: 1rem 1.1rem; font-size: 1rem; }
  .faq-item .faq-body { padding: 0 1.1rem 1.1rem; }
  .answer-box { padding: 1.2rem 1.25rem; }
  .prose blockquote, .post-content blockquote { font-size: 1.1rem; padding: 1.1rem 1.3rem; }
}

/* По-големи зони за докосване на мобилни устройства */
@media (pointer: coarse) {
  .main-nav a.nav-link, .dropdown a { min-height: 44px; display: flex; align-items: center; }
  .card-link { min-height: 44px; align-items: center; }
}

/* Кутия за автора */
.author-box {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(44, 56, 48, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.7rem;
  margin-top: 3rem;
  box-shadow: var(--shadow-card);
}
.author-box .avatar {
  flex: none;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(150deg, var(--green-mist), var(--sand));
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--green-deep);
}
.author-box .avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-box strong { display: block; font-size: 1.08rem; }
.author-box span { font-size: 0.92rem; color: var(--ink-soft); }
@media (max-width: 620px) { .author-box { flex-direction: column; text-align: center; } }
