section[tog="contact"] {
  background: #1e1e2f;
  padding: 4rem 2rem;
}
section[tog="contact"] .content_wrapper {
  max-width: 1100px;
  margin: 0 auto;
}
section[tog="contact"] .contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
@media screen and (max-width: 767px) {
  section[tog="contact"] .contact__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
section[tog="contact"] .contact__channels {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
section[tog="contact"] .contact__card {
  background: #25253a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 1.5rem 1.75rem;
}
section[tog="contact"] .contact__card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}
section[tog="contact"] .contact__card p {
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  color: rgba(245,245,247,0.7);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 1rem 0;
}
section[tog="contact"] .contact__card a.tog__btn {
  text-decoration: none;
}
section[tog="contact"] .contact__form {
  background: #25253a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
section[tog="contact"] .contact__form h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}
section[tog="contact"] .contact__form label {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(245,245,247,0.7);
  margin-top: 0.5rem;
}
section[tog="contact"] .contact__form input,
section[tog="contact"] .contact__form textarea {
  background: rgba(255,255,255,0.04);
  color: #f5f5f7;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 0.7rem 0.9rem;
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  font-size: 0.95rem;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.15s ease;
}
section[tog="contact"] .contact__form input:focus,
section[tog="contact"] .contact__form textarea:focus {
  border-color: #3a86ff;
  box-shadow: 0 0 24px rgba(58,134,255,0.25);
}
section[tog="contact"] .contact__form textarea {
  resize: vertical;
  min-height: 120px;
}
section[tog="contact"] .contact__form button[type="submit"] {
  margin-top: 1rem;
  align-self: flex-start;
}
section[tog="contact"] .contact__form .form__note {
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  color: rgba(245,245,247,0.7);
  font-size: 0.85rem;
  margin: 0.5rem 0 0 0;
}
