/* =========================
   HERO SLIDER
========================= */
.hero.hero-slider {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
  padding: 0;
}

.hero-slider-track {
  display: flex;
  width: 100%;
  min-height: 100vh;
  transition: transform 0.8s ease;
  will-change: transform;
}

.hero-slide {
  position: relative;
  min-width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 110px 0 60px;
  background-image: var(--bg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(18, 49, 25, 0.82) 0%, rgba(18, 49, 25, 0.45) 45%, rgba(0, 0, 0, 0.35) 100%);
  z-index: 1;
}

.hero-slide .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  color: #fff;
}

.hero-logo {
  width: clamp(120px, 12vw, 180px);
  margin-bottom: 1.25rem;
  display: block;
	position: absolute;
  right: 0px;
	top:-70px
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: 0.04em;
}

.hero-slide h1,
.hero-slide h2 {
  font-size: clamp(2.2rem, 4vw, 4.6rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0,0,0,0.28);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.65;
  max-width: 820px;
  margin: 0 0 1rem;
  opacity: 0.98;
  text-shadow: 0 2px 14px rgba(0,0,0,0.28);
}

.hero-description {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 760px;
  margin: 0 0 2rem;
  opacity: 0.92;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 2.5rem;
}

/* если у вас уже есть .btn, можно этот блок сократить */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: #ffffff;
  color: #173b20;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.28);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}

/* Статистика */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.22);
}

.stat-item {
  min-width: 160px;
}

.stat-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.3rem, 3vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
  line-height: 1;
  text-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.5),
    -1px -1px 0 rgba(0, 0, 0, 0.3);
}

.stat-label {
  display: block;
  font-size: 0.95rem;
  line-height: 1.45;
  opacity: 0.95;
  text-shadow:
    1px 1px 2px rgba(0, 0, 0, 0.6),
    0 0 8px rgba(0, 0, 0, 0.4);
}

/* Стрелки */
.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  font-size: 28px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  transition: 0.25s ease;
}

.hero-slider-arrow:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-50%) scale(1.05);
}

.hero-slider-prev {
  left: 24px;
}

.hero-slider-next {
  right: 24px;
}

/* Точки */
.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}

.hero-slider-dots .slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255,255,255,0.35);
  transition: 0.25s ease;
}

.hero-slider-dots .slider-dot.active {
  background: #fff;
  transform: scale(1.15);
}

/* Адаптив */
@media (max-width: 992px) {
  .hero-slide {
    padding: 100px 0 50px;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .hero-slider-prev {
    left: 16px;
  }

  .hero-slider-next {
    right: 16px;
  }
}

@media (max-width: 768px) {
  .hero-slide {
    min-height: 100svh;
    padding: 96px 0 44px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-actions {
    gap: 0.75rem;
    margin: 1.5rem 0 2rem;
  }

  .hero-stats {
    gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .stat-item {
    min-width: auto;
  }

  .hero-slider-arrow {
    width: 46px;
    height: 46px;
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .hero-kicker {
    font-size: 0.82rem;
    padding: 0.45rem 0.8rem;
  }

  .hero-subtitle,
  .hero-description {
    line-height: 1.55;
  }

  .hero-slider-dots {
    bottom: 18px;
  }
}

    /* SECTIONS COMMON */
    section { padding: 6rem 0; }
    .section-header {
      text-align: center; max-width: 700px; margin: 0 auto 3rem;
    }
    .section-header .badge {
      display: inline-block; background: rgba(201, 169, 97, 0.15);
      color: var(--color-primary); padding: 0.4rem 1.2rem;
      border-radius: 50px; font-size: 0.875rem; font-weight: 500;
      margin-bottom: 1rem; border: 1px solid rgba(201, 169, 97, 0.3);
    }
    .section-header h2{
      font-size: clamp(2rem, 4vw, 2.75rem);
      color: var(--color-primary); margin-bottom: 1rem;
    }
    .section-header p { color: var(--color-text-light); font-size: 1.1rem; }

    /* ABOUT SECTION */
    .about { background: var(--color-bg-alt); }
    .about-content { max-width: 800px; margin: 0 auto; text-align: center; }
    .about-preview {
      font-size: 1.1rem; line-height: 1.8; color: var(--color-text-light);
      margin-bottom: 2rem; text-align: left;
    }
    .about-preview p { margin-bottom: 1rem; }
    .about-preview p:last-child { margin-bottom: 1.5rem; }
    .btn-read-more {
      background: transparent; color: var(--color-primary);
      border: 2px solid var(--color-primary); padding: 1rem 2.5rem;
      border-radius: 50px; font-weight: 600; cursor: pointer;
      transition: var(--transition); display: inline-flex;
      align-items: center; gap: 0.5rem;
    }
    .btn-read-more:hover { background: var(--color-primary); color: white; transform: translateY(-2px); }
    .btn-read-more .arrow { transition: transform 0.3s ease; display: inline-block; }
    .btn-read-more:hover .arrow { transform: translateX(4px); }

    /* NEWS SECTION */
    .news { background: var(--color-bg); }
    .news-carousel-wrapper { position: relative; padding: 0 3rem; margin: 2rem 0; }
    .news-carousel { overflow: hidden; }
    .news-carousel-track {
      display: flex; transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1); gap: 1.5rem;
    }
    .news-carousel-slide { flex: 0 0 calc(25% - 1.125rem); min-width: 0; }
    .news-card {
      background: var(--color-bg-alt); border-radius: var(--border-radius);
      overflow: hidden; transition: var(--transition);
      height: 100%; display: flex; flex-direction: column;
    }
    .news-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
    .news-card-image {
      height: 280px; background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
      display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
    }
	.news-card-image img{width: 100%;}
    
    .news-card-content { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
    .news-card-title {
      font-family: 'Cormorant Garamond', serif; font-size: 1.2rem;
      font-weight: 600; color: var(--color-primary); margin-bottom: 0.75rem; line-height: 1;
    }
    .news-card-excerpt {
      font-size: 0.9rem; color: var(--color-text-light); line-height: 1.4;
      flex-grow: 1; margin-bottom: 1rem;
      display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical;
      overflow: hidden; position: relative;
    }
    .news-card-excerpt::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40px;
      background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
      pointer-events: none;
    }
    .news-card-link {
      display: inline-flex; align-items: center; gap: 0.4rem;
      color: var(--color-accent); text-decoration: none; font-weight: 600;
      font-size: 0.85rem; transition: var(--transition);
    }
    .news-card-link:hover { color: var(--color-primary); gap: 0.6rem; }
    .news-card-link svg { width: 14px; height: 14px; fill: currentColor; transition: transform 0.3s ease; }
    .news-card-link:hover svg { transform: translateX(4px); }

    /* BANNERS */
    .banners { background: var(--color-bg-alt); }
    .banners-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 3rem 0; }
    .banner-block {
      background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
      border-radius: var(--border-radius); padding: 3rem 2rem; text-align: center; color: white;
      transition: var(--transition); cursor: pointer; box-shadow: var(--shadow-soft); position: relative; overflow: hidden;
    }
    .banner-block::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
      background: radial-gradient(circle at center, rgba(201, 169, 97, 0.2) 0%, transparent 70%);
      opacity: 0; transition: var(--transition);
    }
    .banner-block:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
    .banner-block:hover::before { opacity: 1; }
    .banner-icon {
      width: 80px; height: 80px; margin: 0 auto 1.5rem; background: rgba(255,255,255,0.15);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      position: relative; z-index: 1;
    }
    .banner-icon svg { width: 40px; height: 40px; fill: currentColor; }
    .banner-title {
      font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 600;
      margin-bottom: 0.75rem; position: relative; z-index: 1;
    }
    .banner-desc { font-size: 0.95rem; opacity: 0.9; position: relative; z-index: 1; }

    /* CAROUSEL STYLES (Shared) */
    .carousel-wrapper { position: relative; padding: 0 3rem; margin: 2rem 0; }
    .carousel { overflow: hidden; position: relative; }
    .carousel-track {
      display: flex; transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1); gap: 1.5rem;
    }
    .carousel-slide { flex: 0 0 calc(25% - 1.125rem); min-width: 0; }
    .carousel-button {
      position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 50px;
      border-radius: 50%; background: var(--color-bg-alt); border: 2px solid var(--color-primary);
      color: var(--color-primary); cursor: pointer; display: flex; align-items: center;
      justify-content: center; z-index: 10; transition: var(--transition); box-shadow: var(--shadow-soft);
    }
    .carousel-button:hover { background: var(--color-primary); color: white; transform: translateY(-50%) scale(1.05); }
    .carousel-button.prev { left: -10px; }
    .carousel-button.next { right: -10px; }
    .carousel-button:disabled { opacity: 0.3; cursor: not-allowed; }
    .carousel-button svg { width: 20px; height: 20px; fill: currentColor; }
    .carousel-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
    .carousel-dot {
      width: 10px; height: 10px; border-radius: 50%; background: rgba(139, 115, 85, 0.3);
      border: none; cursor: pointer; transition: var(--transition); padding: 0;
    }
    .carousel-dot.active { background: var(--color-accent); transform: scale(1.2); }
    .carousel-dot:hover { background: var(--color-primary); }

    /* HORSE CARD */
    .horse-card {
      background: var(--color-bg-alt); border-radius: var(--border-radius); overflow: hidden;
      box-shadow: var(--shadow-soft); transition: var(--transition); height: 100%; display: flex; flex-direction: column;
    }
    .horse-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
    .horse-image {
      height: 340px; background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
      display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
    }
	  .horse-card-link{text-decoration: none;}
    .horse-badge {
      position: absolute; top: 1rem; right: 1rem; background: var(--color-accent);
      color: var(--color-primary-dark); padding: 0.35rem 0.85rem; border-radius: 50px;
      font-size: 0.75rem; font-weight: 600;
    }
    .horse-info { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
    .horse-name {
      font-family: 'Cormorant Garamond', serif; font-size: 1.2rem;
      font-weight: 600; color: var(--color-primary); margin-bottom: 0.25rem;
		text-transform: uppercase;
    }
    .horse-breed { color: var(--color-secondary); font-weight: 500; margin-bottom: 0.5rem; display: block;line-height: 1.1rem; font-size: .9rem;  }
    .horse-type {
      font-size: 0.9rem; color: var(--color-text-light); background: rgba(139, 115, 85, 0.1);
      padding: 0.25rem 0.75rem; border-radius: 50px; display: inline-block; margin-bottom: 1rem;text-align: right;
    }
    .horse-desc { font-size: 0.9rem; color: var(--color-text-light); line-height: 1.6; margin-bottom: 1rem; flex-grow: 1; }

    /* TEAM CARD */
    .team-card {
      background: var(--color-bg-alt); border-radius: var(--border-radius); padding: 2rem;
      text-align: center; box-shadow: var(--shadow-soft); transition: var(--transition);
      height: 100%; display: flex; flex-direction: column;
    }
    .team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
    .team-avatar {
      width: 100px; height: 100px; border-radius: 50%;
      background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
      margin: 0 auto 1.25rem; display: flex; align-items: center; justify-content: center;
      color: white; border: 4px solid var(--color-bg); box-shadow: 0 8px 25px rgba(0,0,0,0.1);
      position: relative; font-size: 1.5rem; font-weight: 600;
    }
    .team-name {
      font-family: 'Cormorant Garamond', serif; font-size: 1.3rem;
      font-weight: 600; color: var(--color-primary); margin-bottom: 0.25rem;
    }
    .team-role { color: var(--color-secondary); font-weight: 500; font-size: 0.9rem; margin-bottom: 0.75rem; }
    .team-desc { font-size: 0.9rem; color: var(--color-text-light); line-height: 1.6; flex-grow: 1; }

    /* Секция публикаций */
.media-publications {
  padding: 5rem 0;
  background: var(--color-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--color-text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Список публикаций */
.publications-list {
  max-width: 1000px;
  margin: 0 auto;
}

.publication-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(139, 115, 85, 0.15);
  transition: var(--transition);
}

.publication-item:last-child {
  border-bottom: none;
}

.publication-item:hover {
  background: rgba(201, 169, 97, 0.03);
  padding-left: 1rem;
  padding-right: 1rem;
  margin: 0 -1rem;
  border-radius: 8px;
}

.publication-title {
  font-size: 1.05rem;
  color: var(--color-text);
  font-weight: 500;
  line-height: 1.5;
  flex: 1;
  padding-right: 2rem;
}

.publication-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: var(--transition);
}

.publication-link span {
  transition: transform 0.3s ease;
}

.publication-link:hover {
  color: var(--color-accent);
}

.publication-link:hover span {
  transform: translateX(4px);
}

/* Адаптивность */
@media (max-width: 768px) {
  .media-publications {
    padding: 3rem 0;
  }
  
  .publication-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .publication-title {
    padding-right: 0;
    font-size: 1rem;
  }
  
  .publication-link {
    align-self: flex-end;
  }
}
   
    /* PHOTO ARCHIVE */
    .archive { background: var(--color-bg-alt); }
    .photo-archive {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem; margin-top: 2rem;
    }
    .archive-link {
      display: block; padding: 2rem 1.5rem; background: var(--color-bg);
      border-radius: var(--border-radius); text-decoration: none; color: var(--color-text);
      text-align: center; transition: var(--transition); border: 2px solid transparent;
  
    }
   
    .archive-link:hover { transform: translateY(-8px); border-color: var(--color-accent); box-shadow: var(--shadow-hover); }
    
    .archive-title {
      font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600;
      color: var(--color-primary); margin-bottom: 0.5rem; position: relative;  transition: var(--transition);
    }
    
   
    .archive-hover-content {
      position: absolute; top: 100px; left: 0; right: 0; 
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      opacity: 0; visibility: hidden; transition: var(--transition); z-index: 2000; border-radius: var(--border-radius);
		
		
    }
    .archive-link:hover .archive-hover-content { opacity: 1; visibility: visible; }
    
    .archive-hover-text {  padding: 1.5rem; background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);border-radius: var(--border-radius);
	  }
    .archive-hover-text p {
      font-size: 0.9rem; line-height: 1.2; color: rgba(255, 255, 255, 0.95); margin: 0;text-align: left;
    }

    /* BTN MORE */
    .btn-more {
      display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 2rem; padding: 0.875rem 2rem;
      background: transparent; color: var(--color-primary); border: 2px solid var(--color-primary);
      border-radius: 50px; font-weight: 600; text-decoration: none; transition: var(--transition); cursor: pointer;
    }
    .btn-more:hover { background: var(--color-primary); color: white; transform: translateY(-2px); }
    .btn-more svg { width: 18px; height: 18px; fill: currentColor; transition: transform 0.3s ease; }
    .btn-more:hover svg { transform: translateX(4px); }

 



    /* MODAL STYLES */
    .modal-overlay {
      position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(26, 60, 30, 0.92);
      display: flex; align-items: center; justify-content: center; z-index: 3000;
      opacity: 0; visibility: hidden; transition: var(--transition); padding: 2rem;
    }
    .modal-overlay.active { opacity: 1; visibility: visible; }
    .modal-content {
      background: var(--color-bg-alt); border-radius: var(--border-radius); max-width: 900px; width: 100%;
      max-height: 85vh; overflow-y: auto; position: relative; box-shadow: var(--shadow-hover);
      transform: translateY(20px); transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      padding: 3rem 2.5rem 2.5rem;
    }
    .modal-overlay.active .modal-content { transform: translateY(0); }
    .modal-close-fixed {
      position: fixed; top: 20px; right: 20px; width: 50px; height: 50px; border-radius: 50%;
      background: var(--color-primary); color: white; border: none; cursor: pointer; display: flex;
      align-items: center; justify-content: center; z-index: 3001; box-shadow: 0 8px 30px rgba(0,0,0,0.25);
      transition: var(--transition); opacity: 0; visibility: hidden; transform: scale(0.8);
    }
    .modal-overlay.active .modal-close-fixed { opacity: 1; visibility: visible; transform: scale(1); }
    .modal-close-fixed:hover { background: var(--color-primary-dark); transform: scale(1.05); }
    .modal-close-fixed::before, .modal-close-fixed::after {
      content: ''; position: absolute; width: 20px; height: 2px; background: white; border-radius: 2px;
    }
    .modal-close-fixed::before { transform: rotate(45deg); }
    .modal-close-fixed::after { transform: rotate(-45deg); }
    .modal-close-inline {
      position: absolute; top: 1.5rem; right: 1.5rem; width: 36px; height: 36px; border-radius: 50%;
      background: rgba(139, 115, 85, 0.1); color: var(--color-primary); border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 300;
      transition: var(--transition); z-index: 10;
    }
    .modal-close-inline:hover { background: var(--color-accent); color: var(--color-primary-dark); }
    .modal-header {
      margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 2px solid rgba(201, 169, 97, 0.3); 
    }
    .modal-header h2 { font-size: 2rem; color: var(--color-primary); margin-bottom: 0.5rem; }
    .modal-header .subtitle { color: var(--color-secondary); font-weight: 500; font-size: 1.05rem; }
    .modal-body { font-size: 1.05rem; color: var(--color-text); line-height: 1.8; }
    .modal-body h3 {
      font-size: 1.5rem; color: var(--color-primary); margin: 2.5rem 0 1.25rem; padding-bottom: 0.5rem;
      border-bottom: 2px solid rgba(201, 169, 97, 0.2);
    }
    .modal-body h4 { font-size: 1.2rem; color: var(--color-primary); margin: 1.75rem 0 0.75rem; }
    .modal-body p { margin-bottom: 1rem; }
    .modal-body ul { list-style: none; padding-left: 0.5rem; margin: 1rem 0; }
    .modal-body ul li {
      padding-left: 1.5rem; position: relative; margin-bottom: 0.5rem; color: var(--color-text-light); line-height: 1.6;
    }
    .modal-body ul li::before {
      content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; background: var(--color-accent); border-radius: 50%;
    }
	  .modal-body section{padding:0}
    .highlight-box {
      background: rgba(201, 169, 97, 0.12); border-left: 4px solid var(--color-accent);
      padding: 1rem 1.25rem; margin: 1.25rem 0; border-radius: 0 8px 8px 0; font-weight: 500;
    }
    .modal-footer {
      margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(139, 115, 85, 0.15);
      text-align: center; color: var(--color-text-light); font-size: 0.95rem;
    }
    .modal-content::-webkit-scrollbar { width: 6px; }
    .modal-content::-webkit-scrollbar-track { background: rgba(139, 115, 85, 0.1); border-radius: 3px; }
    .modal-content::-webkit-scrollbar-thumb { background: var(--color-accent); border-radius: 3px; }

    /* RESPONSIVE */
    @media (max-width: 992px) {
      .carousel-slide, .news-carousel-slide { flex: 0 0 calc(33.333% - 1rem); }
      .photo-archive { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .mobile-toggle { display: flex; }
      nav ul {
        position: fixed; top: 80px; left: 0; right: 0; background: var(--color-bg-alt);
        flex-direction: column; padding: 2rem; gap: 1rem; box-shadow: var(--shadow-soft);
        transform: translateY(-150%); transition: var(--transition); z-index: 999;
      }
      nav ul.active { transform: translateY(0); }
      .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
      section { padding: 4rem 0; }
      .carousel-wrapper, .news-carousel-wrapper { padding: 0 2.5rem; }
      .carousel-slide, .news-carousel-slide { flex: 0 0 calc(50% - 0.75rem); }
      .media-grid { grid-template-columns: 1fr; }
      .banners-grid { grid-template-columns: 1fr; }
      .photo-archive { grid-template-columns: 1fr; }
      .archive-hover-content { display: none; }
    }
    @media (max-width: 480px) {
      .carousel-slide, .news-carousel-slide { flex: 0 0 100%; }
      .carousel-button { width: 40px; height: 40px; }
      .hero h1 { font-size: 2rem; }
      .about-preview { font-size: 1rem; }
    }

    .decoration { position: absolute; pointer-events: none; opacity: 0.03; z-index: 0; font-family: 'Cormorant Garamond', serif; font-weight: 700; }
    .scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--color-accent); z-index: 2000; transition: width 0.1s ease; width: 0%; }
	  
	  /* Club Sections */
.club-section {
  padding: 4rem 0;
  border-bottom: 3px solid rgba(139, 115, 85, 0.15);
}

.club-section:last-child {
  border-bottom: none;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 2rem;
  font-weight: 600;
}

.section-content {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 3rem;
  align-items: start;
}

.section-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.section-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.section-image:hover img {
  transform: scale(1.03);
}

.section-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text);
}
	  .section-text a{
	  	color:var(--color-primary);
	  }

.section-text p {
  margin-bottom: 1.25rem;
	line-height: 1.4rem;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  float: right;
}

.section-link:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

/* Alternating background */
.section-alt {
  background: var(--color-bg);
}

/* Responsive */
@media (max-width: 992px) {
  .section-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .section-image {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .club-section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-link {
    float: none;
    display: inline-flex;
  }
}
	
/* ===== АКЦЕНТНЫЙ БЛОК: ПАРАЛЛАКС + СТИЛИ ===== */

/* Основной контейнер */
.section-banner-split {
  padding: 5rem 0;
  /* Убираем фон контейнера, так как фон теперь на отдельном слое */
  background: transparent; 
  overflow: hidden; /* Важно для параллакса */
  position: relative;
}


/* Секция должна быть relative, чтобы оверлей и контент позиционировались правильно */
.section-banner-split {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  background: transparent;
}

/* Секция должна быть relative, чтобы оверлей и контент позиционировались правильно */
.section-banner-split {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  background: transparent;
}
/* Контент поверх фона */
.banner-split-wrapper {
  position: relative;
  z-index: 2; /* Поднимаем контент выше фона */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* --- Левая сторона - Текст --- */
.banner-text-side {
  padding: 2rem 0;
}

.banner-title-split {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  font-weight: 700;
}

.banner-text-split {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 2rem;
}

.banner-links-split {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.banner-link-split {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid var(--color-accent);
  transition: var(--transition);
}

.banner-link-split:hover {
  color: var(--color-accent);
}

.banner-divider-split {
  color: var(--color-secondary);
  opacity: 0.5;
}

.banner-btn-split {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.banner-btn-split:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* --- Правая сторона - Слайдер --- */
.banner-slider-side {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.slider-wrapper {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
}

.slide-item {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Навигация слайдера */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}

.slider-nav:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.slider-nav svg {
  width: 24px;
  height: 24px;
  fill: var(--color-primary);
}

/* Индикаторы */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.slider-dot.active {
  background: var(--color-accent);
  transform: scale(1.3);
}

.slider-dot:hover {
  background: white;
}

/* Адаптивность */
@media (max-width: 992px) {
  .banner-split-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .banner-text-side {
    text-align: center;
  }
  
  .banner-links-split {
    justify-content: center;
  }
  
  .slider-wrapper {
    height: 400px;
  }
  
  /* На мобильных фон делаем чуть прозрачнее, чтобы не грузить телефон */
  .banner-overlay {
    background: rgba(248, 245, 240, 0.9); 
  }
}

@media (max-width: 768px) {
  .banner-title-split {
    font-size: 2rem;
  }
  
  .banner-text-split {
    font-size: 1rem;
  }
  
  .slider-wrapper {
    height: 300px;
  }
  
  .slider-nav {
    width: 40px;
    height: 40px;
  }
  
  .slider-prev { left: 10px; }
  .slider-next { right: 10px; }
}
/* ===== БЛОКИ С ФОНОМ И ГРАДИЕНТОМ ===== */
.info-banners {
  position: relative;
  padding: 6rem 0; /* Высота блока */
  overflow: hidden;
}

/* Фоновая картинка */
.info-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Параллакс эффект (фон стоит на месте) */
  z-index: 1;
}

/* Градиент: Слева зеленый (наш цвет), справа затемнение для контраста */
.info-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, 
    rgba(26, 60, 30, 0.92) 0%, 
    rgba(26, 60, 30, 0.85) 50%, 
    rgba(0, 0, 0, 0.8) 100%);
  z-index: 2;
}

/* Контейнер и сетка */
.banners-grid {
  position: relative;
  z-index: 3; /* Поверх фона */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.banner-text-block {
  max-width: 500px;
}

/* Если блоки нужно выровнять (один сверху, другой снизу), можно добавить смещение */
.banner-text-block:last-child {
  align-self: end; /* Второй блок чуть ниже для динамики */
}

/* Заголовки */
.banner-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: white; /* Белый заголовок */
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.2;
  border-left: 4px solid var(--color-accent); /* Акцентная золотая линия */
  padding-left: 1.25rem;
}

/* Текст */
.banner-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9); /* Полупрозрачный белый */
  margin-bottom: 2rem;
}

/* Ссылка "Подробнее" */
.banner-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-accent); /* Золотая ссылка */
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  transition: var(--transition);
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(201, 169, 97, 0.4);
}

.banner-link .arrow {
  transition: transform 0.3s ease;
}

.banner-link:hover {
  color: white;
  border-bottom-color: white;
}

.banner-link:hover .arrow {
  transform: translateX(6px);
}

/* Адаптивность */
@media (max-width: 992px) {
  .banners-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .banner-text-block,
  .banner-text-block:last-child {
    align-self: center;
    max-width: 100%;
    text-align: center;
  }

  .banner-heading {
    border-left: none;
    border-bottom: 3px solid var(--color-accent);
    padding-left: 0;
    padding-bottom: 0.75rem;
    display: inline-block;
  }
}

@media (max-width: 768px) {
  .info-banners {
    padding: 4rem 0;
  }
  .info-bg {
    background-attachment: scroll; /* Отключаем параллакс на мобильных для производительности */
  }
}


.banner-parallax-bg {
    position: absolute;
    inset: -5%;
    z-index: 0;

    background-size: cover;
    background-position: center;

    opacity: 0.35;

    filter: blur(6px);

}
	.section-banner-split {
    box-shadow:
        inset 0 30px 40px -30px rgba(0,0,0,.25),
        inset 0 -30px 40px -30px rgba(0,0,0,.25);
}



/* ===== ПРЕДСТАВИТЕЛЬНЫЙ БЛОК ВИДЕО ===== */

.video-showcase {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    isolation: isolate;
}

/* Мягкий фирменный фон секции */
.video-showcase::before,
.video-showcase::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: .18;
    pointer-events: none;
}

.video-showcase::before {
    width: 320px;
    height: 320px;
    top: 30px;
    left: -80px;
    background: var(--color-accent);
}

.video-showcase::after {
    width: 360px;
    height: 360px;
    right: -100px;
    bottom: -40px;
    background: var(--color-primary);
}

.video-showcase__card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(320px, 520px) 1fr;
    gap: 3.5rem;
    align-items: center;

    padding: 2rem;
    border-radius: 28px;

    background:
        linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255,255,255,0.88));

    border: 1px solid rgba(255,255,255,0.65);

    box-shadow:
        0 20px 60px rgba(0,0,0,.10),
        0 6px 24px rgba(0,0,0,.06);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    transition: transform .35s ease, box-shadow .35s ease;
}

.video-showcase__card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 28px 80px rgba(0,0,0,.14),
        0 10px 30px rgba(0,0,0,.08);
}

/* Декоративная акцентная линия */
.video-showcase__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        var(--color-accent),
        var(--color-primary),
        var(--color-accent)
    );
    opacity: .9;
}

/* ===== Медиа ===== */
.video-showcase__media {
    position: relative;
}

.video-showcase__frame {
    position: relative;
    padding: 14px;
    border-radius: 26px;

    background:
        linear-gradient(145deg,
            color-mix(in srgb, var(--color-primary) 70%, #ffffff 30%),
            color-mix(in srgb, var(--color-primary-dark) 85%, #000000 15%)
        );

    box-shadow:
        0 24px 50px rgba(0,0,0,.22),
        inset 0 1px 0 rgba(255,255,255,.25);
}

/* Золотистая внутренняя окантовка */
.video-showcase__frame::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.18);
    pointer-events: none;
}

.video-showcase__screen {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 18px;
    background: var(--color-accent);
    border: 6px solid var(--color-accent);
    aspect-ratio: 16 / 10;
    text-decoration: none;
}

.video-showcase__screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s ease;
}

.video-showcase__card:hover .video-showcase__screen img {
    transform: scale(1.04);
}

.video-showcase__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(0,0,0,.38), rgba(0,0,0,.08) 45%, rgba(0,0,0,.05));
    pointer-events: none;
}

/* ===== Контент ===== */
.video-showcase__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-showcase__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .75rem;

    width: fit-content;
    margin-bottom: 1rem;
    padding: .65rem 1rem;

    border-radius: 999px;

    background: color-mix(in srgb, var(--color-accent) 14%, #ffffff 86%);
    color: var(--color-accent);

    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.video-showcase__eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 0 0 6px color-mix(in srgb, var(--color-accent) 20%, transparent);
}

.video-showcase__title {
    margin: 0 0 1rem;
    color: var(--color-primary);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: -.02em;
}

.video-showcase__lead {
    margin: 0 0 2rem;
    max-width: 760px;

    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Кнопка */
.video-showcase__actions {
    margin-top: .5rem;
}

.video-showcase__btn {
    display: inline-flex;
    align-items: center;
    gap: .75rem;

    padding: 1rem 1.5rem;
    border-radius: 999px;

    text-decoration: none;
    color: #fff;
    font-weight: 700;
    letter-spacing: .02em;

    background: linear-gradient(
        135deg,
        var(--color-primary),
        var(--color-primary-dark)
    );

    box-shadow:
        0 14px 30px color-mix(in srgb, var(--color-primary) 30%, transparent),
        inset 0 1px 0 rgba(255,255,255,.2);

    transition: transform .3s ease, box-shadow .3s ease, filter .3s ease;
}

.video-showcase__btn span {
    font-size: 1.05rem;
    transition: transform .3s ease;
}

.video-showcase__btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
    box-shadow:
        0 20px 36px color-mix(in srgb, var(--color-primary) 38%, transparent),
        inset 0 1px 0 rgba(255,255,255,.22);
}

.video-showcase__btn:hover span {
    transform: translateX(3px);
}

/* ===== Адаптив ===== */
@media (max-width: 1100px) {
    .video-showcase__card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .video-showcase__media {
        max-width: 760px;
        width: 100%;
        margin: 0 auto;
    }

    .video-showcase__content {
        padding: 0 .25rem .25rem;
    }
}

@media (max-width: 760px) {
    .video-showcase {
        padding: 4.5rem 0;
    }

    .video-showcase__card {
        padding: 1.25rem;
        border-radius: 22px;
        gap: 1.5rem;
    }

    .video-showcase__card::before {
        left: 1.25rem;
        right: 1.25rem;
    }

    .video-showcase__frame {
        padding: 10px;
        border-radius: 20px;
    }

    .video-showcase__screen {
        border-radius: 14px;
        border-width: 4px;
    }

    .video-showcase__play {
        width: 62px;
        height: 62px;
        left: 18px;
        bottom: 18px;
    }

    .video-showcase__title {
        font-size: 2rem;
    }

    .video-showcase__lead {
        font-size: 1rem;
        line-height: 1.75;
    }

    .video-showcase__btn {
        width: 100%;
        justify-content: center;
    }
}

/* Основные стили секции */
.media-publications {
  padding: 60px 0;
  background: linear-gradient(180deg, #f8f6f3 0%, #ffffff 100%);
}

/* Шапка секции */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

/* Список публикаций */
.publications-list {
  max-width: 900px;
  margin: 0 auto;
}

/* Карточка публикации */
.publication-item {
  background: #ffffff;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.publication-item:hover {
  box-shadow: 0 4px 16px rgba(45, 74, 62, 0.1);
  border-color: #d4e4db;
  transform: translateY(-2px);
}

/* Иконка публикации */
.publication-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef5f0;
  border-radius: 10px;
  color: #5a7c6a;
  transition: all 0.3s ease;
}

.publication-item:hover .publication-icon {
  background: #5a7c6a;
  color: #ffffff;
}

/* Контент публикации */
.publication-content {
  flex: 1;
  min-width: 0;
}

/* Заголовок публикации */
.publication-title {
  font-size: 15px;
  font-weight: 500;
  color: #2d4a3e;
  line-height: 1.5;
}

/* Кнопка "Подробнее" - скрыта по умолчанию */
.publication-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #5a7c6a;
  font-weight: 600;
  font-size: 13px;
  padding: 8px 18px;
  border: 1.5px solid #c8dcd1;
  border-radius: 24px;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-10px);
}

/* Показываем кнопку при наведении */
.publication-item:hover .publication-link {
  opacity: 1;
  transform: translateX(0);
}

.publication-link:hover {
  background: #5a7c6a;
  border-color: #5a7c6a;
  color: #ffffff;
}

.publication-link svg {
  transition: transform 0.3s ease;
}

.publication-link:hover svg {
  transform: translateX(3px);
}

/* Метка PDF */
.publication-item[data-href$=".pdf"] .publication-link::after {
  content: 'PDF';
  font-size: 9px;
  font-weight: 700;
  background: #e74c3c;
  color: white;
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: 4px;
  letter-spacing: 0.5px;
}

/* Адаптивность */
@media (max-width: 768px) {
  .media-publications {
    padding: 36px 0;
  }

  .section-header {
    margin-bottom: 28px;
  }

  .section-header h1 {
    font-size: 26px;
  }

  .section-header p {
    font-size: 14px;
  }

  .publication-item {
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px;
  }

  .publication-icon {
    width: 38px;
    height: 38px;
  }

  .publication-icon svg {
    width: 18px;
    height: 18px;
  }

  .publication-content {
    flex: 1;
    min-width: calc(100% - 56px);
  }

  .publication-title {
    font-size: 14px;
  }

  /* На мобильных показываем кнопку всегда */
  .publication-link {
    opacity: 1;
    transform: translateX(0);
    align-self: flex-end;
    font-size: 12px;
    padding: 6px 14px;
  }
}