/* ===================================================
   ROSE EVENTS — Footer
   =================================================== */

.site-footer {
  background: var(--black);
  color: var(--white);
}

/* Newsletter Band */
.footer-newsletter {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-newsletter-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

@media (min-width: 1024px) {
  .footer-newsletter-inner { padding: 4rem 3rem; }
}

.footer-newsletter-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.footer-newsletter h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 3vw, 3rem);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
  color: var(--white);
}

.footer-newsletter p {
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
  line-height: 1.9;
}

.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-newsletter-form { flex-direction: row; }
}

.footer-newsletter-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  color: var(--white);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 300ms;
}

.footer-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter-form input:focus {
  border-color: var(--accent);
}

.footer-newsletter-form button {
  padding: 1rem 2rem;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.875rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 300ms;
  white-space: nowrap;
}

.footer-newsletter-form button:hover {
  background: var(--accent-dark);
}

.newsletter-success {
  color: var(--accent);
  font-size: 0.875rem;
  margin-top: 1rem;
  animation: fadeIn 0.5s ease-out;
}

/* Footer Main Grid */
.footer-main {
  max-width: 80rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

@media (min-width: 1024px) {
  .footer-main { padding: 4rem 3rem; }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 2rem; }
}

/* Footer brand column */
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  text-decoration: none;
}

.footer-brand .footer-logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--white);
}

.footer-brand .footer-logo-script {
  font-family: var(--font-script);
  font-size: 1.875rem;
  color: var(--accent);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
  line-height: 1.9;
  font-size: 0.9375rem;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all 300ms;
  text-decoration: none;
}

.footer-social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
}

/* Footer nav columns */
.footer-nav h4 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 300ms;
  text-decoration: none;
  font-size: 0.9375rem;
}

.footer-nav a:hover {
  color: var(--accent);
}

/* Footer contact column */
.footer-contact h4 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item p,
.footer-contact-item a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  line-height: 1.6;
  text-decoration: none;
  transition: color 300ms;
}

.footer-contact-item a:hover {
  color: var(--accent);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom-inner { flex-direction: row; padding: 1.5rem 3rem; }
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.footer-legal button {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  transition: color 300ms;
  background: none;
  border: none;
  cursor: pointer;
}

.footer-legal button:hover {
  color: var(--accent);
}
