#closing {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 7rem 0 6rem;
  text-align: center;
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.closing-quote {
  font-size: clamp(1.45rem, 3.5vw, 2rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--cream);
  letter-spacing: -0.02em;
}

.closing-quote em {
  font-style: italic;
  color: var(--gold);
}

.closing-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.closing-cta-group .btn {
  font-size: 1.05rem;
  padding: 0.9rem 2.25rem;
}

.closing-sub {
  font-size: 0.85rem;
  color: rgba(245, 239, 225, 0.4);
  font-style: italic;
}

footer {
  background: var(--ink);
  border-top: 1px solid rgba(201, 169, 97, 0.08);
  padding: 1.5rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-brand {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 239, 225, 0.35);
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(245, 239, 225, 0.25);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.78rem;
  color: rgba(245, 239, 225, 0.3);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: rgba(245, 239, 225, 0.65);
}

@media (max-width: 600px) {
  #closing {
    padding: 5rem 0 4rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
