:root {
  --backdrop-darken: rgba(0, 0, 0, 0.06);
  --text: #ffffff;
  --accent: #ff3465;
  --accent-hover: #ff6b8a;
  --button-bg: rgba(255, 255, 255, 0.12);
  --button-bg-hover: rgba(255, 255, 255, 0.22);
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  min-width: 1150px;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.5;
  background: #000;
}

/* Скрываем мобильное меню на десктопе */
.mobile-menu-bar,
.mobile-menu-toggle,
.mobile-menu,
.mobile-menu-overlay {
  display: none;
}

/* Иконки социальных сетей на десктопе - в центре наверху логотипа */
@media (min-width: 769px) {
  .mobile-social-buttons {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
  }
  
  .mobile-social-buttons-wrapper {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: flex-start;
    position: relative;
  }
  
  .mobile-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.06s ease, border-color 0.2s ease;
    position: relative;
  }
  
  /* Facebook - первая иконка, top: 60px (только на главной) */
  .mobile-social-btn:nth-child(1) {
    top: 53px;
  }
  
  /* Instagram - вторая иконка, top: 52px (только на главной) */
  .mobile-social-btn:nth-child(2) {
    top: 45px;
  }
  
  /* Telegram - третья иконка, top: 64px (только на главной) */
  .mobile-social-btn:nth-child(3) {
    top: 56px;
  }
  
  /* На страницах контента (history, wine, contacts) - все иконки на одной линии */
  body:has(.content.page-content) .mobile-social-btn:nth-child(1),
  body:has(.content.page-content) .mobile-social-btn:nth-child(2),
  body:has(.content.page-content) .mobile-social-btn:nth-child(3) {
    top: 60px;
  }
  
  /* На страницах контента - увеличиваем расстояние между иконками */
  body:has(.content.page-content) .mobile-social-buttons-wrapper {
    gap: 30px;
  }
  
  .mobile-social-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
  }
  
  .mobile-social-btn:active {
    transform: translateY(0);
  }
  
  .mobile-social-btn svg {
    width: 20px;
    height: 20px;
  }
}

/* Десктопное меню */
.desktop-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 20px 40px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 1150px;
}

.desktop-menu-item {
  color: #ffffff;
  text-decoration: none;
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}

.desktop-menu-item:hover {
  color: #6b9f7a;
  background: rgba(255, 255, 255, 0.1);
}

.desktop-menu-item::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #6b9f7a;
  transition: width 0.3s ease;
}

.desktop-menu-item:hover::after {
  width: calc(100% - 32px);
}

.desktop-lang-buttons {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-left: 40px;
  padding-left: 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.desktop-lang-btn {
  cursor: pointer;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 14px;
  font-family: Inter, system-ui, sans-serif;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.desktop-lang-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #6b9f7a;
  border-color: rgba(107, 159, 122, 0.5);
}

.desktop-lang-btn:active {
  transform: translateY(1px);
}

/* Скрываем кнопки языков под логотипом на десктопе */
.actions {
  display: none;
}


/* Стили для страниц контента */
.card {
  padding: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.card h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 5vw, 64px);
  margin: 0 0 24px;
  color: #ffffff;
}

.card p {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.history-content {
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
  color: rgba(250, 250, 250, 0.95);
  background: rgba(0, 0, 0, 0.1);
  padding: 20px;
  backdrop-filter: blur(6px);
  border-radius: 20px;
}

.history-content p {
  margin-top: 10px;
  margin-bottom: 2px;
  font-size: 21px;
  line-height: 1.8;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
}

.history-content p::first-letter {
  font-weight: 700;
  color: #ffffff;
}

.history-content p.highlight {
  font-weight: 600;
  font-style: italic;
  color: lavender;
  text-align: center;
  margin: 5px 90px;
  font-size: clamp(17px, 2vw, 23px);
}

.history-content p.highlight::first-letter {
  font-weight: 600;
  color: lavender;
}

/* Логотип на странице вина */
.wine-logo-container {
  text-align: center;
  margin: 40px 0;
}

.wine-logo {
  max-width: 500px;
  width: 100%;
  height: auto;
}

/* Контент на странице вина */
.wine-content {
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
  color: rgba(250, 250, 250, 0.95);
  background: rgba(0, 0, 0, 0.1);
  padding: 20px;
  backdrop-filter: blur(6px);
  border-radius: 20px;
}

.wine-content p {
  margin-top: 80px;
  margin-bottom: 2px;
  font-size: 21px;
  line-height: 1.8;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  text-align: center;
  clear: both;
}

.wine-content p::first-letter {
  font-weight: 700;
  color: #ffffff;
}

/* Интерактивный пазл на странице вина */
.wine-puzzle-container {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-top: 40px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  overflow: visible;
}

.wine-puzzle-left {
  position: relative;
  width: 430px;
  flex-shrink: 0;
}

.wine-puzzle-image {
  width: 100%;
  height: auto;
  display: block;
}

.wine-puzzle-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Показываем только десктопную версию пазла */
.wine-puzzle-desktop {
  display: block;
}

.wine-puzzle-mobile {
  display: none;
}

.puzzle-piece {
  cursor: pointer;
  pointer-events: all;
  transition: all 0.3s ease;
  fill: transparent;
  stroke: none;
}

.puzzle-piece:hover {
  fill: rgba(255, 255, 255, 0.05);
}

/* Кружки на пазлах - скрыты по умолчанию */
.puzzle-dot {
  fill: #ffffff;
  stroke: #000000;
  stroke-width: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.puzzle-dot.active {
  opacity: 1;
}

/* Разные цвета кружков для каждого пазла */
.puzzle-dot-1 { fill: #e7d157; }
.puzzle-dot-2 { fill: #6b9f7a; }
.puzzle-dot-3 { fill: #f4c542; }
.puzzle-dot-4 { fill: #e85d5d; }
.puzzle-dot-5 { fill: #9faf3b; }
.puzzle-dot-6 { fill: #685F2A; }

/* Линии от пазлов к блокам - скрыты по умолчанию */
.puzzle-line {
  stroke: #ffffff;
  stroke-width: 4;
  stroke-dasharray: 5, 7;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.puzzle-line.active {
  opacity: 0.8;
}

/* Разные цвета линий для каждого пазла */
.puzzle-line-1 { stroke: #f1d94f; }
.puzzle-line-2 { stroke: #68cc85; }
.puzzle-line-3 { stroke: #dfad23; }
.puzzle-line-4 { stroke: #e85d5d; }
.puzzle-line-5 { stroke: #9faf3b; }
.puzzle-line-6 { stroke: #b09b25; }

/* Разные цвета подсветки для каждого пазла - без границ */
.puzzle-piece-1.active {
  fill: rgba(231, 209, 87, 0.4);
}

.puzzle-piece-2.active {
  fill: rgba(107, 159, 122, 0.4);
}

.puzzle-piece-3.active {
  fill: rgba(244, 197, 66, 0.4);
}

.puzzle-piece-4.active {
  fill: rgba(232, 93, 93, 0.4);
}

.puzzle-piece-5.active {
  fill: rgba(159, 175, 59, 0.4);
}

.puzzle-piece-6.active {
  fill: rgba(104, 95, 42, 0.4);
}

.wine-puzzle-right {
  flex: 1;
  position: relative;
  min-width: 400px;
  min-height: 950px;
  overflow: visible;
}

.wine-puzzle-intro {
  position: absolute;
  top: 30px;
  left: -110px;
  right: 0;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.wine-puzzle-logo {
  width: 80px;
  height: auto;
  flex-shrink: 0;
}

.wine-puzzle-intro p {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.6;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  text-align: left;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.wine-puzzle-info {
  border-radius: 16px;
  padding: 30px;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.4s ease;
  pointer-events: none;
  position: absolute;
  left: 0;
  max-width: 500px;
  width: 100%;
}

/* Разные градиенты и позиции для каждого блока - привязаны к линиям */
.wine-puzzle-info[data-info="1"] {
  background: linear-gradient(-10deg, #e7d157 0%, #c5b04a 100%);
  top: 430px;
  transform: translateY(-50%);
}

.wine-puzzle-info[data-info="2"] {
  background: linear-gradient(-10deg, #6b9f7a 0%, #5a8c6a 100%);
  top: 390px;
  transform: translateY(-50%);
}

.wine-puzzle-info[data-info="3"] {
  background: linear-gradient(-10deg, #f4c542 0%, #d9ad2e 100%);
  top: 340px;
  transform: translateY(-50%);
}

.wine-puzzle-info[data-info="4"] {
  background: linear-gradient(-10deg, #e85d5d 0%, #d94c4c 100%);
  top: 410px;
  transform: translateY(-50%);
}

.wine-puzzle-info[data-info="5"] {
  background: linear-gradient(-10deg, #9faf3b 0%, #8a9833 100%);
  top: 450px;
  transform: translateY(-50%);
}

.wine-puzzle-info[data-info="6"] {
  background: linear-gradient(-10deg, #685F2A 0%, #564f22 100%);
  top: 565px;
  transform: translateY(-50%);
}

.wine-puzzle-info.active {
  opacity: 1;
  transform: translateY(-50%);
  pointer-events: all;
}

.wine-puzzle-info h3 {
  margin: 0 0 15px 0;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  text-transform: uppercase;
}

.wine-puzzle-info p {
  margin: 0;
  color: #ffffff;
  font-size: 19px;
  line-height: 1.8;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  text-align: left;
}

.wine-puzzle-text {
  margin: 0;
  color: #ffffff;
  font-size: 19px;
  line-height: 1.8;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  text-align: left;
  white-space: pre-line;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Навигация на десктопе */
.wine-puzzle-navigation {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 15px;
  gap: 20px;
}

.wine-puzzle-nav-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid #ffffff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  padding: 0;
  flex-shrink: 0;
}

.wine-puzzle-nav-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

.wine-puzzle-nav-btn:active {
  transform: scale(0.95);
}

.wine-puzzle-nav-btn.disabled {
  opacity: 0.3;
  pointer-events: none;
  cursor: not-allowed;
}

/* Контент на странице контактов */
.contacts-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  color: rgba(250, 250, 250, 0.95);
  background: rgba(0, 0, 0, 0.1);
  padding: 20px;
  backdrop-filter: blur(6px);
  border-radius: 20px;
}

.contacts-content p {
  margin-top: 30px;
  margin-bottom: 2px;
  font-size: 21px;
  line-height: 1.8;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
}

.contacts-content p::first-letter {
  font-weight: 700;
  color: #ffffff;
}

.contact-email {
  font-weight: 600;
  margin-top: 30px;
}

/* Аккордеон для контактов - общие стили */
.contacts-accordion-container {
  width: calc(100% + 80px);
  margin-left: -40px;
  margin-right: -40px;
  padding: 20px 40px;
  margin-top: 40px;
  gap: 12px;
  flex-direction: column;
  display: flex;
}

.contacts-accordion-item {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contacts-accordion-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.contacts-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Градиенты для каждого блока */
.contacts-accordion-item[data-service="tour"] .contacts-accordion-header {
  background: linear-gradient(-10deg, #c3bf51 0%, #685F2A 100%);
}

.contacts-accordion-item[data-service="tasting"] .contacts-accordion-header {
  background: linear-gradient(135deg, #ffd700 0%, #c91f2b 100%);
}

.contacts-accordion-item[data-service="teambuilding"] .contacts-accordion-header {
  background: linear-gradient(274deg, #ff8200 0%, #8e2304 100%);
}

.contacts-accordion-title {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  margin: 0;
  flex: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contacts-accordion-icon {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 24px;
  height: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.contacts-accordion-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
  font-weight: 100;
  font-size: 18px;
}

.contacts-accordion-item.active .contacts-accordion-icon span {
  opacity: 0;
  visibility: hidden;
}

.contacts-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
  background: transparent;
  opacity: 0;
  visibility: hidden;
}

.contacts-accordion-item.active .contacts-accordion-content {
  max-height: 600px;
  padding: 25px 30px;
  opacity: 1;
  visibility: visible;
}

.contacts-accordion-description {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.8;
  margin: 0;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Десктопные стили */
@media (min-width: 769px) {
  .contacts-accordion-container {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0px;
    margin-bottom: 40px;
    padding: 0;
  }

  .contacts-accordion-item {
    margin-bottom: 20px;
  }
}

/* Фотографии на странице истории */
.history-photo {
  width: 200px;
  height: auto;
  border: 8px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  margin: 15px;
  transition: transform 0.2s ease;
}

/* На десктопе картинки только увеличиваются при hover */
@media (min-width: 769px) {
  .history-photo:hover {
    transform: scale(1.40);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  }
}

/* Модальное окно для увеличенных изображений */
.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
}

.image-modal.active {
  display: flex;
}

.image-modal-content {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.image-modal-close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: #fff;
  font-size: 50px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.3s ease;
}

.image-modal-close:hover {
  color: #bbb;
}

.history-photo-1 {
  float: left;
  margin-left: -50px;
  transform: rotate(-5deg);
}

.history-photo-2 {
  float: right;
  margin-right: -50px;
  transform: rotate(-5deg);
}

.history-photo-3 {
  float: left;
  margin-top: 95px;
  margin-left: -175px;
  transform: rotate(4deg);
}

.history-photo-4 {
  float: right;
  margin-right: -40px;
  transform: rotate(0deg);
}

.history-photo-5 {
  float: left;
  margin-top: 7px;
  margin-left: -50px;
  transform: rotate(3deg);
}

.wine-photo-1 {
  float: left;
  margin-top: -7px;
  margin-left: -50px;
  margin-right: 20px;
  margin-bottom: 20px;
  transform: rotate(-5deg);
}

.wine-photo-2 {
  float: right;
  margin-right: -50px;
  margin-left: 20px;
  margin-bottom: 20px;
  transform: rotate(7deg);
}

.wine-photo-3 {
  float: left;
  margin-top: 7px;
  margin-left: 17px;
  margin-right: 35px;
  margin-bottom: 35px;
  transform: rotate(0deg);
}

.contacts-photo-1 {
  float: left;
  margin-left: -50px;
  transform: rotate(-5deg);
  position: relative;
  top: -22px;
}

.contacts-photo-2 {
  float: right;
  transform: rotate(2deg);
  margin-top: 6px;
  margin-right: -27px;
  transform: rotate(7deg);
}

.contacts-photo-3 {
  float: left;
  margin-top: -35px;
  margin-left: 8px;
  transform: rotate(4deg);
}

/* Стили для страниц контента (history, wine, contacts) */
.content.page-content {
  padding-top: 100px;
  align-items: flex-start;
}

.content.page-content .card {
  margin-top: 40px;
}

.top-left-container {
  position: fixed;
  top: -60px;
  left: 0;
  z-index: 25;
  padding: 20px;
}

.top-left-wrapper {
  position: relative;
}

.top-left-image {
  width: 105px;
  height: auto;
  max-width: 200px;
  max-height: 200px;
  display: block;
}

.top-left-wrapper a {
  display: block;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.top-left-wrapper a:hover {
  opacity: 0.8;
}

.santa-hat {
  display: none;
  position: absolute;
  top: 144px;
  right: -799px;
  width: 50px;
  height: auto;
  z-index: 11;
  transform: rotate(15deg);
}

.top-left-text {
  display: none;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  font-size: 10px;
  line-height: 1.2;
  text-align: center;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-weight: 400;
  width: calc(100% - 2px);
  max-width: 180px;
  padding: 4px 10px 10px 10px;
    background: black;
  backdrop-filter: blur(4px);
  border-radius: 4px;
}

.background {
  position: fixed;
  inset: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.background::before {
  content: "";
  position: absolute;
  inset: -6%; /* hide blur edges */
  background-image: url("images/image1.png");
  background-size: cover; /* fill screen */
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(7px);
  opacity: 0.9;
  z-index: -2;
}

.background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(var(--backdrop-darken), var(--backdrop-darken));
  z-index: -1;
}

.content {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  z-index: 1;
}

.logo-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 8vh;
}

.logo-wrapper {
  position: relative;
  display: inline-block;
}

/* Фотографии вокруг логотипа - только для десктопа */
@media (min-width: 769px) {
  .photo-pin {
    position: absolute;
    transition: transform 0.3s ease;
    cursor: pointer;
    z-index: 1;
  }

  .around-logo-photo {
    width: 110px;
    height: auto;
    display: block;
    border: 6px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  }

  /* Головка булавки */
  .photo-pin::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    background: 
      radial-gradient(circle at 35% 35%, 
        rgba(255, 255, 255, 0.8) 0%, 
        rgba(255, 255, 255, 0) 50%),
      radial-gradient(circle at 50% 50%, 
        #ff5252 0%, 
        #d32f2f 60%, 
        #b71c1c 100%);
    border-radius: 50%;
    box-shadow: 
      0 3px 6px rgba(0, 0, 0, 0.5),
      inset -3px -3px 6px rgba(0, 0, 0, 0.4),
      inset 3px 3px 6px rgba(255, 255, 255, 0.5),
      0 1px 2px rgba(255, 255, 255, 0.3) inset;
    z-index: 10;
  }

  /* Иголка/стержень булавки */
  .photo-pin::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 8px;
    background: linear-gradient(to bottom, 
      #999 0%, 
      #666 50%, 
      #444 100%);
    box-shadow: 
      1px 0 1px rgba(255, 255, 255, 0.3),
      -1px 0 1px rgba(0, 0, 0, 0.5);
    z-index: 9;
  }

  .photo-pin:hover {
    z-index: 10;
  }

  .photo-pin:hover .around-logo-photo {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  }

  .photo-pin.photo-1:hover { transform: scale(1.40) rotate(-15deg); }
  .photo-pin.photo-2:hover { transform: scale(1.40) rotate(8deg); }
  .photo-pin.photo-3:hover { transform: scale(1.40) rotate(-12deg); }
  .photo-pin.photo-4:hover { transform: scale(1.40) rotate(6deg); }
  .photo-pin.photo-5:hover { transform: scale(1.40) rotate(-9deg); }
  .photo-pin.photo-6:hover { transform: scale(1.40) rotate(13deg); }
  .photo-pin.photo-7:hover { transform: scale(1.40) rotate(14deg); }
  .photo-pin.photo-8:hover { transform: scale(1.40) rotate(-7deg); }
  .photo-pin.photo-9:hover { transform: scale(1.40) rotate(11deg); }
  .photo-pin.photo-10:hover { transform: scale(1.40) rotate(-10deg); }
  .photo-pin.photo-11:hover { transform: scale(1.40) rotate(9deg); }
  .photo-pin.photo-12:hover { transform: scale(1.40) rotate(-13deg); }

  /* Позиции и углы наклона - хаотичное расположение как на доске */
  /* Левая сторона */
  .photo-pin.photo-1 {
    top: 20px;
    left: -215px;
    transform: rotate(-6deg);
  }

  .photo-pin.photo-2 {
    top: 140px;
    left: -285px;
    transform: rotate(8deg);
  }

  .photo-pin.photo-3 {
    top: 270px;
    left: -235px;
    transform: rotate(-12deg);
  }

  .photo-pin.photo-4 {
    top: 423px;
    left: -305px;
    transform: rotate(6deg);
  }

  .photo-pin.photo-5 {
    top: 540px;
    left: -225px;
    transform: rotate(-9deg);
  }

  .photo-pin.photo-6 {
    top: 550px;
    left: -275px;
    transform: rotate(-4deg);
  }

  /* Правая сторона */
  .photo-pin.photo-7 {
    top: 40px;
    right: -245px;
    transform: rotate(14deg);
  }

  .photo-pin.photo-8 {
    top: 160px;
    right: -295px;
    transform: rotate(-7deg);
  }

  .photo-pin.photo-9 {
    top: 300px;
    right: -225px;
    transform: rotate(11deg);
  }

  .photo-pin.photo-10 {
    top: 420px;
    right: -285px;
    transform: rotate(-10deg);
  }

  .photo-pin.photo-11 {
    top: 550px;
    right: -235px;
    transform: rotate(9deg);
  }

  .photo-pin.photo-12 {
    top: 582px;
    right: -265px;
    transform: rotate(2deg);
  }
}

.logo-text-banner {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  width: 100%;
}

.logo-banner-text {
  color: #ffffff;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(11px, 2.4vw, 22px);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 1.5px;
  text-align: center;
  line-height: 1.4;
  text-transform: lowercase;
  max-width: 100%;
  margin: 0 auto;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.3);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.logo-banner-title {
  font-size: 1.8em;
  text-transform: uppercase;
  font-weight: 800;
  display: block;
  margin-bottom: 20px;
}

.mobile-accordion-container {
  display: none;
}

.sparkle {
  position: absolute;
  width: 3px;
  height: 4px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
}

/* Разные оттенки золота и позиции */
.sparkle-1 {
  top: 8px;
  left: 15px;
  background: radial-gradient(circle, #ffd700 0%, #ffed4e 50%, transparent 70%);
  animation: sparkle1 2.5s ease-in-out infinite;
}

.sparkle-2 {
  top: 45px;
  left: 50px;
  background: radial-gradient(circle, #ffb347 0%, #ffd700 50%, transparent 70%);
  animation: sparkle2 3.2s ease-in-out infinite 0.3s;
}

.sparkle-3 {
  top: 85px;
  left: 97px;
  background: radial-gradient(circle, #ffd700 0%, #ffed4e 50%, transparent 70%);
  animation: sparkle3 2.8s ease-in-out infinite 0.6s;
}

.sparkle-4 {
  top: 125px;
  left: 8px;
  background: radial-gradient(circle, #ffed4e 0%, #ffd700 50%, transparent 70%);
  animation: sparkle4 3.5s ease-in-out infinite 0.9s;
}

.sparkle-5 {
  top: 165px;
  left: 41px;
  background: radial-gradient(circle, #ffb347 0%, #ffd700 50%, transparent 70%);
  animation: sparkle5 2.7s ease-in-out infinite 1.2s;
}

.sparkle-6 {
  top: 28px;
  right: 52px;
  background: radial-gradient(circle, #ffd700 0%, #ffed4e 50%, transparent 70%);
  animation: sparkle6 3.1s ease-in-out infinite 0.4s;
}

.sparkle-7 {
  top: 18px;
  right: 359px;
  background: radial-gradient(circle, #ffed4e 0%, #ffd700 50%, transparent 70%);
  animation: sparkle7 2.9s ease-in-out infinite 0.7s;
}

.sparkle-8 {
  top: 95px;
  right: 19px;
  background: radial-gradient(circle, #ffb347 0%, #ffd700 50%, transparent 70%);
  animation: sparkle8 3.3s ease-in-out infinite 1s;
}

.sparkle-9 {
  top: 138px;
  right: 71px;
  background: radial-gradient(circle, #ffd700 0%, #ffed4e 50%, transparent 70%);
  animation: sparkle9 2.6s ease-in-out infinite 1.3s;
}

.sparkle-10 {
  top: 135px;
  left: 25px;
  background: radial-gradient(circle, #ffed4e 0%, #ffd700 50%, transparent 70%);
  animation: sparkle10 3.4s ease-in-out infinite 0.2s;
}

.sparkle-11 {
  top: 175px;
  left: 85px;
  background: radial-gradient(circle, #ffb347 0%, #ffd700 50%, transparent 70%);
  animation: sparkle11 2.8s ease-in-out infinite 0.5s;
}

.sparkle-12 {
  top: 150px;
  left: 145px;
  background: radial-gradient(circle, #ffd700 0%, #ffed4e 50%, transparent 70%);
  animation: sparkle12 3.2s ease-in-out infinite 0.8s;
}

.sparkle-13 {
  top: 201px;
  right: 35px;
  background: radial-gradient(circle, #ffed4e 0%, #ffd700 50%, transparent 70%);
  animation: sparkle13 2.9s ease-in-out infinite 1.1s;
}

.sparkle-14 {
  bottom: 279px;
  left: 47px;
  background: radial-gradient(circle, #ffb347 0%, #ffd700 50%, transparent 70%);
  animation: sparkle14 3.1s ease-in-out infinite 0.3s;
}

.sparkle-15 {
  bottom: 279px;
  left: 104px;
  background: radial-gradient(circle, #ffd700 0%, #ffed4e 50%, transparent 70%);
  animation: sparkle15 2.7s ease-in-out infinite 0.6s;
}

.sparkle-16 {
  bottom: 261px;
  right: 165px;
  background: radial-gradient(circle, #ffed4e 0%, #ffd700 50%, transparent 70%);
  animation: sparkle16 3.3s ease-in-out infinite 0.9s;
}

/* Разные анимации для каждой точки */
@keyframes sparkle1 {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.3); }
}

@keyframes sparkle2 {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 0.9; transform: scale(1.4); }
}

@keyframes sparkle3 {
  0%, 100% { opacity: 0.2; transform: scale(0.7); }
  50% { opacity: 1; transform: scale(1.2); }
}

@keyframes sparkle4 {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.5); }
}

@keyframes sparkle5 {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.3); }
}

@keyframes sparkle6 {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 0.9; transform: scale(1.4); }
}

@keyframes sparkle7 {
  0%, 100% { opacity: 0.2; transform: scale(0.7); }
  50% { opacity: 1; transform: scale(1.2); }
}

@keyframes sparkle8 {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.5); }
}

@keyframes sparkle9 {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.3); }
}

@keyframes sparkle10 {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 0.9; transform: scale(1.4); }
}

@keyframes sparkle11 {
  0%, 100% { opacity: 0.2; transform: scale(0.7); }
  50% { opacity: 1; transform: scale(1.2); }
}

@keyframes sparkle12 {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.5); }
}

@keyframes sparkle13 {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.3); }
}

@keyframes sparkle14 {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 0.9; transform: scale(1.4); }
}

@keyframes sparkle15 {
  0%, 100% { opacity: 0.2; transform: scale(0.7); }
  50% { opacity: 1; transform: scale(1.2); }
}

@keyframes sparkle16 {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.5); }
}

.sparkle-17 {
  top: 12px;
  left: 221px;
  background: radial-gradient(circle, #ffed4e 0%, #ffd700 50%, transparent 70%);
  animation: sparkle17 3.1s ease-in-out infinite 0.2s;
}

.sparkle-18 {
  top: 35px;
  left: 321px;
  background: radial-gradient(circle, #ffb347 0%, #ffd700 50%, transparent 70%);
  animation: sparkle18 2.6s ease-in-out infinite 0.5s;
}

.sparkle-19 {
  top: 58px;
  left: 421px;
  background: radial-gradient(circle, #ffd700 0%, #ffed4e 50%, transparent 70%);
  animation: sparkle19 3.4s ease-in-out infinite 0.8s;
}

.sparkle-20 {
  top: 127px;
  left: 444px;
  background: radial-gradient(circle, #ffed4e 0%, #ffd700 50%, transparent 70%);
  animation: sparkle20 2.9s ease-in-out infinite 1.1s;
}

.sparkle-21 {
  top: 152px;
  right: -1px;
  background: radial-gradient(circle, #ffb347 0%, #ffd700 50%, transparent 70%);
  animation: sparkle21 3.2s ease-in-out infinite 0.3s;
}

.sparkle-22 {
  top: 68px;
  right: 99px;
  background: radial-gradient(circle, #ffd700 0%, #ffed4e 50%, transparent 70%);
  animation: sparkle22 2.7s ease-in-out infinite 0.6s;
}

.sparkle-23 {
  top: 110px;
  right: 159px;
  background: radial-gradient(circle, #ffed4e 0%, #ffd700 50%, transparent 70%);
  animation: sparkle23 3.3s ease-in-out infinite 0.9s;
}

.sparkle-24 {
  top: 199px;
  left: 35px;
  background: radial-gradient(circle, #ffb347 0%, #ffd700 50%, transparent 70%);
  animation: sparkle24 2.8s ease-in-out infinite 0.4s;
}

.sparkle-25 {
  top: 249px;
  left: 110px;
  background: radial-gradient(circle, #ffd700 0%, #ffed4e 50%, transparent 70%);
  animation: sparkle25 3.5s ease-in-out infinite 0.7s;
}

.sparkle-26 {
  bottom: 179px;
  left: 370px;
  background: radial-gradient(circle, #ffed4e 0%, #ffd700 50%, transparent 70%);
  animation: sparkle26 2.9s ease-in-out infinite 1s;
}

@keyframes sparkle17 {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.3); }
}

@keyframes sparkle18 {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 0.9; transform: scale(1.4); }
}

@keyframes sparkle19 {
  0%, 100% { opacity: 0.2; transform: scale(0.7); }
  50% { opacity: 1; transform: scale(1.2); }
}

@keyframes sparkle20 {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.5); }
}

@keyframes sparkle21 {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.3); }
}

@keyframes sparkle22 {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 0.9; transform: scale(1.4); }
}

@keyframes sparkle23 {
  0%, 100% { opacity: 0.2; transform: scale(0.7); }
  50% { opacity: 1; transform: scale(1.2); }
}

@keyframes sparkle24 {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.5); }
}

@keyframes sparkle25 {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.3); }
}

@keyframes sparkle26 {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 0.9; transform: scale(1.4); }
}

.logo {
  width: min(470px, 80vw);
  height: auto;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.55));
  border-radius: 20px;
  display: block;
  position: relative;
  z-index: 2;
}

/* Кнопки языков на логотипе - только для мобильных устройств */
@media (max-width: 768px) {
  .actions {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    width: calc(100% - 40px);
    max-width: min(520px, 80vw);
    z-index: 10;
  }
}

button {
  cursor: pointer;
  color: var(--text);
  background: var(--button-bg);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 16px;
  transition: background 0.2s ease, transform 0.06s ease, border-color 0.2s ease;
}

button:hover {
  background: var(--button-bg-hover);
}

button:active {
  transform: translateY(1px);
}

/* Скрываем мобильный контейнер на десктопе */
.mobile-bottom-right {
  display: none;
}

