/* ============================================================
   FOOTER
   ============================================================ */

.rt-footer {
  background: var(--ink-deep);
  color: rgba(251, 249, 255, 0.75);
  padding: 60px 0 0;
}

.rt-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(251, 249, 255, 0.10);
}

.rt-footer h3 {
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--paper);
  margin-bottom: 16px;
}

.rt-footer p, .rt-footer a { font-size: 13.5px; text-decoration: none; }
.rt-footer a { color: rgba(251, 249, 255, 0.65); }
.rt-footer a:hover { color: var(--gold); }

.rt-footer-form input,
.rt-footer-form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 10px;
  border-radius: 8px;
  border: 1px solid rgba(251, 249, 255, 0.18);
  background: rgba(251, 249, 255, 0.05);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 13.5px;
}

.rt-footer-form textarea { min-height: 90px; resize: vertical; }

.rt-footer-form input::placeholder,
.rt-footer-form textarea::placeholder { color: rgba(251, 249, 255, 0.35); }

.rt-social-icons { display: flex; gap: 12px; }

.rt-social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(251, 249, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.rt-social-icons a:hover { background: var(--gold); border-color: var(--gold); }
.rt-social-icons svg { width: 16px; height: 16px; color: rgba(251, 249, 255, 0.8); }
.rt-social-icons a:hover svg { color: #241505; }

.rt-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 0;
  font-size: 12.5px;
  color: rgba(251, 249, 255, 0.45);
}

.rt-footer-bottom a { color: rgba(251, 249, 255, 0.6); }

@media (max-width: 800px) {
  .rt-footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
