/* ===== HOME PAGE EXTRAS ===== */
.promo-banner {
  margin: 0 5%;
  background: linear-gradient(135deg, var(--surface2) 0%, rgba(197,160,80,0.06) 100%);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 60px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}
.promo-content { max-width: 500px; z-index: 1; }
.promo-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  margin: 12px 0 16px;
  letter-spacing: 1px;
}
.promo-content h2 span { color: var(--gold); font-style: italic; }
.promo-content p { color: var(--text-muted); margin-bottom: 28px; }

.promo-visual {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.promo-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(197,160,80,0.2);
  animation: spin 20s linear infinite;
}
@keyframes spin { from{transform:rotate(0deg);} to{transform:rotate(360deg);} }
.promo-emoji {
  position: absolute;
  font-size: 5rem;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%,100%{transform:translateY(0);} 50%{transform:translateY(-12px);}
}

/* Newsletter */
.newsletter {
  margin: 80px 5%;
  text-align: center;
  padding: 60px 20px;
  background: var(--surface);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
}
.newsletter h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.newsletter p { color: var(--text-muted); margin-bottom: 28px; }
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-input {
  flex: 1;
  min-width: 240px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 14px 20px;
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
}
.newsletter-input:focus { outline: none; border-color: var(--gold); }
.newsletter-input::placeholder { color: var(--text-muted); }

@media (max-width: 700px) {
  .promo-banner { flex-direction: column; text-align: center; }
  .promo-visual { display: none; }
}
/* ── Homepage responsive ── */
@media (max-width: 900px) {
  .promo-banner { flex-direction: column; text-align: center; padding: 40px 6%; gap: 24px; }
  .promo-visual { display: none; }
  .promo-content { max-width: 100%; }
  .newsletter { margin: 60px 4%; padding: 40px 5%; }
  .newsletter h2 { font-size: 1.8rem; }
}

@media (max-width: 600px) {
  .promo-banner { margin: 0 4%; padding: 32px 5%; }
  .promo-content h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .newsletter { margin: 40px 4%; padding: 32px 5%; }
  .newsletter h2 { font-size: 1.5rem; }
  .newsletter-form { flex-direction: column; gap: 10px; }
  .newsletter-input { min-width: 0; width: 100%; }
  .newsletter-form .btn-primary { width: 100%; justify-content: center; }
}
