/* ─── CTA Final ───────────────────────────────────────────── */

.cta-final {
  background: var(--black);
  color: #fff;
  padding: clamp(6rem, 12vh, 10rem) var(--gutter);
}

.cta-final .tag {
  color: var(--gray-400);
}

.cta-final__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.05;
  margin: 1.5rem 0;
}

.cta-final__subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--gray-400);
  margin-bottom: 2.5rem;
}

.cta-final__trust {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--gray-600);
  margin-top: 1.5rem;
  text-transform: uppercase;
}

/* ─── Footer ─────────────────────────────────────────────── */

.footer {
  background: var(--off-white);
  border-top: 1px solid var(--gray-200);
}

.footer__top {
  padding: clamp(4rem, 8vh, 6rem) 0;
}

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

.footer__heading {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 1.25rem;
  color: var(--gray-600);
}

.footer__nav ul {
  list-style: none;
  padding: 0;
}

.footer__nav ul li {
  margin-bottom: 0.75rem;
}

.footer__nav ul li a {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--gray-800);
  text-decoration: none;
}

.footer__nav ul li a:hover {
  text-decoration: underline;
}

.footer__tagline {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin: 1.25rem 0;
}

.footer__social {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--gray-600);
  text-decoration: none;
}

.footer__social:hover {
  color: var(--black);
}

.footer__logo {
  filter: invert(0);
}

address {
  font-style: normal;
}

address p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--gray-800);
}

address a {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--gray-800);
  text-decoration: none;
  margin-top: 0.5rem;
}

address a:hover {
  text-decoration: underline;
}

.footer__hours p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--gray-800);
}

.footer__bottom {
  border-top: 1px solid var(--gray-200);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.78rem;
  color: var(--gray-600);
}

.footer__bottom nav {
  display: flex;
  gap: 1.5rem;
}

.footer__bottom nav a {
  color: var(--gray-600);
  text-decoration: none;
}

.footer__bottom nav a:hover {
  color: var(--black);
}

/* ─── Responsive ──────────────────────────────────────────── */

@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 540px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
