#site-footer {
  border-top: 1px solid rgba(200,172,106,0.12);
  background: rgba(3,6,16,0.6);
  margin-top: 5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 2rem 4rem;
  align-items: start;
}

.footer-newsletter { grid-column: 1; }
.footer-links      { grid-column: 2; grid-row: 1; display: flex; flex-direction: column; gap: 0.75rem; padding-top: 0.25rem; }
.footer-copy       { grid-column: 1 / -1; }

.footer-headline {
  font-family: 'Cormorant Garamond', 'Italiana', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  color: #c8ac6a;
  margin: 0 0 0.4rem;
  letter-spacing: 0.03em;
}

.footer-sub {
  font-size: 0.78rem;
  color: #8a7c6a;
  margin: 0 0 1.25rem;
  line-height: 1.6;
  max-width: 34ch;
}

.footer-form {
  display: flex;
  gap: 0;
  max-width: 26rem;
}

.footer-form input[type="email"] {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,172,106,0.2);
  border-right: none;
  color: #ede5d0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.82rem;
  padding: 0.6rem 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.footer-form input[type="email"]::placeholder {
  color: rgba(200,172,106,0.35);
}

.footer-form input[type="email"]:focus {
  border-color: rgba(200,172,106,0.5);
}

.footer-form button {
  background: rgba(200,172,106,0.15);
  border: 1px solid rgba(200,172,106,0.3);
  color: #c8ac6a;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.footer-form button:hover:not(:disabled) {
  background: rgba(200,172,106,0.25);
  border-color: rgba(200,172,106,0.5);
}

.footer-form button:disabled {
  opacity: 0.5;
  cursor: default;
}

.footer-msg {
  font-size: 0.75rem;
  margin: 0.6rem 0 0;
  min-height: 1.1em;
  color: #8a7c6a;
}

.footer-msg--ok  { color: #a8c88a; }
.footer-msg--err { color: #c88a8a; }

.footer-links a {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(200,172,106,0.45);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.footer-links a:hover { color: #c8ac6a; }

.footer-copy {
  font-size: 0.65rem;
  color: rgba(200,172,106,0.25);
  letter-spacing: 0.06em;
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(200,172,106,0.07);
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-links {
    grid-column: 1;
    grid-row: auto;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }
  .footer-form { max-width: 100%; }
}
