/*
Theme Name: Stella Dziubak Child
Template: twentytwentyfour
Version: 1.0
Description: Дочерняя тема для сайта психолога Стеллы Дзюбак
*/

/* =============================================
   СКРЫВАЕМ СТАНДАРТНЫЙ ХЕДЕР WORDPRESS
   ============================================= */
.wp-block-template-part,
header.wp-block-template-part,
.site-header.wp-block-template-part,
#masthead,
.wp-site-blocks > header,
body > .wp-site-blocks > header,
.wp-block-group.is-layout-constrained > header {
  display: none !important;
}

.wp-site-blocks {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* =============================================
   CSS ПЕРЕМЕННЫЕ
   ============================================= */
:root {
  --color-bg: #FAFAF8;
  --color-white: #FFFFFF;
  --color-text: #2C2C2C;
  --color-text-light: #6B6B6B;
  --color-accent: #C4694F;
  --color-accent-light: #E8957E;
  --color-accent-bg: #FDF0EC;
  --color-border: #E8E4DF;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
  --max-width: 1200px;
  --section-padding: 80px 24px;
}

/* =============================================
   БАЗОВЫЕ СТИЛИ
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* Подключаем шрифты Google */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

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

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

/* =============================================
   НАВИГАЦИЯ
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.site-header .header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .site-title a {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--color-text);
}

.site-header nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
  align-items: center;
}

.site-header nav ul li a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
  transition: color 0.2s ease;
  position: relative;
}

.site-header nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

.site-header nav ul li a:hover {
  color: var(--color-accent);
}

.site-header nav ul li a:hover::after {
  width: 100%;
}

/* Кнопка записи в навигации */
.nav-cta a {
  background: var(--color-accent) !important;
  color: white !important;
  padding: 10px 24px !important;
  border-radius: 2px !important;
  font-size: 12px !important;
  letter-spacing: 0.1em !important;
  transition: background 0.2s ease !important;
}

.nav-cta a:hover {
  background: var(--color-accent-light) !important;
}

.nav-cta a::after {
  display: none !important;
}

/* =============================================
   HERO СЕКЦИЯ
   ============================================= */
.hero-section {
  min-height: unset;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
  overflow: hidden;
}

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px 80px 60px;
  background: var(--color-bg);
  position: relative;
}

.hero-content::before {
  content: '';
  position: absolute;
  top: 60px;
  right: 60px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  opacity: 0.5;
}

.hero-tag {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--color-accent);
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--color-accent);
}

.hero-quote {
  font-size: 17px;
  line-height: 1.75;
  color: var(--color-text-light);
  font-weight: 300;
  margin-bottom: 48px;
  max-width: 420px;
  border-left: 2px solid var(--color-accent);
  padding-left: 20px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--color-accent);
  color: white;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.btn-primary:hover {
  background: var(--color-text);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--color-text);
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.btn-secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--color-border);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-accent);
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* =============================================
   СЕКЦИЯ О СЕБЕ
   ============================================= */
.about-section {
  padding: var(--section-padding);
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--color-accent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 32px;
  color: var(--color-text);
}

.about-text h2 em {
  font-style: italic;
  color: var(--color-accent);
}

.about-text p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--color-text-light);
  font-weight: 300;
  margin-bottom: 20px;
}

.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}

.credential-icon {
  width: 32px;
  height: 32px;
  background: var(--color-accent-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent);
  font-size: 14px;
}

.credential-text {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.5;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  border-radius: 4px;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-image-wrap::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  z-index: -1;
}

/* =============================================
   СЕКЦИЯ ЗАПРОСЫ
   ============================================= */
.requests-section {
  padding: var(--section-padding);
  background: var(--color-accent-bg);
}

.requests-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.requests-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}

.requests-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--color-text);
}

.requests-header h2 em {
  font-style: italic;
  color: var(--color-accent);
}

.requests-header p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-light);
  font-weight: 300;
}

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

.request-card {
  background: var(--color-white);
  padding: 36px 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.request-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.4s ease;
}

.request-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  z-index: 1;
}

.request-card:hover::after {
  width: 100%;
}

.request-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 300;
  color: var(--color-border);
  line-height: 1;
  margin-bottom: 16px;
}

.request-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--color-text);
}

.request-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-text-light);
  font-weight: 300;
}

/* =============================================
   ПОЧЕМУ Я
   ============================================= */
.trust-section {
  padding: var(--section-padding);
  max-width: var(--max-width);
  margin: 0 auto;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.trust-item {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.trust-item:hover {
  border-color: var(--color-accent);
  background: var(--color-accent-bg);
}

.trust-number {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 300;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 12px;
}

.trust-item h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--color-text);
}

.trust-item p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-text-light);
  font-weight: 300;
}

/* =============================================
   СЕКЦИЯ СТОИМОСТЬ
   ============================================= */
.pricing-section {
  padding: var(--section-padding);
  background: var(--color-text);
}

.pricing-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.pricing-inner .section-label {
  color: var(--color-accent-light);
}

.pricing-inner .section-label::before {
  background: var(--color-accent-light);
}

.pricing-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  color: white;
  margin-bottom: 60px;
}

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

.pricing-card {
  background: rgba(255,255,255,0.05);
  padding: 48px 40px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card.featured {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.pricing-card:hover {
  background: rgba(255,255,255,0.1);
}

.pricing-card.featured:hover {
  background: var(--color-accent-light);
}

.pricing-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.pricing-card.featured .pricing-label {
  color: rgba(255,255,255,0.8);
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 300;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-currency {
  font-size: 20px;
  vertical-align: super;
}

.pricing-period {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 40px;
}

.pricing-features li {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '—';
  color: var(--color-accent-light);
  font-size: 12px;
}

.pricing-card.featured .pricing-features li::before {
  color: rgba(255,255,255,0.6);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 24px;
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

.pricing-card.featured .btn-outline-white {
  background: rgba(255,255,255,0.2);
  border-color: white;
}

/* =============================================
   БЛОГ / СТАТЬИ
   ============================================= */
.blog-section {
  padding: var(--section-padding);
  max-width: var(--max-width);
  margin: 0 auto;
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.blog-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  color: var(--color-text);
}

.blog-header h2 em {
  font-style: italic;
  color: var(--color-accent);
}

.blog-link {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.blog-link:hover {
  gap: 14px;
}

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

.blog-card {
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.blog-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-category {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.blog-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--color-text);
  flex: 1;
}

.blog-card-date {
  font-size: 12px;
  color: var(--color-text-light);
  margin-top: 16px;
}

/* =============================================
   CTA БЛОК
   ============================================= */
.cta-section {
  padding: var(--section-padding);
  background: var(--color-accent-bg);
  text-align: center;
}

.cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 20px;
}

.cta-inner h2 em {
  font-style: italic;
  color: var(--color-accent);
}

.cta-inner p {
  font-size: 16px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   ФУТЕР
   ============================================= */
.site-footer {
  background: var(--color-text);
  padding: 60px 40px 32px;
  color: rgba(255,255,255,0.5);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .brand-name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  color: white;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-nav h4 {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 20px;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav ul li {
  margin-bottom: 12px;
}

.footer-nav ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s ease;
}

.footer-nav ul li a:hover {
  color: var(--color-accent-light);
}

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

/* =============================================
   МОБИЛЬНАЯ АДАПТАЦИЯ
   ============================================= */
@media (max-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .requests-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px 20px;
  }

  /* Мобильная навигация */
  .site-header .header-inner {
    padding: 16px 20px;
  }

  .site-header nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
  }

  .mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--color-text);
    transition: all 0.3s ease;
  }

  /* Hero мобайл */
  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-image {
    height: 60vw;
    max-height: 400px;
  }

  .hero-content {
    padding: 48px 24px 60px;
  }

  .hero-content::before {
    display: none;
  }

  .hero-scroll {
    left: 24px;
    bottom: 24px;
  }

  .hero-buttons {
    max-width: 100%;
  }

  /* About мобайл */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-wrap {
    order: -1;
  }

  /* Requests мобайл */
  .requests-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  /* Trust мобайл */
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Blog мобайл */
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  /* CTA мобайл */
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* Footer мобайл */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

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

/* =============================================
   СКРЫВАЕМ СТАНДАРТНЫЙ ХЕДЕР WORDPRESS
   ============================================= */
header.wp-block-template-part,
.wp-block-template-part[class*="header"],
#masthead,
.wp-site-blocks > header,
.site-header.wp-block-template-part {
  display: none !important;
}
.wp-site-blocks {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* =============================================
   НАША ШАПКА — УМНАЯ, ПРЯЧЕТСЯ ПРИ СКРОЛЛЕ
   ============================================= */
.stella-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(250, 250, 248, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transform: translateY(0);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.stella-nav.hidden {
  transform: translateY(-100%);
}

.stella-nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.stella-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stella-nav-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.stella-nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.stella-nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}

.stella-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

.stella-nav-links a:hover {
  color: var(--color-accent);
}

.stella-nav-links a:hover::after {
  width: 100%;
}

.stella-nav-links .nav-cta-btn a {
  background: var(--color-accent);
  color: white !important;
  padding: 9px 22px;
  border-radius: 2px;
  letter-spacing: 0.08em;
}

.stella-nav-links .nav-cta-btn a::after {
  display: none;
}

.stella-nav-links .nav-cta-btn a:hover {
  background: #a8553d;
  color: white !important;
}

/* Отступ чтобы контент не прятался под шапку */
.hero-section {
  padding-top: 64px;
}

/* Мобильная шапка */
@media (max-width: 768px) {
  .stella-nav-inner {
    padding: 0 20px;
  }
  .stella-nav-links {
    gap: 20px;
  }
  .stella-nav-links li:not(:last-child):not(:nth-last-child(2)) {
    display: none;
  }
}

/* Скрываем стандартный футер WordPress */
.wp-block-template-part[class*="footer"],
footer.wp-block-template-part,
.wp-site-blocks > footer,
#colophon,
.site-footer.wp-block-template-part {
  display: none !important;
}
