/* ═══════════════════════════════════
   CONTACT + FOOTER
═══════════════════════════════════ */
.contact-sec {
  min-height: 100vh;
  min-height: 100dvh;
  padding: 5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: url('/static/img/cta.png') center center / cover no-repeat;
  background-attachment: fixed;
}

.ct-inner {
  text-align: center;
  padding: 2.5rem 3rem;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, .55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .7);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
  max-width: 540px;
  width: 90%;
}

.ct-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #1a3a22;
  margin-bottom: .7rem;
  justify-content: center;
}
.ct-tag::before {
  content: '';
  width: 18px;
  height: 1.5px;
  background: #2e7a40;
  border-radius: 2px;
}

.ct-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #0d2414;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.ct-h em {
  font-style: italic;
  color: #1a5a28;
}

/* Подсказка */
.ct-hint {
  background: rgba(255, 255, 255, .6);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
  text-align: left;
  border: 1px solid rgba(46, 122, 64, .12);
}
.ct-hint-title {
  font-size: .78rem;
  font-weight: 700;
  color: #1a3a22;
  margin-bottom: .5rem;
  letter-spacing: .04em;
}
.ct-hint-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.ct-hint-list li {
  font-size: .82rem;
  color: #2a4a32;
  padding-left: 1.1rem;
  position: relative;
}
.ct-hint-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #2e7a40;
  font-size: .75rem;
}

/* Кнопки контактов */
.ct-contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
}
/* Телефон — на всю ширину, первым */
.ct-contacts .ct-btn:first-child {
  grid-column: 1 / -1;
}
.ct-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1rem;
  background: rgba(255, 255, 255, .7);
  border: 1.5px solid rgba(46, 122, 64, .2);
  border-radius: 14px;
  text-decoration: none;
  color: #0d2414;
  font-weight: 600;
  font-size: .9rem;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.ct-btn:hover {
  background: rgba(255, 255, 255, .92);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .1);
}
.ct-btn-icon {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

/* Footer */
footer {
  background: #0D3D1A;
  padding: .9rem 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  color: rgba(220, 245, 225, .7);
  font-size: .76rem;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: rgba(220, 245, 225, .95);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  color: rgba(220, 245, 225, .7);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover {
  color: rgba(220, 245, 225, 1);
}
