@import url("https://fonts.googleapis.com/css2?family=Schoolbell&display=swap");

.site-footer {
  background: rgba(180, 175, 168, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  margin: 0 24px 24px;
  color: #221604;
  padding: 80px 40px 32px;
  border-top: none;
}
.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.site-footer-top {
  text-align: center;
  padding-bottom: 0;
  margin-bottom: 60px;
}
.site-footer-logo {
  font-family: 'Schoolbell', cursive;
  font-size: 36px;
  color: #221604;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  letter-spacing: 0;
  text-transform: none;
}
.site-footer-tagline {
  font-size: 13px;
  letter-spacing: 0.15em;
  color: #593F28;
  text-transform: uppercase;
}
.site-footer-mid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 0.5px solid rgba(34, 22, 4, 0.2);
  padding-top: 48px;
  margin-bottom: 48px;
  gap: 48px;
}
.site-footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.site-footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px 16px;
  justify-content: start;
}
.site-footer-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #593F28;
  margin-bottom: 20px;
}
.site-footer-link {
  display: inline-block;
  font-size: 14px;
  color: #221604;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid #221604;
  padding: 12px 28px;
  background: transparent;
  transition: background 0.2s, color 0.2s;
}
.site-footer-link:hover { background: #221604; color: #EDE7DA; opacity: 1; }
.site-footer-waitlist {
  max-width: 400px;
  width: 100%;
}
.site-footer-sub {
  font-size: 13px;
  color: #593F28;
  margin-bottom: 20px;
  line-height: 1.6;
  letter-spacing: 0;
  text-transform: none;
}
.site-footer-form { display: flex; gap: 0; }
.site-footer-input {
  flex: 1;
  background: transparent;
  border: 0.5px solid rgba(34, 22, 4, 0.3);
  color: #221604;
  padding: 12px 16px;
  font-size: 13px;
  outline: none;
  border-radius: 0;
}
.site-footer-input::placeholder { color: rgba(34, 22, 4, 0.4); }
.site-footer-input:focus { border-color: rgba(34, 22, 4, 0.6); }
.site-footer-btn {
  background: #221604;
  color: #EDE7DA;
  border: none;
  padding: 12px 24px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
  border-radius: 0;
}
.site-footer-btn:hover { opacity: 0.8; }
.site-footer-bottom {
  border-top: 0.5px solid rgba(34, 22, 4, 0.15);
  padding-top: 24px;
  font-size: 11px;
  color: rgba(34, 22, 4, 0.5);
  letter-spacing: 0.08em;
  text-align: left;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .site-footer { margin: 0 12px 12px; padding: 56px 24px 24px; }
  .site-footer-mid { flex-direction: column; gap: 32px; }
  .site-footer-waitlist { max-width: 100%; }
}
@media (max-width: 480px) {
  .site-footer { padding: 40px 16px 20px; }
  .site-footer-logo { font-size: 28px; }
  .site-footer-links-grid { grid-template-columns: repeat(2, auto); gap: 8px 12px; }
}
