:root {
  --sage: #8fa876;
  --sage-dark: #6f8a58;
  --beige: #e8dcc8;
  --beige-light: #f4ede0;
  --ink: #2e2c22;
  --cream: #faf6ee;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Manrope', 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  background: rgba(250, 246, 238, 0.55);
  backdrop-filter: blur(10px);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.1rem;
}

.nav__logo img { width: 34px; height: 34px; object-fit: contain; }

.nav__links {
  display: flex;
  gap: 28px;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav__links a { opacity: 0.85; transition: opacity 0.2s; }
.nav__links a:hover { opacity: 1; }

.nav__phone {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--sage-dark);
  white-space: nowrap;
}

.nav__burger {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--ink);
}

/* ---------- SCREENS ---------- */
.screen {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
}

.fog-overlay {
  position: absolute;
  inset: 0;
}

.fog-overlay--dense   { background: rgba(250, 246, 235, 0.38); backdrop-filter: blur(1.5px); }
.fog-overlay--medium  { background: rgba(250, 246, 235, 0.55); }
.fog-overlay--light   { background: rgba(250, 246, 235, 0.72); }
.fog-overlay--clear   { background: rgba(250, 246, 235, 0.85); }

.screen__content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
}

/* ---------- HERO ---------- */
.screen--hero .screen__content { text-align: center; }

.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  line-height: 1.35;
  color: rgba(60, 58, 45, 0.4);
  letter-spacing: 0.01em;
  margin-bottom: 40px;
  text-shadow: 0 1px 12px rgba(255,255,255,0.4);
}

.hero__subtitle {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 48px;
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.8rem;
  color: var(--sage-dark);
  animation: bob 2s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 15px 38px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn--primary {
  background: var(--sage);
  color: #fff;
}

.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(111,138,88,0.35); }

.btn--outline {
  background: transparent;
  border: 1.5px solid var(--sage-dark);
  color: var(--sage-dark);
}

.btn--outline:hover { background: var(--sage-dark); color: #fff; }

/* ---------- ABOUT ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.about__portrait { order: 2; }
.about__text { order: 1; }

.about__portrait img {
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(46, 44, 34, 0.18);
}

.about__text h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 24px;
}

.about__text p {
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 18px;
  color: rgba(46,44,34,0.88);
}

/* ---------- SERVICES ---------- */
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  text-align: center;
  margin-bottom: 48px;
}

.section-lead {
  text-align: center;
  opacity: 0.75;
  margin-bottom: 48px;
}

.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.package-card {
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(111,138,88,0.25);
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
}

.package-card--featured {
  background: var(--sage);
  color: #fff;
  transform: scale(1.04);
  box-shadow: 0 20px 44px rgba(111,138,88,0.3);
}

.package-card--featured .btn--primary { background: #fff; color: var(--sage-dark); }

.package-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
}

.package-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.package-card__desc { font-size: 0.92rem; opacity: 0.85; margin-bottom: 18px; min-height: 42px; }
.package-card__price { font-size: 1.6rem; font-weight: 700; margin-bottom: 22px; }

.services-extra {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.services-extra h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.services-extra__note {
  font-size: 0.88rem;
  opacity: 0.7;
  margin: 12px 0 8px;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(46,44,34,0.2);
  font-size: 0.96rem;
}

.price-list li span:last-child { font-weight: 700; color: var(--sage-dark); white-space: nowrap; margin-left: 12px; }

.price-list li.price-list__item {
  display: block;
  padding: 12px 0;
}

.price-list__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.96rem;
}

.price-list__row span:last-child { font-weight: 700; color: var(--sage-dark); white-space: nowrap; margin-left: 12px; }

.price-list__cta {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--sage-dark);
}

.price-list__cta:hover { text-decoration: underline; }

.price-list__cta--primary {
  color: #fff;
  background: var(--sage);
  padding: 6px 16px;
  border-radius: 20px;
}

.price-list__cta--primary:hover { text-decoration: none; opacity: 0.9; }

.price-list__details {
  margin-top: 10px;
  border-top: 1px dashed rgba(46,44,34,0.2);
  padding-top: 10px;
}
.price-list__details summary {
  cursor: pointer;
  list-style: none;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--sage-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.price-list__details summary::-webkit-details-marker { display: none; }
.price-list__details summary::after {
  content: '+';
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.2s;
}
.price-list__details[open] summary::after { transform: rotate(45deg); }
.price-list__details-body { margin-top: 10px; }
.price-list__details-body p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(46,44,34,0.85);
  margin-bottom: 10px;
}
.price-list__details-body ol {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.price-list__details-body ol li {
  display: list-item;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(46,44,34,0.85);
  border-bottom: none;
  padding: 0;
}

/* ---------- CONTACT ---------- */
.contact__grid { text-align: center; }

.contact__text h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin-bottom: 20px;
}

.contact__text p { font-size: 1.05rem; margin-bottom: 26px; opacity: 0.85; }

.contact__phone, .contact__mail {
  display: block;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--sage-dark);
  margin-bottom: 8px;
}

.contact__address { margin-top: 24px; font-size: 0.95rem; opacity: 0.75; line-height: 1.6; }

.contact__map {
  width: 100%;
  max-width: 560px;
  height: 320px;
  margin: 24px auto 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(46,44,34,0.16);
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 600px) {
  .contact__map { height: 260px; }
  .contact__consent { justify-content: center; text-align: left; }
}

.contact__socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.social-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 16px rgba(46,44,34,0.12);
  transition: transform 0.2s;
}

.social-icon:hover { transform: translateY(-3px); }

.social-icon svg { width: 100%; height: 100%; display: block; }

.social-icon--badge svg { width: 56%; height: 56%; }

.contact__reviews {
  max-width: 560px;
  margin: 56px auto 0;
}

.contact__reviews-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.yandex-reviews {
  position: relative;
  width: 100%;
  height: 640px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 20px 44px rgba(46,44,34,0.16);
  background: #fff;
}

.yandex-reviews iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.yandex-reviews__attribution {
  box-sizing: border-box;
  text-decoration: none;
  color: #b3b3b3;
  font-size: 10px;
  font-family: 'YS Text', sans-serif;
  padding: 0 16px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  left: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .yandex-reviews { height: 520px; }
}

.contact__form {
  max-width: 560px;
  margin: 48px auto 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1.5px solid rgba(111,138,88,0.3);
  background: rgba(255,255,255,0.7);
  font-family: var(--sans);
  font-size: 0.96rem;
  color: var(--ink);
  resize: vertical;
}

.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--sage-dark);
  background: #fff;
}

.contact__form .btn { align-self: center; border: none; cursor: pointer; }

.contact__form-status {
  text-align: center;
  font-size: 0.92rem;
  min-height: 20px;
  color: var(--sage-dark);
  font-weight: 600;
}

@media (max-width: 600px) {
  .contact__form-row { grid-template-columns: 1fr; }
}

/* ---------- BLOG ---------- */
.blog-hero {
  position: relative;
  min-height: 42vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 60px;
  text-align: center;
}

.blog-hero__title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.blog-hero__subtitle { font-size: 1.05rem; opacity: 0.8; }

.blog-hero__note {
  margin-top: 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--sage-dark);
}

.blog-list__soon {
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sage-dark);
  padding-top: 8px;
}

.blog-list {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(111,138,88,0.2);
}

.blog-author__photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 25%;
  box-shadow: 0 6px 16px rgba(46,44,34,0.15);
}

.blog-author__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.05rem;
}

.blog-author__role {
  font-size: 0.88rem;
  opacity: 0.7;
}

.blog-post {
  padding-bottom: 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(111,138,88,0.2);
}

.blog-post:last-child { border-bottom: none; }

.blog-post__image {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 24px;
  cursor: zoom-in;
  box-shadow: 0 20px 44px rgba(46,44,34,0.16);
  transition: opacity 0.2s;
}

.blog-post__image:hover { opacity: 0.92; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 12, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 32px;
  cursor: zoom-out;
}

.lightbox--open { display: flex; }

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.views-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 10px;
  vertical-align: middle;
}

.views-badge__eye {
  width: 14px;
  height: 14px;
  color: var(--sage-dark);
}

.blog-post__views {
  height: 18px;
  border-radius: 3px;
}

.blog-post__meta {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 10px;
}

.blog-post h2 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  margin-bottom: 18px;
}

.blog-post p:not(.blog-post__meta) {
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(46,44,34,0.88);
  margin-bottom: 14px;
}

.blog-post__comments {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(111,138,88,0.2);
}

.blog-post__comments-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin-bottom: 16px;
  color: var(--ink);
}

.comment-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }

.comment-list__empty { font-size: 0.9rem; opacity: 0.6; }

.comment-item {
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(111,138,88,0.2);
  border-radius: 12px;
  padding: 14px 18px;
}

.comment-item--author {
  background: rgba(111,138,88,0.1);
  border: 1.5px solid rgba(111,138,88,0.45);
}

.comment-item__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.comment-item__who { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }

.comment-item__badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #fff;
  background: var(--sage-dark);
  padding: 3px 9px;
  border-radius: 20px;
  white-space: nowrap;
}

.comment-item__date { font-size: 0.78rem; opacity: 0.55; white-space: nowrap; }

.comment-item p { font-size: 0.94rem; line-height: 1.6; color: rgba(46,44,34,0.85); }

.comment-form { display: flex; flex-direction: column; gap: 10px; max-width: 480px; }

.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1.5px solid rgba(111,138,88,0.3);
  background: rgba(255,255,255,0.7);
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--ink);
  resize: vertical;
}

.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--sage-dark);
  background: #fff;
}

.comment-form .btn { align-self: flex-start; cursor: pointer; padding: 10px 26px; font-size: 0.9rem; }

.comment-form__status { font-size: 0.85rem; color: #b5502f; font-weight: 600; min-height: 18px; }

/* ---------- SESSION PAGE ---------- */
.session {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 24px 96px;
}

.session__intro {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  line-height: 1.7;
  text-align: center;
  color: var(--ink);
  margin-bottom: 64px;
}

.session__heading {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  text-align: center;
  margin-bottom: 12px;
}

.session__faq { margin-bottom: 40px; }

.session__faq-item {
  border: 1px solid rgba(111,138,88,0.25);
  border-radius: 16px;
  padding: 22px 26px;
  margin-bottom: 16px;
  background: rgba(255,255,255,0.5);
}

.session__faq-item summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.15rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

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

.session__faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--sage-dark);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.session__faq-item[open] summary::after { transform: rotate(45deg); }

.session__faq-content { margin-top: 20px; }

.session__faq-content p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(46,44,34,0.85);
  margin-bottom: 12px;
}

.session__faq-content p:last-child { margin-bottom: 0; }
.session__faq-content .session__steps { margin-bottom: 0; }

.session__note {
  background: rgba(111,138,88,0.08);
  border-left: 3px solid var(--sage);
  border-radius: 4px 16px 16px 4px;
  padding: 24px 28px;
  margin-bottom: 40px;
}

.session__note p { font-size: 1rem; line-height: 1.7; margin-bottom: 8px; }
.session__note p:last-child { margin-bottom: 0; }

.session__links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.session__lead {
  text-align: center;
  opacity: 0.75;
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.session__steps {
  list-style: none;
  counter-reset: step;
  margin-bottom: 72px;
}

.session__steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px dashed rgba(111,138,88,0.25);
}

.session__steps li:first-child { padding-top: 0; }
.session__steps li:last-child { border-bottom: none; }

.session__steps li::before {
  content: counter(step);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--sage-dark);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(111,138,88,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.session__steps h3 {
  grid-column: 2;
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.session__steps p {
  grid-column: 2;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(46,44,34,0.85);
}

.session__quote {
  position: relative;
  margin: 0 0 72px;
  padding: 40px 48px;
  background: rgba(111,138,88,0.08);
  border-left: 3px solid var(--sage);
  border-radius: 4px 16px 16px 4px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.6;
  color: var(--ink);
}

.session__quote span {
  display: block;
  margin-top: 16px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--sage-dark);
}

.session__included {
  list-style: none;
  max-width: 480px;
  margin: 0 auto 56px;
}

.session__included li {
  position: relative;
  padding: 12px 0 12px 34px;
  border-bottom: 1px dashed rgba(111,138,88,0.2);
  font-size: 1rem;
}

.session__included li:last-child { border-bottom: none; }

.session__included li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--sage-dark);
  font-weight: 700;
}

.session__closing {
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 40px;
}

.session__cta { text-align: center; }

@media (max-width: 600px) {
  .session__steps li { grid-template-columns: 44px 1fr; gap: 14px; }
  .session__steps li::before { width: 44px; height: 44px; font-size: 1.1rem; }
  .session__quote { padding: 28px 24px; }
}

/* ---------- LEGAL PAGES ---------- */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}

.legal__title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  margin-bottom: 8px;
}

.legal__updated {
  font-size: 0.85rem;
  opacity: 0.65;
  margin-bottom: 48px;
}

.legal h2 {
  font-family: var(--serif);
  font-size: 1.3rem;
  margin: 40px 0 14px;
}

.legal h2:first-of-type { margin-top: 0; }

.legal p, .legal li {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(46,44,34,0.88);
}

.legal p { margin-bottom: 14px; }

.legal ul, .legal ol {
  margin: 0 0 14px;
  padding-left: 24px;
}

.legal li { margin-bottom: 8px; }

.legal__placeholder {
  background: rgba(230,120,60,0.16);
  border: 1px dashed rgba(230,120,60,0.6);
  border-radius: 4px;
  padding: 0 6px;
  font-weight: 600;
  white-space: nowrap;
}

.legal__note {
  margin-top: 56px;
  padding: 20px 24px;
  background: rgba(111,138,88,0.08);
  border-left: 3px solid var(--sage);
  border-radius: 4px 16px 16px 4px;
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer__crisis {
  max-width: 520px;
  margin: 14px auto 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

.footer__crisis a {
  color: rgba(255,255,255,0.75);
  text-decoration: underline;
}

.footer__legal {
  margin-top: 12px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer__legal a {
  font-size: 0.82rem;
  opacity: 0.7;
  text-decoration: underline;
}

.footer__legal a:hover { opacity: 1; }

.contact__consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 6px 0 18px;
  padding: 14px 16px;
  background: rgba(111,138,88,0.08);
  border: 1.5px solid rgba(111,138,88,0.3);
  border-radius: 12px;
  cursor: pointer;
}

.contact__consent input {
  width: 22px;
  height: 22px;
  min-width: 22px;
  margin-top: 1px;
  flex-shrink: 0;
  accent-color: var(--sage-dark);
  cursor: pointer;
}

/* ---------- FOOTER ---------- */
.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px;
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

.footer img { width: 26px; height: 26px; filter: brightness(0) invert(1); opacity: 0.8; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 860px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  }
  .nav__links a { padding: 16px 24px; border-bottom: 1px solid rgba(0,0,0,0.06); }
  .nav__links--open { display: flex; }
  .nav__burger { display: block; }
  .nav__phone { display: none; }

  .about__grid { grid-template-columns: 1fr; gap: 32px; }
  .about__portrait { order: 1; }
  .about__text { order: 2; }
  .about__portrait img { max-width: 280px; margin: 0 auto; }

  .packages { grid-template-columns: 1fr; }
  .package-card--featured { transform: none; }

  .services-extra { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- QUALIFICATIONS / DIPLOMAS ---------- */
.diplomas { max-width: 1000px; margin: 0 auto; padding: 72px 24px 96px; }

.diplomas__intro {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.1vw, 1.4rem);
  line-height: 1.7;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
  color: var(--ink);
}

.diplomas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.diploma-card {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(111,138,88,0.2);
  border-radius: 16px;
  padding: 20px;
}

.diploma-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 16px;
  cursor: zoom-in;
  box-shadow: 0 14px 30px rgba(46,44,34,0.14);
  transition: opacity 0.2s;
}

.diploma-card__image:hover { opacity: 0.92; }

.diploma-card__year {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 6px;
}

.diploma-card h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  margin-bottom: 8px;
  line-height: 1.4;
}

.diploma-card p:not(.diploma-card__year) {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(46,44,34,0.8);
}

.diplomas__subheading {
  font-family: var(--serif);
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 28px;
}

.diplomas__list {
  max-width: 720px;
  margin: 0 auto 56px;
  list-style: none;
}

.diplomas__list li {
  padding: 14px 0;
  border-bottom: 1px dashed rgba(111,138,88,0.25);
  font-size: 0.96rem;
  line-height: 1.6;
  color: rgba(46,44,34,0.85);
}

.diplomas__list li:last-child { border-bottom: none; }

.diplomas__list-year {
  font-weight: 700;
  color: var(--sage-dark);
  margin-right: 8px;
}

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

@media (max-width: 560px) {
  .diplomas__grid { grid-template-columns: 1fr; }
}

/* ---------- PSYTEST (EYSENCK) ---------- */
.psytest { max-width: 720px; margin: 0 auto; padding: 72px 24px 120px; }

#introScreen { text-align: center; }

.psytest__title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  margin-bottom: 16px;
}

.psytest__intro {
  opacity: 0.8;
  max-width: 560px;
  margin: 0 auto 16px;
  line-height: 1.7;
}

#startBtn { margin-top: 24px; cursor: pointer; border: none; }

.psytest__progress-wrap {
  position: sticky;
  top: 0;
  background: var(--cream);
  padding: 16px 0 12px;
  z-index: 5;
  margin-bottom: 16px;
}

.psytest__progress-bar {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(111,138,88,0.15);
  overflow: hidden;
}

.psytest__progress-fill {
  height: 100%;
  background: var(--sage);
  width: 0%;
  transition: width 0.2s;
}

.psytest__progress-text {
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.65;
  margin-top: 6px;
}

.psytest__q {
  padding: 20px 0;
  border-bottom: 1px solid rgba(111,138,88,0.15);
}

.psytest__qtext { font-size: 1rem; line-height: 1.6; margin-bottom: 14px; }
.psytest__qnum { color: var(--sage-dark); font-weight: 700; margin-right: 4px; }

.psytest__options { display: flex; gap: 12px; flex-wrap: wrap; }

.psytest__option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1.5px solid rgba(111,138,88,0.3);
  border-radius: 30px;
  cursor: pointer;
  font-size: 0.92rem;
  transition: background 0.15s, border-color 0.15s;
}

.psytest__option input { width: 18px; height: 18px; accent-color: var(--sage-dark); cursor: pointer; }
.psytest__option:has(input:checked) { background: rgba(111,138,88,0.14); border-color: var(--sage-dark); }

.psytest__submit { display: block; margin: 40px auto 0; cursor: pointer; border: none; }

.psytest__result { max-width: 640px; margin: 0 auto; text-align: center; }

.psytest__result-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin-bottom: 20px;
}

.psytest__result-text { font-size: 1.05rem; line-height: 1.75; opacity: 0.9; margin-bottom: 16px; }

.psytest__note {
  font-size: 0.9rem;
  opacity: 0.75;
  background: rgba(111,138,88,0.08);
  border-radius: 10px;
  padding: 14px 18px;
  margin: 16px 0;
  text-align: left;
}

.psytest__scores { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 32px 0; }

.psytest__score { border: 1px solid rgba(111,138,88,0.25); border-radius: 14px; padding: 20px; }
.psytest__score-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.03em; opacity: 0.6; margin-bottom: 8px; }
.psytest__score-value { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; color: var(--sage-dark); margin-bottom: 6px; }
.psytest__score-desc { font-size: 0.88rem; opacity: 0.75; }

.psytest__result-cta-text { font-size: 0.95rem; opacity: 0.8; margin: 24px 0 20px; }

@media (max-width: 600px) {
  .psytest__options { flex-direction: column; }
  .psytest__scores { grid-template-columns: 1fr; }
}

/* ---------- PDT RESULT SCALES ---------- */
.pdt__summary {
  background: rgba(111,138,88,0.1);
  border-left: 3px solid var(--sage);
  border-radius: 4px 16px 16px 4px;
  padding: 24px 28px;
  margin: 24px 0 40px;
}

.pdt__summary-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 700;
  color: var(--sage-dark);
  margin-bottom: 8px;
}

.pdt__summary-text {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.pdt__summary-note { font-size: 0.8rem; opacity: 0.6; line-height: 1.5; }

.pdt__group-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  margin: 40px 0 8px;
  text-align: center;
}

.pdt__group-note {
  font-size: 0.85rem;
  opacity: 0.65;
  text-align: center;
  max-width: 520px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.pdt__scales { display: flex; flex-direction: column; gap: 14px; text-align: left; }

.pdt__scale {
  border: 1px solid rgba(111,138,88,0.25);
  border-radius: 14px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.55);
}

.pdt__scale-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.pdt__scale-name { font-family: var(--serif); font-size: 1.02rem; }

.pdt__scale-sten { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; color: var(--sage-dark); }
.pdt__scale-sten-max { font-size: 0.85rem; font-weight: 400; opacity: 0.6; }

.pdt__scale-bar {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(111,138,88,0.15);
  overflow: hidden;
  margin-bottom: 12px;
}

.pdt__scale-bar-fill { height: 100%; background: var(--sage); }

.pdt__scale-text { font-size: 0.92rem; line-height: 1.65; color: rgba(46,44,34,0.85); }

/* ---------- ORDER (TEST PAYMENT) ---------- */
.order { max-width: 520px; margin: 0 auto; padding: 72px 24px 120px; }

.order__title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin-bottom: 8px;
  text-align: center;
}

.order__price {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--sage-dark);
  margin-bottom: 32px;
}

.order__requisites {
  background: rgba(111,138,88,0.08);
  border: 1px solid rgba(111,138,88,0.25);
  border-radius: 14px;
  padding: 24px 26px;
  margin-bottom: 24px;
}

.order__requisites h2 { font-family: var(--serif); font-size: 1.1rem; margin-bottom: 12px; }
.order__requisites p { font-size: 0.94rem; line-height: 1.7; }
.order__requisites-note { margin-top: 12px; font-size: 0.85rem; opacity: 0.75; }
.order__requisites a { color: inherit; text-decoration: underline; }
.order__copy {
  font-family: inherit;
  font-size: 0.76rem;
  line-height: 1;
  padding: 3px 10px;
  margin-left: 4px;
  border: 1px solid rgba(111,138,88,0.45);
  border-radius: 999px;
  background: rgba(111,138,88,0.12);
  color: inherit;
  cursor: pointer;
  transition: background 0.15s ease;
}
.order__copy:hover { background: rgba(111,138,88,0.24); }
.order__copy--done { background: rgba(111,138,88,0.4); }

.order__note { font-size: 0.9rem; line-height: 1.6; opacity: 0.8; margin-bottom: 28px; text-align: center; }

.order__done { text-align: center; }
.order__done p { margin: 16px 0 28px; line-height: 1.7; opacity: 0.85; }

/* ---------- AUTH (LOGIN / REGISTER) ---------- */
.auth {
  max-width: 420px;
  margin: 0 auto;
  padding: 88px 24px 120px;
}

.auth__title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  text-align: center;
  margin-bottom: 8px;
}

.auth__subtitle {
  text-align: center;
  opacity: 0.7;
  font-size: 0.92rem;
  margin-bottom: 36px;
}

.auth__tabs {
  display: flex;
  gap: 4px;
  background: rgba(111,138,88,0.1);
  border-radius: 14px;
  padding: 4px;
  margin-bottom: 28px;
}

.auth__tab {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.auth__tab--active {
  background: #fff;
  opacity: 1;
  box-shadow: 0 4px 14px rgba(46,44,34,0.1);
}

.auth__form { display: flex; flex-direction: column; gap: 14px; }
.auth__form--hidden { display: none; }

.auth__form input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1.5px solid rgba(111,138,88,0.3);
  background: rgba(255,255,255,0.7);
  font-family: var(--sans);
  font-size: 0.96rem;
  color: var(--ink);
}

.auth__form input:focus {
  outline: none;
  border-color: var(--sage-dark);
  background: #fff;
}

.auth__form .btn { border: none; cursor: pointer; margin-top: 6px; }

.auth__status {
  text-align: center;
  font-size: 0.88rem;
  min-height: 20px;
  color: #b5502f;
  font-weight: 600;
}

.auth__foot {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.65;
  margin-top: 28px;
}

/* ---------- DASHBOARD (LK) ---------- */
.dashboard {
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 24px 120px;
}

.dashboard__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.dashboard__header h1 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin-bottom: 6px;
}

.dashboard__header p { opacity: 0.7; font-size: 0.92rem; }

.dashboard__logout {
  border: 1.5px solid var(--sage-dark);
  color: var(--sage-dark);
  background: transparent;
  border-radius: 30px;
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.dashboard__logout:hover { background: var(--sage-dark); color: #fff; }

.purchase-list { display: flex; flex-direction: column; gap: 16px; }

.purchase-card {
  border: 1px solid rgba(111,138,88,0.25);
  border-radius: 16px;
  padding: 26px 28px;
  background: rgba(255,255,255,0.6);
}

.purchase-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.purchase-card__content {
  font-size: 0.96rem;
  line-height: 1.7;
  color: rgba(46,44,34,0.85);
  white-space: pre-wrap;
}

.purchase-card__date { font-size: 0.78rem; opacity: 0.55; margin-top: 14px; }

.dashboard__empty {
  text-align: center;
  padding: 56px 24px;
  opacity: 0.7;
  border: 1px dashed rgba(111,138,88,0.3);
  border-radius: 16px;
}

/* ---------- ADMIN ---------- */
.admin {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 24px 120px;
}

.admin__grant {
  display: grid;
  gap: 12px;
  background: rgba(111,138,88,0.08);
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 40px;
}

.admin__grant input,
.admin__grant textarea {
  padding: 12px 16px;
  border-radius: 10px;
  border: 1.5px solid rgba(111,138,88,0.3);
  font-family: var(--sans);
  font-size: 0.92rem;
  width: 100%;
}

.admin__grant .btn { border: none; cursor: pointer; justify-self: start; }

.admin table { width: 100%; border-collapse: collapse; font-size: 0.88rem; margin-bottom: 32px; }
.admin th, .admin td { text-align: left; padding: 10px 8px; border-bottom: 1px solid rgba(111,138,88,0.15); }
.admin th { opacity: 0.6; font-weight: 600; text-transform: uppercase; font-size: 0.72rem; letter-spacing: 0.03em; }
.admin__del { color: #b5502f; cursor: pointer; background: none; border: none; font-size: 0.85rem; font-weight: 600; }

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin-bottom: 40px;
}

.stat-card {
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(111,138,88,0.25);
  border-radius: 16px;
  padding: 18px 20px;
}

.stat-card__value {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--sage-dark);
  line-height: 1.1;
}

.stat-card__today {
  font-size: 0.78rem;
  opacity: 0.6;
  margin-top: 2px;
}

.stat-card__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  opacity: 0.65;
  margin-top: 8px;
}

.admin table td:first-child, .admin table th:first-child { width: 36px; opacity: 0.5; }
