/* ===== БАЗОВЫЕ СТИЛИ ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.8;
  color: #d4cfc8;
  background: #12100f;
  background-image: radial-gradient(circle at 10% 20%, #1e1b19 0%, #0c0b0a 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img, video { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gold { color: #b8955c; }

h1, h2, h3, .serif {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}
h3 {
  font-size: clamp(28px, 3.5vw, 38px);
  line-height: 1.1;
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 700;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== ШАПКА ===== */
.header {
  position: relative;
  z-index: 2;
  padding: 40px 0 20px 0;
  border-bottom: 1px solid rgba(184, 149, 92, 0.15);
  background: rgba(18, 16, 15, 0.85);
  backdrop-filter: blur(8px);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 20px;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
  flex: 1 1 auto;
  min-width: 200px;
}
.logo span { color: #b8955c; font-weight: 400; }

/* ===== КНОПКА СВЯЗАТЬСЯ ===== */
.btn-contact {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 28px;
  border-radius: 40px;
  cursor: pointer;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  transition: none;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.12), 0 0 60px rgba(255, 255, 255, 0.06), 0 0 100px rgba(255, 255, 255, 0.03), inset 0 0 30px rgba(255, 255, 255, 0.02);
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
  animation: shakeDesktop 0.8s ease-in-out infinite;
}
.btn-contact svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.25));
}
.btn-contact .btn-text { display: inline; }
.btn-contact:hover,
.btn-contact:focus,
.btn-contact:active {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  transform: none;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.12), 0 0 60px rgba(255, 255, 255, 0.06), 0 0 100px rgba(255, 255, 255, 0.03), inset 0 0 30px rgba(255, 255, 255, 0.02);
}

@keyframes shakeDesktop {
  0% { transform: rotate(0deg); }
  20% { transform: rotate(1.5deg); }
  40% { transform: rotate(-1.5deg); }
  60% { transform: rotate(1deg); }
  80% { transform: rotate(-1deg); }
  100% { transform: rotate(0deg); }
}

/* ===== МОБИЛЬНАЯ КНОПКА ===== */
@media (max-width: 768px) {
  .header { padding: 20px 0 16px 0; }
  .header .container { flex-wrap: wrap; gap: 12px 10px; }
  .logo { font-size: 26px; min-width: 160px; flex: 1 1 60%; }
  .btn-contact {
    padding: 14px 18px;
    border-radius: 50%;
    min-width: 78px;
    min-height: 78px;
    justify-content: center;
    flex: 0 0 auto;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.2), 0 0 80px rgba(255, 255, 255, 0.1), 0 0 120px rgba(255, 255, 255, 0.05), inset 0 0 40px rgba(255, 255, 255, 0.04);
    animation: shakeMobile 0.6s ease-in-out infinite;
  }
  .btn-contact .btn-text { display: none; }
  .btn-contact svg { width: 32px; height: 32px; filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.4)); }

  @keyframes shakeMobile {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(4deg); }
    20% { transform: rotate(-4deg); }
    30% { transform: rotate(3deg); }
    40% { transform: rotate(-3deg); }
    50% { transform: rotate(2deg); }
    60% { transform: rotate(-2deg); }
    70% { transform: rotate(1deg); }
    80% { transform: rotate(-1deg); }
    90% { transform: rotate(0.5deg); }
    100% { transform: rotate(0deg); }
  }
}

@media (max-width: 480px) {
  .logo { font-size: 20px; min-width: 120px; flex: 1 1 50%; }
  .btn-contact {
    min-width: 68px;
    min-height: 68px;
    padding: 10px 14px;
  }
  .btn-contact svg { width: 28px; height: 28px; }
}

/* ===== ТОНКАЯ ЗОЛОТАЯ ВОЛНА ===== */
.wave-wrapper {
  position: relative;
  z-index: 2;
  background: transparent;
  width: 100%;
  height: 60px;
  overflow: visible;
  margin: 0 0 10px 0;
}
#waveCanvas {
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
}

@media (max-width: 768px) {
  .wave-wrapper { height: 45px; margin: 0 0 8px 0; }
}
@media (max-width: 480px) {
  .wave-wrapper { height: 35px; margin: 0 0 5px 0; }
}

/* ===== КАРТОЧКИ ===== */
.cards-section {
  position: relative;
  z-index: 2;
  padding: 80px 0 80px 0;
}
.section-ornament {
  text-align: center;
  font-size: 28px;
  color: #b8955c;
  opacity: 0.5;
  letter-spacing: 12px;
  margin-bottom: 12px;
  font-family: serif;
}
.section-title {
  text-align: center;
  font-size: clamp(34px, 5vw, 56px);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
}
.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #8a7e6e;
  max-width: 600px;
  margin: 0 auto 8px auto;
  font-weight: 300;
  letter-spacing: 0.5px;
}
.section-trust {
  text-align: center;
  font-size: 15px;
  color: #b8955c;
  max-width: 600px;
  margin: 0 auto 20px auto;
  font-weight: 400;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.section-trust .check { font-size: 18px; }
.section-trust .highlight { color: #d4cfc8; font-weight: 300; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.service-card {
  background: rgba(22, 20, 18, 0.8);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7);
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #b8955c 50%, transparent 100%);
  opacity: 0;
  transition: 0.5s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  transform: translateY(-8px);
  background: rgba(30, 27, 24, 0.95);
  border-color: rgba(184, 149, 92, 0.2);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.9);
}
.service-card .image-wrap {
  position: relative;
  overflow: hidden;
  height: 340px;
  flex-shrink: 0;
  background: #1a1715;
}
.service-card .image-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s ease;
}
.service-card .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s ease;
}
.service-card:hover .image-wrap video,
.service-card:hover .image-wrap img { transform: scale(1.05); }
.service-card .image-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(0deg, rgba(12, 11, 10, 0.8) 0%, transparent 100%);
  pointer-events: none;
}
.service-card .card-body {
  padding: 28px 32px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}
.service-card .card-body .desc {
  color: #bcb4aa;
  font-size: 16px;
  line-height: 1.8;
  flex: 1;
  margin-top: 4px;
  font-weight: 300;
}
.service-card .card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.service-card .card-footer .meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: #8a7e6e;
  letter-spacing: 0.3px;
}
.service-card .card-footer .meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-card .card-footer .meta .time {
  color: #c8c0b8;
}

/* ===== БЛОК-ССЫЛКА НА ЦЕНЫ ===== */
.price-link-card .card-body {
  align-items: flex-start;
  text-align: left;
}
.price-link-card .desc {
  max-width: 400px;
  margin: 0 0 16px 0;
}
.price-link-btn {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  background: rgba(184, 149, 92, 0.12);
  border: 1px solid rgba(184, 149, 92, 0.2);
  padding: 14px 40px;
  border-radius: 40px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 0 30px rgba(184, 149, 92, 0.06);
}
.price-link-btn:hover {
  background: rgba(184, 149, 92, 0.2);
  border-color: rgba(184, 149, 92, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184, 149, 92, 0.15);
}
.price-link-btn:active { transform: scale(0.97); }
.price-link-btn .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.price-link-btn:hover .arrow { transform: translateX(4px); }

/* ===== ТАБЛИЦА ЦЕН ===== */
.prices-section {
  padding: 60px 0 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.prices-section .section-title { margin-bottom: 8px; }
.prices-section .section-subtitle { margin-bottom: 40px; }
.prices-table-wrap {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(22, 20, 18, 0.6);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
.prices-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  min-width: 480px;
}
.prices-table-wrap thead tr {
  background: rgba(184, 149, 92, 0.08);
  border-bottom: 1px solid rgba(184, 149, 92, 0.1);
}
.prices-table-wrap th {
  padding: 16px 24px;
  text-align: left;
  font-weight: 600;
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.prices-table-wrap td {
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  color: #bcb4aa;
  white-space: nowrap;
}
.prices-table-wrap tr:last-child td { border-bottom: none; }
.prices-table-wrap .price-col {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 20px;
  color: #b8955c;
  white-space: nowrap;
}
.prices-table-wrap .note-row td {
  color: #c8c0b8;
  font-size: 14px;
  font-style: italic;
  padding-top: 18px;
  padding-bottom: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  white-space: normal;
  line-height: 1.5;
  font-weight: 400;
}
.prices-date {
  text-align: center;
  font-size: 13px;
  color: #6a5f52;
  margin-top: 14px;
}

/* ===== БЛОК "МЫ РАБОТАЕМ БЕЗ ПОСРЕДНИКОВ" ===== */
.trust-block {
  max-width: 800px;
  margin: 30px auto 0 auto;
  padding: 28px 32px;
  background: rgba(22, 20, 18, 0.6);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  border-left: 3px solid #b8955c;
  text-align: left;
}
.trust-block p {
  font-size: 16px;
  line-height: 1.8;
  color: #bcb4aa;
}
.trust-block .highlight-text {
  color: #b8955c;
  font-weight: 500;
}
@media (max-width: 768px) {
  .trust-block { padding: 20px 24px; margin-top: 20px; }
  .trust-block p { font-size: 15px; }
}
@media (max-width: 480px) {
  .trust-block { padding: 16px 18px; margin-top: 16px; }
  .trust-block p { font-size: 14px; }
}

/* ===== МУЗЫКАЛЬНЫЙ ПЛЕЕР ===== */
.music-section {
  padding: 60px 0 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}
.music-card-player {
  background: rgba(22, 20, 18, 0.8);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 20px 24px 24px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  border-top: 3px solid transparent;
}
.music-card-player:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-top-color: #b8955c;
}
.music-card-player h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}
.music-card-player .subtitle {
  font-size: 13px;
  color: #8a7e6e;
  margin-bottom: 8px;
  font-style: italic;
}
.music-card-player .desc {
  font-size: 14px;
  line-height: 1.6;
  color: #bcb4aa;
  margin-bottom: 12px;
  flex-grow: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 12px;
}
.music-card-player audio {
  width: 100%;
  height: 40px;
  border-radius: 20px;
  outline: none;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 6px;
}
.music-card-player audio::-webkit-media-controls-panel {
  background: rgba(255, 255, 255, 0.05);
  padding: 0 8px;
}
.music-card-player .card-footer {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.music-card-player .download-link {
  font-size: 13px;
  color: #8a7e6e;
  transition: 0.2s;
}
.music-card-player .download-link:hover {
  color: #b8955c;
}

/* ===== ИНФОРМАЦИОННЫЙ БЛОК ===== */
.music-info-card {
  background: rgba(22, 20, 18, 0.8);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 30px 28px 28px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 3px solid #b8955c;
  text-align: center;
  min-height: 280px;
}
.music-info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.music-info-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}
.music-info-card .desc {
  font-size: 15px;
  line-height: 1.7;
  color: #bcb4aa;
}
.music-info-card .desc .highlight {
  color: #b8955c;
  font-weight: 400;
}

/* ===== БЛОК ЗАКАЗАТЬ ОРКЕСТР ===== */
.order-section {
  padding: 60px 0 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.order-content {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(22, 20, 18, 0.6);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 40px 48px;
}
.order-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #bcb4aa;
  margin-bottom: 18px;
}
.order-content p:last-of-type {
  margin-bottom: 0;
}
.order-content .highlight-text {
  color: #b8955c;
  font-weight: 500;
}
.order-content .order-btn-wrap {
  margin-top: 28px;
  text-align: center;
}
.order-btn {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  background: rgba(184, 149, 92, 0.12);
  border: 1px solid rgba(184, 149, 92, 0.25);
  padding: 14px 48px;
  border-radius: 40px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-block;
}
.order-btn:hover {
  background: rgba(184, 149, 92, 0.25);
  border-color: rgba(184, 149, 92, 0.4);
  transform: translateY(-2px);
}
.order-btn:active { transform: scale(0.97); }

/* ===== АДАПТИВ ===== */
@media (max-width: 1024px) {
  .services-grid { gap: 30px; }
  .service-card .image-wrap { height: 280px; }
  .service-card .card-body { padding: 24px 24px 28px; }
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 540px;
  }
  .service-card .image-wrap { height: 260px; }
  .service-card .card-body { padding: 22px 22px 26px; }
  .section-title { font-size: 34px; }
  .section-subtitle { font-size: 16px; margin-bottom: 6px; }
  .section-trust { font-size: 14px; margin-bottom: 20px; flex-wrap: wrap; }
  .cards-section { padding: 50px 0 50px 0; }
  .prices-section { padding: 40px 0 30px 0; }
  .music-section { padding: 40px 0 40px 0; }
  .order-section { padding: 40px 0 60px 0; }
  .order-content { padding: 28px 24px; }
  .order-content p { font-size: 15px; }
  .music-grid { grid-template-columns: 1fr; max-width: 540px; }
  .price-link-btn { font-size: 15px; padding: 12px 28px; }
  .music-info-card { min-height: 200px; padding: 24px 20px; }
  .music-info-card h4 { font-size: 19px; }
  .music-info-card .desc { font-size: 14px; }
}
@media (max-width: 480px) {
  .service-card .image-wrap { height: 220px; }
  .service-card .card-body { padding: 18px 18px 22px; }
  .service-card .card-body .desc { font-size: 15px; }
  .service-card .card-footer { flex-direction: column; align-items: flex-start; gap: 10px; }
  .section-trust { font-size: 13px; }
  .order-content { padding: 20px 16px; }
  .order-content p { font-size: 14px; }
  .order-btn { font-size: 15px; padding: 12px 32px; width: 100%; text-align: center; }
  .music-card-player { padding: 16px 18px 20px; }
  .music-card-player h4 { font-size: 18px; }
  .prices-table-wrap table { font-size: 13px; min-width: 360px; }
  .prices-table-wrap th,
  .prices-table-wrap td { padding: 10px 10px; }
  .prices-table-wrap .price-col { font-size: 15px; }
  .prices-table-wrap .note-row td { font-size: 12px; padding: 12px 10px; }
  .price-link-btn { font-size: 14px; padding: 10px 22px; }
  .music-info-card { min-height: 160px; padding: 18px 16px; }
  .music-info-card h4 { font-size: 17px; }
  .music-info-card .desc { font-size: 13px; }
}

/* ===== ФУТЕР ===== */
.footer {
  position: relative;
  z-index: 2;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  text-align: center;
  font-size: 14px;
  color: #5a5046;
  letter-spacing: 0.5px;
}
.footer .gold { color: #7a6b58; }

/* ===== КНОПКА НАВЕРХ ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(184, 149, 92, 0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(184, 149, 92, 0.25);
  color: #b8955c;
  font-size: 24px;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 30px rgba(184, 149, 92, 0.15);
  transform: translateY(20px) scale(0.8);
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 0 30px rgba(184, 149, 92, 0.2);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.back-to-top:active {
  transform: scale(0.92);
  background: rgba(184, 149, 92, 0.25);
}
@media (max-width: 768px) {
  .back-to-top {
    bottom: 24px;
    right: 18px;
    width: 52px;
    height: 52px;
    font-size: 22px;
    background: rgba(184, 149, 92, 0.2);
    border-color: rgba(184, 149, 92, 0.3);
    box-shadow: 0 4px 30px rgba(184, 149, 92, 0.25);
  }
}
@media (max-width: 480px) {
  .back-to-top {
    bottom: 18px;
    right: 14px;
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}

/* ===== МОДАЛКА ===== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}
.modal-overlay.active { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-window {
  background: #1a1715;
  border: 1px solid rgba(184, 149, 92, 0.15);
  border-radius: 24px;
  padding: 48px 40px 40px;
  max-width: 440px;
  width: 90%;
  position: relative;
  box-shadow: 0 60px 120px rgba(0, 0, 0, 0.9);
  animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  color: #6a5f52;
  font-size: 28px;
  cursor: pointer;
  transition: 0.3s;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 8px;
}
.modal-close:hover { color: #b8955c; background: rgba(184, 149, 92, 0.08); }
.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.modal-sub {
  font-size: 15px;
  color: #8a7e6e;
  margin-bottom: 32px;
  font-weight: 300;
}
.modal-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 149, 92, 0.2), transparent);
  margin: 12px 0 24px 0;
}
.contact-list { display: flex; flex-direction: column; gap: 14px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: 0.3s ease;
  color: #d4cfc8;
  font-weight: 500;
  font-size: 17px;
}
.contact-item:hover {
  background: rgba(184, 149, 92, 0.08);
  border-color: rgba(184, 149, 92, 0.2);
  transform: translateX(4px);
}
.contact-item .icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(184, 149, 92, 0.1);
  border: 1px solid rgba(184, 149, 92, 0.1);
}
.contact-item .icon-wrap svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #b8955c;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-item .contact-label { flex: 1; }
.contact-item .contact-label small {
  display: block;
  font-size: 12px;
  font-weight: 300;
  color: #6a5f52;
  margin-top: 2px;
}
.contact-item .contact-arrow {
  color: #6a5f52;
  font-size: 18px;
  transition: 0.3s;
}
.contact-item:hover .contact-arrow { color: #b8955c; transform: translateX(4px); }

/* ===== СТИЛИ ДЛЯ КОНТАКТОВ ===== */
.contact-item.max .icon-wrap {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(123, 104, 238, 0.15), rgba(139, 0, 255, 0.15));
  border-color: rgba(123, 104, 238, 0.2);
}
.contact-item.max .icon-wrap svg { stroke: #7B68EE; fill: #7B68EE; }
.contact-item.max:hover { border-color: rgba(123, 104, 238, 0.3); }

.contact-item.tg .icon-wrap {
  background: rgba(0, 136, 204, 0.12);
  border-color: rgba(0, 136, 204, 0.15);
}
.contact-item.tg .icon-wrap svg { stroke: #0088cc; }
.contact-item.tg:hover { border-color: rgba(0, 136, 204, 0.25); }

.contact-item.wa .icon-wrap {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.15);
}
.contact-item.wa .icon-wrap svg { stroke: #25D366; fill: #25D366; }
.contact-item.wa:hover { border-color: rgba(37, 211, 102, 0.25); }

.contact-item.phone .icon-wrap {
  background: rgba(184, 149, 92, 0.12);
  border-color: rgba(184, 149, 92, 0.15);
}
.contact-item.phone .icon-wrap svg { stroke: #b8955c; }

@media (max-width: 480px) {
  .modal-window { padding: 32px 20px 28px; }
  .modal-title { font-size: 26px; }
  .contact-item { font-size: 15px; padding: 14px 16px; }
  .contact-item .icon-wrap { width: 38px; height: 38px; }
  .contact-item .icon-wrap svg { width: 18px; height: 18px; }
}