/* ============================================================
   footer-style.css — Strawberry Kale Footer
   ============================================================ */

.site-footer { background: var(--dark); color: rgba(255,255,255,0.6); }

/* ── Subscribe Bar ── */
.footer-subscribe {
  background: var(--blush);
  padding: 48px 40px; display: flex;
  align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.footer-subscribe__text { flex: 1; min-width: 200px; }
.footer-subscribe__label {
  font-family: 'Jost', sans-serif; font-size: 10px; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); margin-bottom: 6px;
}
.footer-subscribe__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 600;
  color: #fff; line-height: 1.2;
}
.footer-subscribe__form {
  display: flex; flex: 1; max-width: 420px; min-width: 260px;
}
.footer-subscribe__input {
  flex: 1; padding: 14px 18px; border: none;
  background: rgba(255,255,255,0.18); color: #fff;
  font-family: 'Lato', sans-serif; font-size: 14px; outline: none;
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transition: border-color 0.2s, background 0.2s;
}
.footer-subscribe__input::placeholder { color: rgba(255,255,255,0.55); }
.footer-subscribe__input:focus { background: rgba(255,255,255,0.26); border-color: #fff; }
.footer-subscribe__btn {
  padding: 14px 26px; background: var(--dark); color: #fff; border: none;
  font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s; white-space: nowrap;
}
.footer-subscribe__btn:hover { background: #1a0a08; }


/* ── Footer Body ── */
.footer-body {
  padding: 56px 40px 0; display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px; max-width: 1280px; margin: 0 auto; width: 100%;
}

/* Brand col */
.footer-col--brand .custom-logo { max-width: 180px; margin-bottom: 10px; }
.footer-col__brand-name {
  font-family: 'Cormorant Garamond', serif; font-size: 1.9rem;
  font-weight: 600; color: #fff; line-height: 1; margin-bottom: 6px;
}
.footer-col__brand-tag {
  font-family: 'Jost', sans-serif; font-size: 9px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--blush); margin-bottom: 18px;
}
.footer-col__about {
  font-size: 13.5px; line-height: 1.75;
  color: rgba(255,255,255,0.45); margin-bottom: 22px;
}

/* Social icons */
.footer-col__socials { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-social {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); transition: border-color 0.2s, color 0.2s;
}
.footer-social:hover { border-color: var(--blush); color: var(--blush); }
.footer-social svg { width: 15px; height: 15px; fill: currentColor; }

/* Link columns */
.footer-col__heading {
  font-family: 'Jost', sans-serif; font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 20px;
  padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col__links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col__links a {
  font-family: 'Jost', sans-serif; font-size: 13px;
  color: rgba(255,255,255,0.5); letter-spacing: 0.04em;
  transition: color 0.2s; display: flex; align-items: center; gap: 8px;
}
.footer-col__links a::before {
  content: ''; display: block; width: 12px; height: 1px;
  background: var(--blush); opacity: 0;
  transition: opacity 0.2s, width 0.2s; flex-shrink: 0;
}
.footer-col__links a:hover { color: #fff; }
.footer-col__links a:hover::before { opacity: 1; }


/* ── Footer Bottom Bar ── */
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  padding: 28px 40px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.07); margin-top: 48px;
}
.footer-bottom__copy {
  font-family: 'Jost', sans-serif; font-size: 11px;
  color: rgba(255,255,255,0.3); letter-spacing: 0.06em;
}
.footer-bottom__copy a { color: var(--blush); transition: color 0.2s; }
.footer-bottom__copy a:hover { color: #fff; }
.footer-bottom__links { display: flex; gap: 20px; }
.footer-bottom__links a {
  font-family: 'Jost', sans-serif; font-size: 11px;
  color: rgba(255,255,255,0.3); letter-spacing: 0.08em; transition: color 0.2s;
}
.footer-bottom__links a:hover { color: rgba(255,255,255,0.7); }


/* ── Responsive ── */
@media (max-width: 1024px) { .footer-body { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) {
  .footer-subscribe { padding: 36px 20px; flex-direction: column; }
  .footer-subscribe__form { max-width: 100%; min-width: unset; width: 100%; }
  .footer-body { grid-template-columns: 1fr 1fr; gap: 36px; padding: 40px 20px 0; }
  .footer-bottom { padding: 24px 20px; flex-direction: column; text-align: center; }
  .footer-bottom__links { justify-content: center; }
}
@media (max-width: 480px) {
  .footer-body { grid-template-columns: 1fr; }
  .footer-subscribe__form { flex-direction: column; }
  .footer-subscribe__btn { width: 100%; text-align: center; }
}
