.site-footer {
  position: relative;
  z-index: 40;
  color: var(--color-text-light);
  background: var(--color-bg-dark, #07111d);
}
.site-footer .footer__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-family: var(--font-secondary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}
.site-footer .footer__cta-band {
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 199, 86, 0.18),
      transparent 35%
    ),
    linear-gradient(180deg, var(--color-brand-navy-deep) 0%, var(--color-bg-dark) 100%);
  padding: 96px 0 88px;
}
@media (max-width: 991px) {
  .site-footer .footer__cta-band {
    padding: 72px 0;
  }
}
.site-footer .footer__cta-band-inner,
.site-footer .footer__main-inner,
.site-footer .footer__bar-inner {
  width: min(1280px, 100% - var(--section-padding-x) * 2);
  margin: 0 auto;
}
.site-footer .footer__cta-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 40px;
  align-items: start;
}
@media (max-width: 991px) {
  .site-footer .footer__cta-band-inner {
    grid-template-columns: 1fr;
  }
}
.site-footer .footer__cta-copy {
  max-width: 520px;
}
.site-footer .footer__cta-title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  color: var(--color-brand-ivory);
}
.site-footer .footer__cta-text {
  margin: 0;
  max-width: 500px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.8;
}
.site-footer .footer__contact-form {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: rgba(247, 246, 243, 0.05);
  backdrop-filter: blur(12px);
}
@media (max-width: 575px) {
  .site-footer .footer__contact-form {
    padding: 18px;
    border-radius: 22px;
  }
}
.site-footer .footer__form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 767px) {
  .site-footer .footer__form-grid {
    grid-template-columns: 1fr;
  }
}
.site-footer .footer__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-footer .footer__field span {
  font-family: var(--font-secondary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.site-footer .footer__field input,
.site-footer .footer__field select,
.site-footer .footer__field textarea {
  width: 100%;
  min-width: 0;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-text-dark, #122439);
  font-family: var(--font-body);
  font-size: 15px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.site-footer .footer__field input:focus,
.site-footer .footer__field select:focus,
.site-footer .footer__field textarea:focus {
  outline: none;
  border-color: rgba(255, 199, 86, 0.8);
  box-shadow: 0 0 0 4px rgba(255, 199, 86, 0.12);
}
.site-footer .footer__field select {
  appearance: none;
}
.site-footer .footer__field textarea {
  min-height: 150px;
  resize: vertical;
}
.site-footer .footer__field--full {
  grid-column: 1/-1;
}
.site-footer .footer__form-actions {
  margin-top: 18px;
}
.site-footer .footer__contact-form--panel {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.site-footer .footer__panel-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.75;
}
.site-footer .footer__panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.site-footer .footer__panel-points {
  display: grid;
  gap: 14px;
}
.site-footer .footer__panel-point {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}
.site-footer .footer__panel-point:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 199, 86, 0.45);
  background: rgba(255, 199, 86, 0.08);
}
.site-footer .footer__panel-point-label {
  font-family: var(--font-secondary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.54);
}
.site-footer .footer__panel-point-value {
  line-height: 1.6;
}
.site-footer .footer__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--color-brand-gold);
  color: var(--color-brand-navy-deep);
  text-decoration: none;
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}
.site-footer .footer__submit:hover {
  transform: translateY(-1px);
  background: var(--color-brand-gold-soft, #ffd67f);
  box-shadow: 0 18px 30px rgba(255, 199, 86, 0.22);
}
.site-footer .footer__main {
  padding: 72px 0 56px;
  background:
    linear-gradient(180deg, rgba(8, 17, 29, 0.4), rgba(8, 17, 29, 0)), #07111d;
}
.site-footer .footer__brand {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 28px;
  padding-bottom: 40px;
  margin-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 767px) {
  .site-footer .footer__brand {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.site-footer .footer__brand-mark {
  width: 120px;
  height: 120px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  background:
    radial-gradient(circle at top, rgba(255, 199, 86, 0.2), transparent 60%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer .footer__brand-mark img {
  width: 78px;
  height: auto;
  object-fit: contain;
}
.site-footer .footer__brand-title {
  margin: 0 0 14px;
  max-width: 620px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  color: var(--color-brand-ivory);
}
.site-footer .footer__brand-text {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
}
.site-footer .footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.9fr;
  gap: 28px;
}
@media (max-width: 991px) {
  .site-footer .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .site-footer .footer__grid {
    grid-template-columns: 1fr;
  }
}
.site-footer .footer__column-title {
  margin: 0 0 16px;
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.54);
}
.site-footer .footer__links,
.site-footer .footer__contact-list {
  display: grid;
  gap: 12px;
}
.site-footer .footer__link,
.site-footer .footer__contact-link,
.site-footer .footer__meta-link,
.site-footer .footer__bar-inner a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}
.site-footer .footer__link:hover,
.site-footer .footer__contact-link:hover,
.site-footer .footer__meta-link:hover,
.site-footer .footer__bar-inner a:hover {
  color: var(--color-brand-gold);
}
.site-footer .footer__link,
.site-footer .footer__contact-link {
  line-height: 1.6;
}
.site-footer .footer__socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.site-footer .footer__social-link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: var(--color-text-light);
  background: rgba(255, 255, 255, 0.04);
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}
.site-footer .footer__social-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 199, 86, 0.12);
  border-color: rgba(255, 199, 86, 0.55);
  color: var(--color-brand-gold);
}
.site-footer .footer__social-link svg {
  width: 18px;
  height: 18px;
}
.site-footer .footer__social-link--text {
  width: auto;
  min-width: 42px;
  border-radius: 999px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 700;
}
.site-footer .footer__meta-link {
  display: inline-block;
  font-size: 14px;
}
.site-footer .footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--color-bg-dark, #040b13);
  padding: 18px 0;
}
.site-footer .footer__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}
.site-footer .footer__bar-inner p {
  margin: 0;
}
.site-footer .footer__partner-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
}
.site-footer .footer__partner-logo {
  display: block;
  width: auto;
  height: 30px;
  max-width: 200px;
  opacity: 0.9;
}
@media (max-width: 640px) {
  .site-footer .footer__bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-footer .footer__partner-logo {
    height: 26px;
    max-width: 180px;
  }
}

/* Family Dental-specific footer visual overrides */
.site-footer {
  margin-top: 40px;
  overflow: hidden;
  border: 25px solid #5fa8d3;
  border-bottom: 0;
  border-radius: 240px 240px 0 0;
  background-clip: padding-box;
  background: #15324b;
}

/* About page transition: remove dark gap between CTA and footer shell. */
.about-cta-block + .site-footer {
  margin-top: 0;
}

/* Landing page transition: remove white seam between long form and footer shell. */
.landing-full-form + .site-footer,
main.landing-page + .site-footer,
.site-footer--landing {
  margin-top: 0;
}

.site-footer--landing {
  isolation: isolate;
  background-clip: border-box;
}

.site-footer--landing::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #15324b;
  pointer-events: none;
  z-index: -1;
}

.site-footer .footer__cta-band {
  display: none;
}

.site-footer .footer__main {
  padding: 96px 0 20px;
  background: #15324b;
}

.site-footer .footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-bottom: 64px;
  margin-bottom: 0;
  border-bottom: 0;
  text-align: center;
}

.site-footer .footer__brand-mark {
  width: 223px;
  height: 70px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.site-footer .footer__brand-mark img {
  width: 223px;
  height: 70px;
  object-fit: cover;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-footer .footer__brand-mark:hover img,
.site-footer .footer__brand-mark:focus-visible img {
  transform: translateY(-1px) scale(1.015);
}

.site-footer .footer__brand-copy {
  width: 386px;
  max-width: 100%;
  padding: 32px;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.07);
  box-shadow: inset 0 4px 14px rgba(0, 0, 0, 0.07);
  text-align: left;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 260ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 260ms ease;
}

.site-footer .footer__promo-card:hover .footer__brand-copy,
.site-footer .footer__promo-card:focus-within .footer__brand-copy {
  transform: translateY(-3px);
  background: rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 6px 18px rgba(0, 0, 0, 0.08),
    0 12px 26px rgba(7, 27, 47, 0.24);
}

.site-footer .footer__brand-title {
  color: #fff;
  font-size: clamp(26px, 3vw, 31px);
  font-weight: 500;
}

.site-footer .footer__brand-text {
  color: #fff;
}

.site-footer .footer__brand-copy .footer__submit {
  margin-top: 24px;
}

.site-footer .footer__content-row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 72px;
  width: 100%;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer .footer__promo-card {
  flex: 0 0 386px;
}

.site-footer .footer__socials--brand {
  margin-bottom: 0;
}

.site-footer .footer__socials--brand .footer__social-link {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 33554400px;
  background: rgba(255, 255, 255, 0.05);
  color: #dde5ec;
  transition: transform 220ms ease, background-color 220ms ease,
    color 220ms ease, box-shadow 220ms ease;
}

.site-footer .footer__socials--brand .footer__social-link:hover,
.site-footer .footer__socials--brand .footer__social-link:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.09);
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(6, 24, 42, 0.26);
}

.site-footer .footer__socials--brand .footer__social-link svg {
  width: 20px;
  height: 20px;
}

.site-footer .footer__grid {
  display: grid;
  flex: 1;
  grid-template-columns: max-content max-content max-content;
  justify-content: start;
  gap: 64px;
  padding-bottom: 0;
  border-bottom: 0;
}

.site-footer--landing .footer__grid.footer__grid--rows {
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
}

.site-footer--landing .footer__grid.footer__grid--rows .footer__column {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-footer--landing .footer__grid.footer__grid--rows .footer__column-title {
  margin: 0;
  min-width: 150px;
}

.site-footer--landing .footer__grid.footer__grid--rows .footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: center;
}

@media (max-width: 767px) {
  .site-footer--landing .footer__grid.footer__grid--rows .footer__column {
    display: grid;
    gap: 12px;
  }

  .site-footer--landing .footer__grid.footer__grid--rows .footer__column-title {
    min-width: 0;
  }
}

.site-footer .footer__column-title {
  min-height: 26px;
  margin: 0 0 32px;
}

.site-footer .footer__dropdown {
  position: relative;
}

.site-footer .footer__dropdown-summary {
  list-style: none;
  cursor: pointer;
}

.site-footer .footer__dropdown-summary::-webkit-details-marker {
  display: none;
}

.site-footer .footer__dropdown-chevron {
  width: 12px;
  height: 12px;
  margin-left: 8px;
  transition: transform 0.22s ease;
}

.site-footer .footer__dropdown[open] .footer__dropdown-chevron {
  transform: rotate(180deg);
}

.site-footer .footer__dropdown-menu {
  padding-top: 2px;
}

.site-footer .footer__column-title-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.site-footer .footer-link,
.site-footer .footer-link * {
  box-sizing: border-box;
}

.site-footer .footer-link {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  position: relative;
  overflow: hidden;
  color: #dde5ec;
}

.site-footer .outbound {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 1.71%;
  left: -1.71%;
  bottom: -3.05%;
  top: 3.05%;
  overflow: visible;
  aspect-ratio: 1;
}

.site-footer .location-on,
.site-footer .credit-card {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  top: 0;
  overflow: visible;
  aspect-ratio: 1;
}

.site-footer .footer__column-title-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer .footer__column-title-link:hover,
.site-footer .footer__column-title-link:focus-visible {
  color: #d9edf8;
  transform: translateX(1px);
}

.site-footer .footer__column-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: #fff;
}

.site-footer .footer__links,
.site-footer .footer__contact-list {
  gap: 20px;
}

.site-footer .footer__link,
.site-footer .footer__contact-link,
.site-footer .footer__meta-link,
.site-footer .footer__bar-inner a {
  color: #dde5ec;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 500;
  transition: color 220ms ease, transform 220ms ease;
  overflow-wrap: anywhere;
}

.site-footer .footer__link:hover,
.site-footer .footer__link:focus-visible,
.site-footer .footer__contact-link:hover,
.site-footer .footer__contact-link:focus-visible,
.site-footer .footer__meta-link:hover,
.site-footer .footer__meta-link:focus-visible,
.site-footer .footer__bar-inner a:hover,
.site-footer .footer__bar-inner a:focus-visible {
  color: #ffffff;
  transform: translateX(2px);
}

.site-footer .footer__column .footer__links > a,
.site-footer .footer__column .footer__links > span {
  white-space: nowrap;
}

.site-footer .footer__link--muted {
  cursor: default;
}

.site-footer .footer__meta-row {
  padding-top: 18px;
}

.site-footer .footer__submit {
  border: 1px solid #fff;
  border-radius: 10px;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
}

.site-footer .footer__submit:hover {
  transform: translateY(-2px);
  background: #fff;
  color: #15324b;
  box-shadow: 0 10px 22px rgba(7, 27, 47, 0.28);
}

@media (prefers-reduced-motion: reduce) {
  .site-footer .footer__brand-mark img,
  .site-footer .footer__brand-copy,
  .site-footer .footer__socials--brand .footer__social-link,
  .site-footer .footer__column-title-link,
  .site-footer .footer__link,
  .site-footer .footer__contact-link,
  .site-footer .footer__meta-link,
  .site-footer .footer__bar-inner a,
  .site-footer .footer__submit {
    transition: none;
  }

  .site-footer .footer__brand-mark:hover img,
  .site-footer .footer__brand-mark:focus-visible img,
  .site-footer .footer__promo-card:hover .footer__brand-copy,
  .site-footer .footer__promo-card:focus-within .footer__brand-copy,
  .site-footer .footer__socials--brand .footer__social-link:hover,
  .site-footer .footer__socials--brand .footer__social-link:focus-visible,
  .site-footer .footer__column-title-link:hover,
  .site-footer .footer__column-title-link:focus-visible,
  .site-footer .footer__link:hover,
  .site-footer .footer__link:focus-visible,
  .site-footer .footer__contact-link:hover,
  .site-footer .footer__contact-link:focus-visible,
  .site-footer .footer__meta-link:hover,
  .site-footer .footer__meta-link:focus-visible,
  .site-footer .footer__bar-inner a:hover,
  .site-footer .footer__bar-inner a:focus-visible,
  .site-footer .footer__submit:hover {
    transform: none;
  }
}

.site-footer .footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: #15324b;
  padding: 0;
}

.site-footer .footer__bar-inner {
  width: min(1290px, calc(100% - 40px));
  min-height: 53px;
  justify-content: center;
  align-items: center;
}

.site-footer .footer__bar-inner p {
  width: 100%;
  margin: 0;
  color: #d9edf8;
  font-size: 12.8px;
  line-height: 1.6;
  font-weight: 400;
  text-align: center;
}

.site-footer .footer__bar-separator {
  margin: 0 8px;
  color: rgba(217, 237, 248, 0.7);
}

.site-footer .footer__bar-legal-link {
  display: inline-block;
  color: #d9edf8;
  text-decoration: underline;
  text-decoration-color: rgba(217, 237, 248, 0.5);
  text-underline-offset: 3px;
}

.site-footer .footer__bar-legal-link:hover,
.site-footer .footer__bar-legal-link:focus-visible {
  color: #ffffff;
  text-decoration-color: currentColor;
  transform: none;
}

@media (max-width: 1200px) {
  .site-footer {
    border-radius: 120px 120px 0 0;
  }

  .site-footer .footer__main {
    padding-top: 72px;
  }

  .site-footer .footer__content-row {
    flex-direction: column;
    gap: 40px;
  }

  .site-footer .footer__promo-card {
    flex: 0 1 auto;
    width: 100%;
    max-width: 430px;
  }

  .site-footer .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .site-footer .footer__column .footer__links > a,
  .site-footer .footer__column .footer__links > span {
    white-space: normal;
  }
}

@media (max-width: 680px) {
  .site-footer {
    border-width: 14px;
    border-radius: 70px 70px 0 0;
  }

  .site-footer .footer__brand-copy {
    padding: 24px;
  }

  .site-footer .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 420px) {
  .site-footer {
    border-width: 10px;
    border-radius: 48px 48px 0 0;
  }
}
