/*
Theme Name: Eskvortsov Landing
Theme URI: https://eskvortsov.ru
Author: Eugene Skvortsov
Description: Яркий лендинг-прототип (герой, секции, блог-сетка) + отдельная лента блога. Версия 2.0.
Version: 2.0.2
Requires at least: 6.0
Tested up to: 6.8
Text Domain: eskvortsov-landing
*/

/* === Прототип главной (все стили в одном файле для совместимости с FTP) === */

:root {
  --zh-blue: #153a7a;
  --zh-blue-deep: #0c2450;
  --zh-blue-soft: #1e4a9a;
  --zh-yellow: #f5c542;
  --zh-yellow-hover: #ffd65c;
  --zh-cream: #faf7f2;
  --zh-cream-dark: #f0ebe3;
  --zh-club: #e0452e;
  --zh-club-deep: #b83220;
  --zh-text: #0f172a;
  --zh-muted: #475569;
  --zh-white: #ffffff;
  --zh-footer: #0f1115;
  --zh-radius: 1rem;
  --zh-radius-sm: 0.5rem;
  --zh-max: 72rem;
  --zh-font: "Manrope", system-ui, sans-serif;
}

.zh-body {
  margin: 0;
  font-family: var(--zh-font);
  color: var(--zh-text);
  background: var(--zh-cream);
  line-height: 1.55;
}

.zh-skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.zh-skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: var(--zh-yellow);
  color: var(--zh-blue-deep);
  z-index: 100000;
  border-radius: var(--zh-radius-sm);
}

.zh-wrap {
  max-width: var(--zh-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.zh-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(21, 58, 122, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.admin-bar .zh-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .zh-header {
    top: 46px;
  }
}

.zh-header__bar {
  max-width: var(--zh-max);
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.zh-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--zh-white);
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
}

.zh-logo__mark {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--zh-yellow), #f59e0b);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.zh-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.zh-nav .menu,
.zh-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  justify-content: center;
}

.zh-nav__link,
.zh-nav .menu-item > a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.4rem 0.15rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.zh-nav__link:hover,
.zh-nav .menu-item > a:hover {
  color: var(--zh-white);
}

.zh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.zh-btn:hover {
  transform: translateY(-1px);
}

.zh-btn--header {
  background: var(--zh-yellow);
  color: var(--zh-blue-deep);
  flex-shrink: 0;
}

.zh-btn--header:hover {
  background: var(--zh-yellow-hover);
}

.zh-btn--yellow {
  background: var(--zh-yellow);
  color: var(--zh-blue-deep);
}

.zh-btn--yellow:hover {
  background: var(--zh-yellow-hover);
}

.zh-btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--zh-white);
}

.zh-btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.zh-btn--lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

.zh-hero {
  position: relative;
  background: linear-gradient(165deg, var(--zh-blue-soft) 0%, var(--zh-blue-deep) 55%, #071428 100%);
  color: var(--zh-white);
  overflow: hidden;
}

.zh-hero--skyline::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 38%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200' preserveAspectRatio='none'%3E%3Cpath fill='%23081428' d='M0 200V120l80-20 60 40 100-30 90 50 70-35 110 45 85-25 95 60 75-40 130 35 105-55V200z'/%3E%3C/svg%3E")
    bottom center / 100% 100% no-repeat;
  opacity: 0.55;
  pointer-events: none;
}

.zh-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--zh-max);
  margin: 0 auto;
  padding: 3rem 1.25rem 4.5rem;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .zh-hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
    padding-top: 4rem;
    padding-bottom: 5rem;
  }
}

.zh-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.zh-hero__lead {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 36rem;
}

.zh-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.zh-hero__hint {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  font-style: italic;
}

.zh-hero__visual {
  display: flex;
  justify-content: center;
}

.zh-hero__character {
  max-width: 280px;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.35));
}

.zh-hero__svg {
  width: 100%;
  height: auto;
  display: block;
}

.zh-section {
  padding: 3.25rem 0;
}

.zh-section--cream {
  background: var(--zh-cream);
}

.zh-section--blue {
  background: linear-gradient(160deg, var(--zh-blue-soft), var(--zh-blue-deep));
  color: var(--zh-white);
}

.zh-section--club {
  background: linear-gradient(135deg, var(--zh-club) 0%, var(--zh-club-deep) 100%);
  color: var(--zh-white);
}

.zh-h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.zh-h2--center {
  text-align: center;
}

.zh-h2--light {
  color: var(--zh-white);
}

.zh-text {
  margin: 0;
  color: var(--zh-muted);
  max-width: 42rem;
}

.zh-about .zh-h2 {
  margin-bottom: 0.75rem;
}

.zh-what__grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 700px) {
  .zh-what__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.zh-card--what {
  background: var(--zh-white);
  border-radius: var(--zh-radius);
  padding: 1.5rem 1.25rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  border: 1px solid var(--zh-cream-dark);
}

.zh-card__emoji {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.zh-card__title {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 800;
}

.zh-card__text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--zh-muted);
}

#zh-blog {
  scroll-margin-top: 6rem;
}

.zh-blog__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.zh-link-all {
  font-weight: 700;
  color: var(--zh-blue);
  text-decoration: none;
}

.zh-link-all:hover {
  text-decoration: underline;
}

.zh-blog__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .zh-blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .zh-blog__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.zh-blog-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--zh-white);
  border-radius: var(--zh-radius);
  overflow: hidden;
  border: 1px solid var(--zh-cream-dark);
  height: 100%;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.zh-blog-card__link:hover {
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
  transform: translateY(-3px);
}

.zh-blog-card__media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #cbd5e1, #94a3b8);
  overflow: hidden;
}

.zh-blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.zh-blog-card__ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--zh-blue-soft), var(--zh-blue-deep));
  opacity: 0.85;
}

.zh-blog-card__title {
  margin: 0;
  padding: 1rem 1rem 0.25rem;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.zh-blog-card__date {
  margin: 0;
  padding: 0 1rem 1rem;
  font-size: 0.85rem;
  color: var(--zh-muted);
}

.zh-blog__pager {
  margin-top: 2rem;
}

.zh-blog__pager .navigation,
.zh-blog__pager .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.zh-blog__pager a {
  padding: 0.5rem 0.85rem;
  border-radius: var(--zh-radius-sm);
  background: var(--zh-white);
  border: 1px solid var(--zh-cream-dark);
  text-decoration: none;
  font-weight: 600;
  color: var(--zh-blue);
}

.zh-blog__pager a:hover {
  background: var(--zh-yellow);
  border-color: var(--zh-yellow);
}

.zh-empty {
  margin: 0;
  color: var(--zh-muted);
}

.zh-club__grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 800px) {
  .zh-club__grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.zh-club__lead {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  opacity: 0.95;
}

.zh-club__price {
  margin: 0 0 1.25rem;
  font-size: 2rem;
  font-weight: 800;
}

.zh-club__per {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.9;
}

.zh-club__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.zh-club__item {
  padding-left: 1.75rem;
  position: relative;
  font-weight: 600;
}

.zh-club__item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--zh-yellow);
  font-weight: 800;
}

.zh-stats__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0 2.5rem;
  text-align: center;
}

@media (min-width: 800px) {
  .zh-stats__row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.zh-stat__num {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--zh-blue);
}

.zh-stat__label {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  color: var(--zh-muted);
  font-weight: 600;
}

.zh-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.zh-socials__btn {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: var(--zh-radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--zh-white);
  background: var(--zh-blue);
  transition: transform 0.15s ease;
}

.zh-socials__btn:hover {
  transform: scale(1.06);
}

.zh-socials__btn:nth-child(2) {
  background: #2563eb;
}
.zh-socials__btn:nth-child(3) {
  background: #0077ff;
}
.zh-socials__btn:nth-child(4) {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743);
}
.zh-socials__btn:nth-child(5) {
  background: #000;
}

.zh-coop--skyline {
  position: relative;
  overflow: hidden;
}

.zh-coop--skyline::before {
  content: "";
  position: absolute;
  inset: 40% -20% -10% -20%;
  background: radial-gradient(ellipse at 70% 100%, rgba(255, 255, 255, 0.08), transparent 55%);
  pointer-events: none;
}

.zh-coop__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 800px) {
  .zh-coop__inner {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.zh-coop__text {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
}

.zh-coop__icons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.zh-coop__bubble {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.zh-more__channels {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 28rem;
  margin: 0 auto;
}

.zh-channel {
  display: block;
  text-align: center;
  padding: 1rem 1.25rem;
  border-radius: var(--zh-radius);
  font-weight: 800;
  text-decoration: none;
  color: var(--zh-white);
  background: #229ed9;
}

.zh-channel:hover {
  filter: brightness(1.08);
}

.zh-channel--alt {
  background: #6b5cff;
}

.zh-channel:nth-of-type(3) {
  background: #0077ff;
}

.zh-contact__inner {
  display: grid;
  gap: 2rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .zh-contact__inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.zh-contact__mail a {
  font-weight: 700;
  color: var(--zh-blue);
  text-decoration: none;
}

.zh-contact__mail a:hover {
  text-decoration: underline;
}

.zh-form {
  background: var(--zh-white);
  padding: 1.25rem;
  border-radius: var(--zh-radius);
  border: 1px solid var(--zh-cream-dark);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.zh-form__label {
  font-weight: 700;
  font-size: 0.85rem;
}

.zh-form__input {
  padding: 0.65rem 0.85rem;
  border-radius: var(--zh-radius-sm);
  border: 1px solid #cbd5e1;
  font: inherit;
}

.zh-form__btn {
  margin-top: 0.25rem;
  border: none;
  width: 100%;
}

.zh-footer {
  background: var(--zh-footer);
  color: rgba(255, 255, 255, 0.82);
  padding: 3rem 0 1.5rem;
  font-size: 0.9rem;
}

.zh-footer__inner {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .zh-footer__inner {
    grid-template-columns: 1.2fr repeat(3, 1fr);
  }
}

.zh-footer__logo {
  margin: 0 0 0.35rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--zh-white);
}

.zh-footer__tag {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.65);
}

.zh-footer__copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.zh-footer__h {
  margin: 0 0 0.65rem;
  font-weight: 800;
  color: var(--zh-yellow);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.zh-footer__links,
.zh-footer .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.zh-footer__a,
.zh-footer .menu-item > a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.zh-footer__a:hover,
.zh-footer .menu-item > a:hover {
  color: var(--zh-yellow);
}

.zh-footer__moscow {
  text-align: center;
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

.zh-archive {
  padding: 2.5rem 0 4rem;
}

.zh-archive__head {
  margin-bottom: 2rem;
}

.zh-single {
  padding: 2.5rem 0 4rem;
}

.zh-single__article {
  max-width: 42rem;
  margin: 0 auto;
}

.zh-single__head {
  margin-bottom: 1.5rem;
}

.zh-single__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.15;
}

.zh-prose {
  font-size: 1.05rem;
  color: var(--zh-text);
}

.zh-prose > *:first-child {
  margin-top: 0;
}

.zh-prose p,
.zh-prose ul,
.zh-prose ol {
  margin-top: 0;
  margin-bottom: 1rem;
}

.zh-prose img {
  max-width: 100%;
  height: auto;
  border-radius: var(--zh-radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  .zh-btn:hover,
  .zh-blog-card__link:hover,
  .zh-socials__btn:hover {
    transform: none;
  }
}
