/* ============================================================
   RASHMÉ — Footer
   ============================================================ */

.footer {
  background: var(--black);
  color: var(--beige);
  padding: 5rem 0 2.5rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(245,240,232,0.1);
}

.footer__logo-img {
  height: 64px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
  filter: invert(1) opacity(0.85);
}

.footer__tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(245,240,232,0.45);
  margin-bottom: 1.25rem;
}

.footer__about {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.4);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Social */
.footer__social { display: flex; gap: 1rem; }

.footer__social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(245,240,232,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,240,232,0.5);
  transition: all var(--transition-fast);
}
.footer__social-link:hover {
  border-color: var(--beige);
  color: var(--beige);
}
.footer__social-link svg { width:15px; height:15px; fill:currentColor; }

/* Nav columns */
.footer__col h4 {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
  margin-bottom: 1.5rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__col a {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.55);
  transition: color var(--transition-fast);
}
.footer__col a:hover { color: var(--beige); }

/* Newsletter */
.footer__newsletter-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
  margin-bottom: 1.25rem;
  display: block;
}
.footer__newsletter-desc {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.4);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer__form {
  display: flex;
  border-bottom: 1px solid rgba(245,240,232,0.25);
  transition: border-color var(--transition-fast);
}
.footer__form:focus-within { border-color: var(--beige); }
.footer__form input {
  flex: 1;
  padding: 0.6rem 0;
  font-size: 0.82rem;
  color: var(--beige);
  background: transparent;
}
.footer__form input::placeholder { color: rgba(245,240,232,0.25); }
.footer__form button {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.55);
  transition: color var(--transition-fast);
  padding: 0.6rem 0 0.6rem 1rem;
}
.footer__form button:hover { color: var(--beige); }

/* Bottom */
.footer__bottom {
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy { font-size: 0.75rem; color: rgba(245,240,232,0.25); }
.footer__bottom-links { display: flex; gap: 2rem; }
.footer__bottom-links a {
  font-size: 0.72rem;
  color: rgba(245,240,232,0.25);
  transition: color var(--transition-fast);
}
.footer__bottom-links a:hover { color: rgba(245,240,232,0.6); }

.footer__founder-link {
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-bottom: 1.5px solid var(--red-light, #b52b2b);
  padding-bottom: 1px;
  transition: all var(--transition-fast);
}
.footer__founder-link:hover {
  color: var(--beige, #f5f0e8);
  border-bottom-color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.footer__dev-link {
  color: rgba(245, 240, 232, 0.35);
  font-weight: 400;
  font-size: 0.72rem;
  text-decoration: none;
  border-bottom: 1px dotted rgba(245, 240, 232, 0.2);
  transition: all var(--transition-fast);
}
.footer__dev-link:hover {
  color: rgba(245, 240, 232, 0.7);
  border-bottom-color: rgba(245, 240, 232, 0.4);
}

.footer__contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: rgba(245,240,232,0.6);
  text-decoration: none;
  margin-top: 0.75rem;
  transition: color var(--transition-fast);
}
.footer__contact-email:hover {
  color: #fff;
}
.footer__contact-email svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

@media (max-width: 1024px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
@media (max-width: 600px) {
  .footer__top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
