/**
 * contact.css
 * Стили страницы «Контакты»
 */

.vc-main {
  background: #F5F0EA;
  padding: 54px 40px;
  font-family: 'Raleway', sans-serif;
  color: #1A1A1A;
  box-sizing: border-box;
  border-top: 1px solid rgba(139, 115, 85, 0.15);
}

.vc-main__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.vc-main__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #8B7355;
  margin-bottom: 16px;
  display: block;
}

.vc-main__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  letter-spacing: 2px;
  line-height: 1.15;
  margin: 0 0 20px 0;
}

.vc-main__divider {
  width: 30px;
  height: 1px;
  background: #8B7355;
  margin-bottom: 24px;
}

.vc-main__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vc-main__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(139, 115, 85, 0.15);
}

.vc-main__item:first-child {
  border-top: 1px solid rgba(139, 115, 85, 0.15);
}

.vc-main__item-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 2px;
  color: #8B7355;
  flex-shrink: 0;
  padding-top: 2px;
  width: 20px;
}

.vc-main__item-key {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 5px;
  display: block;
}

.vc-main__item-val {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: #1A1A1A;
  line-height: 1.5;
}

.vc-main__item-val a {
  color: #1A1A1A !important;
  text-decoration: none !important;
  transition: color 0.3s;
}

.vc-main__item-val a:hover {
  color: #8B7355 !important;
}

.vc-main__note {
  margin-top: 28px;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.8;
  color: #888;
  letter-spacing: 0.3px;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

.vc-main__card {
  border: 1px solid rgba(139, 115, 85, 0.4);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;

  /* Фон: светлое фото + тёмно-золотой градиент поверх (обыгрываем светлоту фото,
     иначе светлый текст карточки утонет). Путь относительный от assets/css/. */
  background-image:
    linear-gradient(135deg, rgba(26, 26, 26, 0.88) 0%, rgba(26, 26, 26, 0.74) 45%, rgba(139, 115, 85, 0.55) 100%),
    url('../img/contact/contact-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.vc-main__card::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(245, 240, 234, 0.25);
  pointer-events: none;
}

.vc-main__card-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #C9AF8E; /* посветлее обычного золота — на тёмном фото читается лучше */
  margin-bottom: 14px;
  display: block;
  position: relative;
}

.vc-main__card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 1.5px;
  margin: 0 0 12px 0;
  line-height: 1.2;
  color: #F5F0EA;
  position: relative;
}

.vc-main__card-divider {
  width: 24px;
  height: 1px;
  background: #8B7355;
  margin-bottom: 20px;
  position: relative;
}

.vc-main__card-text {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(245, 240, 234, 0.8);
  margin: 0 0 36px 0;
  letter-spacing: 0.3px;
  position: relative;
}

.vc-main__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px 24px;
  background: #F5F0EA;
  color: #1A1A1A !important;
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none !important;
  border: 1px solid #F5F0EA;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  cursor: pointer;
  box-sizing: border-box;
  margin-bottom: 12px;
  position: relative;
}

.vc-main__btn svg path {
  stroke: #1A1A1A !important;
  transition: stroke 0.3s;
}

.vc-main__btn:hover {
  background: transparent;
  color: #F5F0EA !important;
  border-color: #F5F0EA;
}

.vc-main__btn:hover svg path {
  stroke: #F5F0EA !important;
}

.vc-main__btn--outline {
  background: transparent;
  color: #F5F0EA !important;
  border: 1px solid rgba(245, 240, 234, 0.45);
}

.vc-main__btn--outline:hover {
  border-color: #F5F0EA;
  background: rgba(245, 240, 234, 0.08);
}

.vc-main__card-hint {
  margin-top: 20px;
  font-size: 11px;
  font-weight: 300;
  color: rgba(245, 240, 234, 0.55);
  letter-spacing: 0.5px;
  text-align: center;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  position: relative;
}

@media (max-width: 860px) {
  .vc-main__container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .vc-main { padding: 40px 24px; }
}

@media (max-width: 480px) {
  .vc-main { padding: 32px 16px; }
  .vc-main__card { padding: 22px 18px; }
  .vc-main__title { font-size: 30px; }
}
