/* ═══════════════════════════════════════════════
   FOOTER STYLES
   ═══════════════════════════════════════════════ */

/* ── Newsletter Banner ── */
.footer-newsletter {
  background: #523232;
  padding: 52px 5vw;
  position: relative;
  overflow: hidden;
}

.footer-newsletter::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 50%;
  pointer-events: none;
}

.footer-newsletter::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -30px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: 50%;
  pointer-events: none;
}

.footer-nl-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.footer-nl-text {
  flex: 1;
  max-width: 420px;
}

.footer-nl-title {
  font-family: 'EngGothic', serif;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.1;
}

.footer-nl-desc {
  font-family: 'Playful', serif;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

.footer-nl-form-wrap {
  flex: 1;
  max-width: 460px;
}

.footer-nl-form {
  display: flex;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

.footer-nl-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 16px 20px;
  font-family: 'Playful', serif;
  font-size: 14px;
  color: #523232;
  background: #ffffff;
  min-width: 0;
  transition: border-color 0.3s;
}

.footer-nl-input::placeholder {
  color: rgba(82,50,50,0.4);
}

.footer-nl-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: linear-gradient(135deg, #C9A84C, #a07c2a);
  border: none;
  color: #1a0e0e;
  font-family: 'EngGothic', serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.footer-nl-btn:hover {
  background: linear-gradient(135deg, #e2c97e, #C9A84C);
  transform: translateX(2px);
}

.footer-nl-btn:disabled {
  cursor: default;
  transform: none;
}

.nl-btn-arrow {
  transition: transform 0.3s;
}

.footer-nl-btn:hover .nl-btn-arrow {
  transform: translateX(3px);
}

.footer-nl-note {
  font-family: 'Playful', serif;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-top: 10px;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .footer-nl-inner {
    flex-direction: column;
    text-align: center;
    gap: 28px;
  }
  .footer-nl-text { max-width: 100%; }
  .footer-nl-form-wrap { max-width: 100%; width: 100%; }
  .footer-nl-form { flex-direction: column; border-radius: 10px; }
  .footer-nl-input { border-radius: 10px 10px 0 0; text-align: center; }
  .footer-nl-btn { justify-content: center; border-radius: 0 0 10px 10px; }
  .footer-nl-note { text-align: center; }
}

/* ── Main Footer ── */
.footer {
  background: var(--footer-bg);
  color: var(--text-primary);
  padding: 0 0 0 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding: 60px 5vw 40px;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

/* Brand Column */
.footer-logo-link {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 45px;
  width: auto;
}

.footer-tagline {
  font-family: 'Playful', serif;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--text-primary);
  color: var(--bg-primary);
  transition: all 0.3s;
}

.footer-socials a:hover {
  background: #C9A84C;
  transform: translateY(-2px);
}

/* Column Titles */
.footer-title {
  font-family: 'EngGothic', serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-weight: 600;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  font-family: 'Playful', serif;
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.25s, padding-left 0.25s;
  display: inline-block;
}

.footer-links li a:hover {
  color: #C9A84C;
  padding-left: 4px;
}

/* Contact Items */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  stroke: #C9A84C;
}

.footer-address {
  font-family: 'Playful', serif;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.footer-contact-link {
  font-family: 'Playful', serif;
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-contact-link:hover {
  color: #C9A84C;
}

/* Bottom Bar */
.footer-bottom {
  padding: 20px 5vw;
  text-align: center;
  font-family: 'Playful', serif;
  font-size: 12px;
  color: var(--text-muted);
  border-top: 1px solid var(--border-light);
  margin: 0 5vw;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
    padding: 48px 5vw 32px;
  }
  .footer-tagline { max-width: 100%; margin-left: auto; margin-right: auto; }
  .footer-socials { justify-content: center; }
  .footer-contact-item { justify-content: center; }
  .footer-logo-link { margin-left: auto; margin-right: auto; }
}

